Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1151®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1152®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1150®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:60524", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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:752/?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:p28435/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4424, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:41.831885Z", "last_modified_time": "2023-09-07T14:24:41.831907Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731289.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4424/?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:24:40.854233Z", "last_modified_time": "2023-11-14T06:13:24.201209Z", "date_published": null, "start_time": "2023-10-17T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Luca on nuoren pojan aikuistumistarina jäätelön, pastan ja skootteriajeluiden parissa erään unohtumattoman kesän aikana.</p><p>Italian Rivieralle kauniiseen merenrantakaupunkiin sijoittuvassa Disneyn ja Pixarin alkuperäiselokuvassa Luca-poika seikkailee yhdessä ystävänsä Alberton kanssa, mutta kaiken hauskan uhkana on syvä salaisuus: he ovat merihirviöitä toisesta, merenalaisesta maailmasta.</p><p>Lucan on ohjannut Oscar-ehdokas <b>Enrico Casarosa</b> (La Luna) ja tuottanut <b>Andrea Warren</b> (Lava, Autot 3).</p><p>Kesto: 95 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Luca är en uppväxtberättelse om en ung pojke som upplever en oförglömlig sommar full av glass, pasta och skoterturer.</p><p>Luca delar dessa äventyr med sin vän, Alberto, men allt roligt hotas av en dold hemlighet: de är sjömonster från en annan värld under vattenytan.</p><p>Längd: 95 min <br>Åldersgräns: 7<br>Språk: finska</p>", "en": "<p>‘Luca’ is a young boy’s coming-of-age story centred around ice cream, pasta and scooter rides during one unforgettable summer.</p><p>Luca goes on adventures with his friend Alberto, but underneath all the fun is a deep secret: they are sea monsters from another world, under the sea.</p><p>Duration: 95 min <br>Age limit: 7<br>Language: Finnish</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Syyslomaleffa_Luca_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Hostlovsfilm_Luca_7_", "en": "http://www.malmitalo.fi/en/events/event/35A078AC2B81BA2FD4CDDDCD6F3A1458/Autumn_holiday_film_Luca_7_" }, "short_description": { "fi": "Luca on nuoren pojan aikuistumistarina jäätelön, pastan ja skootteriajeluiden parissa erään unohtumattoman kesän aikana.", "sv": "Luca är en uppväxtberättelse om en ung pojke som upplever en oförglömlig sommar full av glass, pasta och skoterturer.", "en": "‘Luca’ is a young boy’s coming-of-age story centred around ice cream, pasta and scooter rides during one unforgettable summer." }, "name": { "fi": "Syyslomaleffa: Luca (7)", "sv": "Höstlovsfilm: Luca (7)", "en": "Autumn holiday film: Luca (7)" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60524/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60757", "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: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4423, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:39.927935Z", "last_modified_time": "2023-09-07T14:24:39.927954Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735821.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4423/?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:24:39.251995Z", "last_modified_time": "2023-11-14T06:13:24.126967Z", "date_published": null, "start_time": "2023-10-17T09:00:00Z", "end_time": "2023-10-17T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 10–12-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tiistai 17.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>", "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 10–12<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tis. 17.10 kl. 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>", "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 12 to 10<br>Language: Finnish</p><p>Registration:<br>Monday 16 October 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tuesday 17 October 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D14775BC657BBE003BF3D658ECE6C45A/Mita_kuuluu_Chile_", "sv": "http://www.caisa.fi/sv/evenemang/event/D14775BC657BBE003BF3D658ECE6C45A/Hur_ar_det_Chile_", "en": "http://www.caisa.fi/en/events/event/D14775BC657BBE003BF3D658ECE6C45A/How_Are_You_Chile_" }, "short_description": { "fi": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?", "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?", "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?" }, "name": { "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 10–12-vuotiaille", "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 10–12 år i anslutning till utställningen Chile50", "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 10–12" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60757/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60523", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?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:42/?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/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4422, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:38.849339Z", "last_modified_time": "2023-09-07T14:24:38.849361Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731709.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4422/?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:24:38.705937Z", "last_modified_time": "2023-11-14T06:13:24.051379Z", "date_published": null, "start_time": "2023-10-17T08:00:00Z", "end_time": "2023-10-17T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Metsäneläinten pyykkipäivänä tehdään pyykkipoikaeläimiä!</p><p>Askartele nallenmörrikkä, pieni pupunen, harmaankirjava hiirulainen tai joku muu mieleisesi eläinihanuus.</p><p>Suunnittelu ja toteutus: Runoropinoita</p><p>Työpaja on Malmitalon aulassa, vapaa pääsy!</p>", "sv": "<p>På skogsdjurens tvättdag skapar vi djur av klädnypor!</p><p>Pyssla en lurvig nalle, en liten kanin, en gråspräcklig liten mus eller något annat underbart djur som du gillar.</p>", "en": "<p>Let’s make animals from clothes pegs on wild animals’ laundry day!</p><p>Create a teddy bear, a little bunny, a grey mouse or any other animal you like.</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CDFF52037D25BCC0EE684537AF60D146/Syyslomatyopaja_Metsanelainten_pyykkipaiva", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CDFF52037D25BCC0EE684537AF60D146/Hostlovsverkstad_Skogsdjurens_tvattdag", "en": "http://www.malmitalo.fi/en/events/event/CDFF52037D25BCC0EE684537AF60D146/Autumn_holiday_workshop_Wild_animals_laundry_day" }, "short_description": { "fi": "Metsäneläinten pyykkipäivänä tehdään pyykkipoikaeläimiä!", "sv": "På skogsdjurens tvättdag skapar vi djur av klädnypor!", "en": "Let’s make animals from clothes pegs on wild animals’ laundry day!" }, "name": { "fi": "Syyslomatyöpaja: Metsäneläinten pyykkipäivä", "sv": "Höstlovsverkstad: Skogsdjurens tvättdag", "en": "Autumn holiday workshop Wild animals’ laundry day" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60523/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61000", "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/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:29.392171Z", "last_modified_time": "2023-10-09T13:30:29.392191Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736355.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:29.148405Z", "last_modified_time": "2023-11-14T06:13:23.979974Z", "date_published": null, "start_time": "2023-10-17T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Supermarsun on pelastettava mehiläiset, jotta se voi pelastaa maailman.</p><p>Pelastaakseen mehiläiset sen on pelastettava koulun pahin kiusaaja. Elokuva tarttuu tärkeisiin yhteiskunnallisiin ja ekologisiin aiheisiin helposti ymmärrettävällä ja humoristisella tavalla. Elokuva on jatkoa menestyselokuvalle Supermarsu, joka oli yksi vuoden 2018 katsotumpia elokuvia.</p><p>Kesto: 1 t 30 min <br>Ohjaaja: Joona Tena<br>Pääosissa: Essi Hellén, Eero Ritala, Tommi Korpela, Kari Hietalahti</p><p>Vapaa pääsy <br>Ikäsuositus: kaikenikäisille</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/ABB04475D54666D8AF2459F5243023DA/Syyslomaleffa_Supermarsu_2" }, "short_description": { "fi": "Supermarsun on pelastettava mehiläiset, jotta se voi pelastaa maailman." }, "name": { "fi": "Syyslomaleffa: Supermarsu 2" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61000/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60756", "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: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4421, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:38.472477Z", "last_modified_time": "2023-09-07T14:24:38.472507Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735823.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4421/?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:24:38.293748Z", "last_modified_time": "2023-11-14T06:13:23.906696Z", "date_published": null, "start_time": "2023-10-17T06:00:00Z", "end_time": "2023-10-17T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 7–9-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tiistai 17.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>", "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 7–9<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tis. 17.10 kl. 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>", "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 7 to 9<br>Language: Finnish</p><p>Registration:<br>Monday 16 October 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tuesday 17 October 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/16AA2DD13358B0A426483645327C4928/Mita_kuuluu_Chile_", "sv": "http://www.caisa.fi/sv/evenemang/event/16AA2DD13358B0A426483645327C4928/Hur_ar_det_Chile_", "en": "http://www.caisa.fi/en/events/event/16AA2DD13358B0A426483645327C4928/How_Are_You_Chile_" }, "short_description": { "fi": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?", "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?", "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?" }, "name": { "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 7–9-vuotiaille", "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 7–9 år i anslutning till utställningen Chile50", "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 7–9" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60756/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60750", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "42 €" }, "description": null, "info_url": { "fi": "https://web.lippu.fi/palautus/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4420, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:38.071426Z", "last_modified_time": "2023-09-07T14:24:38.071448Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736267.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4420/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:37.861627Z", "last_modified_time": "2023-11-14T06:13:23.831014Z", "date_published": null, "start_time": "2023-10-16T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Loud'n Live Promotions Oy" }, "provider_contact_info": null, "description": { "fi": "<p>Yonan lokakuinen konserttisalikiertue peruuntuu<br> <br>Joudumme valitettavasti ilmoittamaan, että kotimaisen taidepopin supertähden Yonan lokakuinen konserttisalikiertue peruuntuu. Syynä peruuntumiseen on huono ennakkomyynti. Konsertin oli määrä toteutua yhdeksällä paikkakunnalla, joista kaksi jo peruttiin aikaisemmin ja odotukset lipunmyynnille olivat suuret kiertuetta julkistettaessa<br>Nyt, kun kiertueen alkuun oli jäljellä aikaa enää viikko, oli lipunmyynti selvästi jäljellä tavoitteista ja kiertueen järjestämisestä olisi tullut kymmenien tuhansien eurojen tappiot.<br> <br>Toisin kuin jossain julkisuudessa on väitetty, kiertueen peruuttaminen ei johtunut sen järjestäjäyhtiöstä, eli Loud & Live Promotionsista. Yhtiö olisi ollut valmis neuvottelemaan artistin ja hänen edustajiensa kanssa kiertueen viemisestä läpi tappiollisena, kuitenkin niin että tappiollisuutta olisi voitu ennakkoon vähentää ennakoitua pienemmällä kulurakenteella. Artistin edustajat eivät kuitenkaan olleet valmiita minkäänlaisiin neuvotteluihin asiasta.</p><p>Ma 16.10.2023 Yona -konsertti Savoy-teatterissa on peruttu.</p><p>Jo maksetut liput tulee palauttaa torstaihin 9.11.2023 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.<br>Jo maksetut liput voi myös vaihtaa Savoy-teatterin lahjakorttiin. Lahjakortti on voimassa kaksi (2) vuotta myöntöhetkestä, ja sillä voi ostaa lippuja Savoy-teatterin tapahtumiin Savoy-teatterin lipunmyynnistä ja Lippupisteen täyden palvelun lippukaupoista. Lahjakortti toimitetaan postitse asiakkaan ilmoittamaan osoitteeseen.</p><p>OHJE LIPPUJEN VAIHTAMISEKSI LAHJAKORTTIIN:</p><p>Ilmoita lipun viivakoodinumero, rivi- ja paikkanumero sekä osoite johon lahjakortti postitetaan osoitteeseen raisa.ailio@hel.fi. <br> <br>OHJE LIPPUJEN PALAUTUKSIIN:<br> <br>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Liput voi myös palauttaa postitse. <br>Asiakkaat saavat lipun hinnan takaisin palauttamalla lipun yhteystietoineen ja tilinumeroineen postitse Lippupisteelle osoitteeseen:<br> <br>Lippupiste Oy / ”Tapahtuman nimi” palautus <br>Kansikatu 5, 33100 Tampere</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä Loud'n Live Promotions Oy sekä Savoy-teatteri ja Lippupiste pahoittelevat peruuntumisesta aiheutuvaa harmia.</p><p>*****</p><p>Kotimaisen taidepopin supertähti Yonan - Tähtii ei voi omistaa -konserttisalikiertueen Helsingin konsertti Savoy-teatterissa.</p><p>Mittavan ja taiteellisesti kunnianhimoisen uran tehnyt Yona (oik. Johanna Rasmus) valmistelee parhaillaan yhdeksättä studioalbumiaan. Yona tunnetaan ennakkoluulottomasta tavastaan yhdistellä eri musiikkityylejä ja hänen kappaleilleen on ominaista vahva tunnelataus ja elokuvallisuus.</p><p>Yonan ilmaisuvoimaisessa yhtyeessä soittavat Juhani Grönroos (kitara), Juho Kanervo (sello), Antti Kujanpää (koskettimet), Tuomas Timonen (rummut), Antti Kivimäki (basso), Paavo Malmberg (ääni) sekä Jaakko Peltonen (valot).</p><p>Kriitikoiden ylistämä, Tapiola Sinfoniettan kanssa tehty, viimeisin albumijulkaisu Uni johon herään palkittiin viime vuonna sekä Kriitikoiden valinta -Emmalla että Teosto-palkinnolla. Albumi oli lisäksi ehdolla arvostetun Pohjoismaiden neuvoston musiikkipalkinnon saajaksi ja esitettiin kokonaisuudessaan loppuunmyydyissä konserteissa ympäri Suomen. Viime vuonna Yona ihastutti myös uusimmalla Vain elämää -kaudella.</p><p>Kesto n. 90 min, ei väliaikaa</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/09E60169110E1401A9AA607271275715/Yona_-_Tahtii_ei_voi_omistaa" }, "short_description": null, "name": { "fi": "Yona - Tähtii ei voi omistaa – KONSERTTI ON PERUTTU!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60750/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60433", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4419, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:36.835048Z", "last_modified_time": "2023-09-07T14:24:36.835070Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730315.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4419/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:35.951344Z", "last_modified_time": "2023-11-14T06:13:23.760206Z", "date_published": null, "start_time": "2023-10-16T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii Mari Kätkä.</p><p>Kesto: 1 t</p><p>Maksuttomat maanantait on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/77681E6C37D22CB33AC2DE374B2A767B/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/77681E6C37D22CB33AC2DE374B2A767B/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/77681E6C37D22CB33AC2DE374B2A767B/Let_us_sing_" }, "short_description": { "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60433/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60755", "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: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4418, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:35.143843Z", "last_modified_time": "2023-09-07T14:24:35.143874Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735820.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4418/?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:24:34.791046Z", "last_modified_time": "2023-11-14T06:13:23.687304Z", "date_published": null, "start_time": "2023-10-16T09:00:00Z", "end_time": "2023-10-16T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 10–12-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tiistai 17.10.2023 klo 12–14.30. Linkki: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>", "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 10–12<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tis. 17.10 kl. 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>", "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 12 to 10<br>Language: Finnish</p><p>Registration:<br>Monday 16 October 12–14.30: <u>https://forms.office.com/e/HXG19U1vLJ </u><br>Tuesday 17 October 12–14.30: <u>https://forms.office.com/e/GRQWVXDRgT </u></p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C555146495B9D3D9767092B49327A0B6/Mita_kuuluu_Chile_", "sv": "http://www.caisa.fi/sv/evenemang/event/C555146495B9D3D9767092B49327A0B6/Hur_ar_det_Chile_", "en": "http://www.caisa.fi/en/events/event/C555146495B9D3D9767092B49327A0B6/How_Are_You_Chile_" }, "short_description": { "fi": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?", "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?", "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?" }, "name": { "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 10–12-vuotiaille", "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 10–12 år i anslutning till utställningen Chile50", "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 10–12" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60755/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60297", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4417, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:34.541485Z", "last_modified_time": "2023-09-07T14:24:34.541520Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734731.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4417/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:24:34.374044Z", "last_modified_time": "2023-11-14T06:13:23.603608Z", "date_published": null, "start_time": "2023-10-16", "end_time": "2023-10-19", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Kurssin aikana lapset pääsevät tutustumaan suunnittelijan työhön. Kurssilla piirretään, suunnitellaan, muovataan ja rakennetaan.</p><p>Suunnitteluprosessi etenee inspiraatiosta, ideoinnin kautta toteutukseen. Kurssilla opitaan visuaalisesta viestinnästä tekemällä oma symbolikartasto ja logo.</p><p>Kurssin aikana saadaan kaksi tehtävänantoa eli briefiä. Ensimmäisessä briefissä suunnitellaan mehiläisten inspiroima kahvilakonsepti ja toisessa briefissä muotoillaan oman tuotteen prototyyppi ja tehdään tuotteelle visuaalinen käyttöohje.</p><p>Kurssin aikana tehdään erilaisia tehtäviä ja hauskoja harjoituksia. Kurssille suunnitellut monistepohjat tukevat oppimista. Lasten on mahdollista osallistua leikkimielisiin kisoihin, joissa pisteet jaetaan makeisten muodossa. Kurssilla tehdään flow-harjoituksia, joiden tarkoitus on auttaa löytämään omat supervoimat ja auttaa rauhoittumisessa ja keskittymisessä.</p><p>REDESIGN toteutetaan englanninkielisenä. Opetusta on kurssipäivinä klo 10–14.</p><p>Ilmoita koululainen kurssille: salla.fornaro@hel.fi tai 09 310 26154, 040 537 1520</p><p>Kohderyhmä: 3.–6.-luokkalaiset<br>Hinta: 0 €<br>Kieli: englanti (suomi)<br>Ohjaaja: Milla Koivisto / Manual Productions</p>", "sv": "<p>Under kursen får barnen bekanta sig med designerns arbete. På kursen får deltagarna teckna, designa, forma och bygga.</p><p>Designprocessen går från inspiration via idéarbete till utförande. På kursen lär sig deltagarna visuell kommunikation genom att skapa en egen symbolkarta och logotyp. Under kursen ges deltagarna två uppgiftsbeskrivningar, så kallade brief. I den första ska de designa ett cafékonsept inspirerat av bin och i den andra designar de en prototyp av sin produkt och skapar en visuell bruksanvisning för produkten.</p><p>Under kursen görs olika uppgifter och roliga övningar. Som stöd för lärandet finns stenciler som satts samman för kursen. Barnen kan delta i lekfulla tävlingar där poängen ges i form av godis. Under kursen görs flowövningar som syftar till att hitta de egna superkrafterna och hjälpa barnen att hitta lugnet och koncentrationen. Språket på Redesign är engelska.</p><p>För 3:e-6:e klassare<br>Pris: 0 €<br>Språk: engelska (finska) <br>Kursinstruktör: Milla Koivisto / Manual Productions</p><p>Anmäl studenten till kursen: salla.fornaro@hel.fi eller 09 310 26154, 040 537 1520</p>", "en": "<p>During the course, children will be introduced to the work of a designer. The course will involve drawing, designing, shaping and building.</p><p>The design process will go from inspiration, through ideation, to realisation. The course will teach the participants about visual communication by creating their own symbol map and logo. During the course, the participants will receive two briefs. The first brief is to design a café concept inspired by bees and the second brief is to design a prototype of a product and create a visual user manual for the product.</p><p>The course will include a variety of exercises and amusing activities. The multiple handouts designed for the course will support learning. The children will have the opportunity to participate in playful competitions where points will be awarded in the form of sweets. The course will feature flow exercises to help the participants discover their own superpowers as well as to calm down and focus. The REDESIGN course is taught in English.</p><p>For children in 3th–6th grade<br>Price: 0 €<br>Language: English (Finnish) <br>Instructor: Milla Koivisto / Manual Productions</p><p>Register the student for the course: salla.fornaro@hel.fi or 09 310 26154, 040 537 1520</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F52A30F47C3C7BF9FD16EF8DBBE2D543/REDESIGN-kurssi_TAYNNA", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F52A30F47C3C7BF9FD16EF8DBBE2D543/Hostlovskursen_REDESIGN_FULLBOKAT", "en": "http://www.vuotalo.fi/en/events/event/F52A30F47C3C7BF9FD16EF8DBBE2D543/REDESIGN_Autumn_holiday_course_FULLY_BOOKED" }, "short_description": { "fi": "Kurssin aikana lapset pääsevät tutustumaan suunnittelijan työhön. Kurssilla piirretään, suunnitellaan, muovataan ja rakennetaan.", "sv": "Under kursen får barnen bekanta sig med designerns arbete. På kursen får deltagarna teckna, designa, forma och bygga.", "en": "During the course, children will be introduced to the work of a designer. The course will involve drawing, designing, shaping and building." }, "name": { "fi": "REDESIGN-kurssi | TÄYNNÄ – Syysloma", "sv": "Höstlovskursen REDESIGN | FULLBOKAT", "en": "REDESIGN Autumn holiday course | FULLY BOOKED" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60297/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60765", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4416, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:34.136776Z", "last_modified_time": "2023-09-07T14:24:34.136797Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736373.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4416/?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:24:33.985800Z", "last_modified_time": "2023-11-14T06:13:23.532817Z", "date_published": null, "start_time": "2023-10-16T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>16.–20.10.2023 ma–pe klo 10–13</p><p>Syyslomakurssilla pääset suunnittelemaan ja rakentamaan omia unelmien huoneita ja mielikuvituksellisia taloja käyttäen erilaisia materiaaleja. Samalla tutustut suunnittelun ja arkkitehtuurin peruskäsitteisiin.</p><p>Opettajana TaM, kuvataideopettaja Katja Koponen<br>Hinta: 0 €<br>Ikäsuositus: alakoululaisille<br>Ilmoittaudu mukaan 1.9. alkaen: salla.fornaro@hel.fi tai soita 040 5371520.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/311EA310FAA2F23BEA716E1A02CB12D6/Arkkitehtuurikurssi_Unelmien_taloja_ja_huonetiloja_TAYNNA" }, "short_description": { "fi": "16.–20.10.2023 ma–pe klo 10–13" }, "name": { "fi": "Arkkitehtuurikurssi: Unelmien taloja ja huonetiloja | TÄYNNÄ – Syyslomakurssi" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60765/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60754", "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: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4415, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:33.730136Z", "last_modified_time": "2023-09-07T14:24:33.730163Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735822.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4415/?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:24:32.857996Z", "last_modified_time": "2023-11-14T06:13:23.453706Z", "date_published": null, "start_time": "2023-10-16T06:00:00Z", "end_time": "2023-10-16T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?</p><p>Työpajan sisältö on saanut innoituksensa Club Gabriel Mistral para niños lastenkerhosta. Club Gabriel Mistral oli chileläispakolaisten perustama lastenkerho Suomessa. Sen toiminta sijoittui 70-luvun lopusta 2000-luvun alkuun. Kerhossa yhdessä tekeminen, leikki ja musiikki, toimivat kulttuurin ja espanjan kielen välittäjinä toisen polven chileläisille ja myöhemmin muillekin Latinalaisen Amerikan kulttuurista kiinnostuneille perheille.</p><p>Lasten taidetyöpajassa sukellamme suomalaischileläiseen historiaan ja Suomeen asti kantautuvaan chileläiseen kulttuuriin. Suomalaischileläisten taidekasvattajien johdolla rakennamme oman panhuilun tai run run -hyrrän. Musisoimme yhdessä ja tutustumme Caisassa olevaan Chile50-valokuvanäyttelyyn.</p><p>Ohjaaja: Aino Parada<br>Lisätietoja: teemu.savikurki@hel.fi<br>Kesto: 2,5 h<br>Ikäsuositus: 7–9-vuotiaille<br>Kieli: suomi, tarvittaessa espanja<br>Maksuton<br>Ryhmäkoko: maks. 10 osallistujaa/työpaja<br>Ilmoittautuminen:<br>Maanantai 16.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tiistai 17.10.2023 klo 9–11.30. Linkki: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>", "sv": "<p>Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?</p><p>I konstverkstaden för barn dyker vi ner i den finsk-chilenska historian och den chilenska kulturen som når ända till Finland. Under ledning av finsk-chilenska konstpedagoger bygger vi vår egen panflöjt eller run run-snurra. Vi musicerar tillsammans och bekantar oss med fotoutställningen Chile50 som visas i Caisa.</p><p>Instruktör: Aino Parada<br>Mera info: teemu.savikurki@hel.fi<br>Längd: 2,5 t.<br>Åldersrekommendation: 7–9<br>Språk: finska<br>Kostnadsfri</p><p>Anmälan:<br>Mån. 16.10 kl. 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tis. 17.10 kl. 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>", "en": "<p>Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?</p><p>In this children’s art workshop, we will dive into the Finnish-Chilean history and the Chilean culture that reaches all the way to Finland. Under the guidance of Finnish-Chilean art educators, we will build our own panpipes or run run spinning tops. We will play music together and explore the Chile50 photo exhibition at Caisa.</p><p>Instructor: Aino Parada<br>More information: teemu.savikurki@hel.fi<br>Duration: 2.5 h<br>Age recommendation: 7 to 9<br>Language: Finnish</p><p>Registration:<br>Monday 16 October 9–11.30: <u>https://forms.office.com/e/X81j92XqxK </u><br>Tuesday 17 October 9–11.30: <u>https://forms.office.com/e/FrjaZ58YPp </u></p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F6B3C772211B9A79E2E0758A301FE7E0/Mita_kuuluu_Chile_", "sv": "http://www.caisa.fi/sv/evenemang/event/F6B3C772211B9A79E2E0758A301FE7E0/Hur_ar_det_Chile_", "en": "http://www.caisa.fi/en/events/event/F6B3C772211B9A79E2E0758A301FE7E0/How_Are_You_Chile_" }, "short_description": { "fi": "Suuren meren takana, toisella puolella maapalloa, sijaitsee maailman pisin maa, josta kuuluu panhuilun ääniä. Mitä tarinoita ne meille kertovatkaan tästä kaukaisesta paikasta?", "sv": "Bortom det stora havet, på andra sidan av jordklotet, finns världens längsta land där man kan höra panflöjtens toner. Vilka historier förmedlar musiken oss från denna fjärran plats?", "en": "Across the great ocean, on the other side of the globe, lies the longest country in the world, where the sounds of the panpipes can be heard. What stories do they tell us about this faraway place?" }, "name": { "fi": "Mitä kuuluu, Chile? – Chile50-näyttelyyn liittyvä taidetyöpaja 7–9-vuotiaille", "sv": "Hur är det, Chile? – Konstverkstad för barn i åldern 7–9 år i anslutning till utställningen Chile50", "en": "How Are You, Chile? – Art workshop related to the Chile50 exhibition for children aged 7–9" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60754/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60920", "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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5168, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:25.588762Z", "last_modified_time": "2023-10-09T13:30:25.588783Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737039.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5168/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:25.410362Z", "last_modified_time": "2023-11-14T06:13:23.381958Z", "date_published": null, "start_time": "2023-10-16", "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, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Rakenna oma korttelisi Aallon puista*!</p><p>Leikillinen installaatio, jossa pääset täyttämään tilaa palikoilla.</p><p>Näyttely on osa Käden käänteessä tapahtumaa ja se on avoinna syyslomaviikon.</p><p>Käden käänteessä-tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Äly vapaa -yhteisö.</p><p>Tila: 2. kerroksen eteläisessä lasigalleria<br>Ikäsuositus: kaikenikäisille, lapset alle 8 v. aikuisen kanssa.</p><p>* = Puutavara on saatu lahjoituksena Aalto yliopiston puustudiolta.</p>", "sv": "<p>Bygg ditt eget kvarter av träblock donerade av Aalto-universitet!</p><p>En lekfull installation där du kan fylla utrymmet med block.</p><p>Utställningen är en del av evenemanget Käden käänteessä och är öppen under höstlovsveckan.</p><p>Evenemanget Käden käänteessä ordnas gemensamt av Annegården och frivilliggruppen Äly vapaa.</p><p>Åldersrekommendation: för alla äldrar, barn under 8 år med vuxen</p>", "en": "<p>Build your own city block from Aalto’s wood!</p><p>This is a playful installation where you can fill space with blocks.</p><p>The exhibition is part of the Käden käänteessä event and is open during the autumn break week.</p><p>The Käden käänteessä event is jointly organised by Annantalo and the Äly vapaa volunteer association.</p><p>Age recommendation: for all ages, children under 8 yo with an adult</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C66EA8B5FC7EA9BF0E73C68CF8D9127A/BYGGAA_STADII", "sv": "http://www.annantalo.fi/sv/evenemang/event/C66EA8B5FC7EA9BF0E73C68CF8D9127A/BYGG_STADEN_", "en": "http://www.annantalo.fi/en/events/event/C66EA8B5FC7EA9BF0E73C68CF8D9127A/BUILD_THE_CITY_" }, "short_description": { "fi": "Rakenna oma korttelisi Aallon puista*!", "sv": "Bygg ditt eget kvarter av träblock donerade av Aalto-universitet!", "en": "Build your own city block from Aalto’s wood!" }, "name": { "fi": "BYGGAA STADII – Syysloma | Toiminnallinen näyttely", "sv": "BYGG STADEN! – Höstloven | Aktiverande utställning", "en": "BUILD THE CITY! – Autumn holiday | Functional exhibition" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60920/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59818", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4413, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:30.927135Z", "last_modified_time": "2023-09-07T14:24:30.927167Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730356.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4413/?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:24:30.667039Z", "last_modified_time": "2023-11-14T06:13:23.237839Z", "date_published": null, "start_time": "2023-10-15T10:00:00Z", "end_time": "2023-10-15T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Kohta kääntyy käsi – ehkä myös silmä! Taideneuvolan perinteisessä koko perheen työpajapäivässä hypätään käsittämättömiin juttuihin.</p><p>Pajoissa pääset kokeilemaan miten muotoutuu huopa, kuinka toimii katapultti, millainen pesä on tuulella ja kulkeeko valo kehyksestä. Myös Annantalon näyttely ”Ihmeellinen kone” avautuu.</p><p>Ja kaikki tämä kädenkäänteessä!</p><p>Kaikkiin päivän työpajoihin on vapaa pääsy. Tarkempi ohjelma alla.</p><p>Tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Äly vapaa -yhteisö.</p><p>Ikäsuositus: kaikenikäisille, lapset alle 8 v. aikuisen kanssa.<br>Työskentelykieli: suomi</p><p><b>Työpajat ja ohjelma:</b></p><p><b> Klovni K</b> klo 12.45-15.00 (2.krs käytävä)<br>Kuinka palloilla voi jongleerata? Klovni K näyttää! Ja temppuilee ja jekuttaa.</p><p><b>Byggaa stadii</b> klo 13–15.30 (eteläinen lasigalleria)<br>Rakenna oma korttelisi Aallon puista!<br>Tapahtuman jälkeen toiminnallinen näyttely 2. kerroksen eteläisessä lasigalleriassa 16.–21.10.</p><p><b>Ohoh! Ahah!-pikkuvalopaja</b> klo 13-15 valotyöskentelyä ja klo 15.10-15.30 diashow (kuva 1 luokka)<br>Luvassa valon kokeellista ja taianomaista tutkimista. Syntyy yllättävä elämys – käden käänteessä – ja pienestä tulee suuren suurta! Tutut, arkipäiväiset materiaalit muuttuvat valon voimalla salaperäisiksi kuviksi ja vanhat valokoneet, kuten diaprojektorit, pääsevät kaappien kätköistä hommiin!</p><p><b>Pahviseireeni</b> klo 13–15.30 (2.krs käytävä)<br>Pahvilaatikoita, teippiä, saksia ja värejä! Annantalon 2. kerroksen käytävälle rakentuu omituinen suuri pahviseireeni joka seilaa houkuttelevana ja moneen suuntaan kurkottavana käytävän keskellä. Onko seireenillä monta päätä? Missä sen kädet ovat? Voiko pyrstön alta kömpiä?</p><p><b>Pieni pehmeä pramea pallero!</b> klo 13–15.30 (tekstiililuokka)<br>Siis, huovutetaan pallo lampaanvillasta! Huovutusvilla on tuoksuva, värikäs ja pehmeä. Luodaan pallo villasta, joka kastellaan mäntysuopavedellä. Pallo huovutetaan käsin hieromalla, hellästi ja kiireettömästi.</p><p><b>Pultti</b> klo 13–15.00 (grafiikanluokka)<br>Tuomaroitava katapulttikisa kaikenikäisille. <br>Melko perinteiset palkinnot. Ohjaajina ammusmestari Kati Pulttinen & ratapäällikkö Lento Ratanen.</p><p><b>Tuulentupa</b> klo 13–15.30 (kuva 2-luokka)<br>Pajassa tehdään käden käänteessä metsän taikaa ja kesän muistoja. Kesäkukkia, käpyjä, kaisloja, kiviä oksia, sammalta ynnä muuta!</p><p><b>Ihmeellinen kone-näyttely</b> klo 13-16 (galleria)<br>Alakerran gallerioihin tapahtuman yhteydessä avautuvassa näyttelyssä tutkitaan taidetta, joka on tavalla tai toisella liikkeessä!</p><p><b>Huom! Pajoihin viimeiset osallistujat otetaan sisään klo 15.00</b></p><p>Tapahtuman aikana rakastetun Skidilä-kahvilan pop up -pikkusisar <b>Skidimpi cafe</b> tarjoilee legendaarisen hyviä Skidilän korvapuusteja (v), kahvia, mehua ja pientä suolaista purtavaa! Avoinna klo 12–15.30. Maksuvatavat: käteinen, Pivo ja Mobilepay.</p>", "sv": "<p>Snart vänder handen – kanske också ögat! Under Konstrådgivningens traditionella verkstadsdag för hela familjen hoppar vi in i obegripliga grejer.</p><p>I verkstäderna får du testa hur en katapult fungerar, hur filt blir till, hur ett bo för vinden ser ut och hur ljuset färdas ur ramen. Och allt detta i en handvändning!</p>", "en": "<p>This is a great opportunity to try your hand at new things! Jump into the unknown during the traditional Art Clinic’s workshop day for the whole family.</p><p>In the workshops, you will have the chance to try out how a catapult works, how a blanket is made, what a nest for the wind looks like and how light passes through frames. And all this will happen with a wave of the hand!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0339431B45610F157722825258FA0C69/Kaden_kaanteessa_", "sv": "http://www.annantalo.fi/sv/evenemang/event/0339431B45610F157722825258FA0C69/Kaden_kaanteessa_", "en": "http://www.annantalo.fi/en/events/event/0339431B45610F157722825258FA0C69/Kaden_kaanteessa_" }, "short_description": { "fi": "Kohta kääntyy käsi – ehkä myös silmä! Taideneuvolan perinteisessä koko perheen työpajapäivässä hypätään käsittämättömiin juttuihin.", "sv": "Snart vänder handen – kanske också ögat! Under Konstrådgivningens traditionella verkstadsdag för hela familjen hoppar vi in i obegripliga grejer.", "en": "This is a great opportunity to try your hand at new things! Jump into the unknown during the traditional Art Clinic’s workshop day for the whole family." }, "name": { "fi": "Käden käänteessä! – Taideneuvolan työpajapäivä", "sv": "Käden käänteessä! – Konstrådgivningens verkstadsdag", "en": "Käden käänteessä! – Art Clinic’s workshop day" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59818/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60235", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "41,50/48,50/55/60 €", "sv": "41,50/48,50/55/60 €", "en": "41,50/48,50/55/60 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3423756", "sv": "https://www.lippu.fi/eventseries/name-3423756", "en": "https://www.lippu.fi/eventseries/name-3423756" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4412, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:30.420790Z", "last_modified_time": "2023-09-07T14:24:30.420812Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_714939.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4412/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:30.276583Z", "last_modified_time": "2023-11-14T06:13:23.166276Z", "date_published": null, "start_time": "2023-10-14T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "The Gatz Trading Co ltd", "sv": "The Gatz Trading Co ltd", "en": "The Gatz Trading Co ltd" }, "provider_contact_info": null, "description": { "fi": "<p>Step right up to experience the spectacular magic of cabaret!</p><p>Indulge in a mesmerizing journey through cabaret as we transport you into a world of enchantment and wonder. Prepare to be dazzled, as the grandeur of a vintage circus and classic burlesque comes alive before your very eyes. Join us for an unforgettable evening of jaw-dropping performances, glamorous costumes, and breathtaking acrobatics at Cabaret Noir! <br> <br>All guests must be min 18 years old. Please note that no drinks are allowed on the balcony.<br> <br>Duration about 1,5 h</p>", "en": "<p>Step right up to experience the spectacular magic of cabaret!</p><p>Indulge in a mesmerizing journey through cabaret as we transport you into a world of enchantment and wonder. Prepare to be dazzled, as the grandeur of a vintage circus and classic burlesque comes alive before your very eyes. Join us for an unforgettable evening of jaw-dropping performances, glamorous costumes, and breathtaking acrobatics at Cabaret Noir! <br> <br>All guests must be min 18 years old. Please note that no drinks are allowed on the balcony.<br> <br>Duration about 1,5 h</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2946D683E129EE3A90E2FDFF74C648CD/Cabaret_Noir_K-18_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/2946D683E129EE3A90E2FDFF74C648CD/Cabaret_Noir_K-18_", "en": "http://www.savoyteatteri.fi/en/events/event/2946D683E129EE3A90E2FDFF74C648CD/Cabaret_Noir_K-18_" }, "short_description": { "fi": "Step right up to experience the spectacular magic of cabaret!", "en": "Step right up to experience the spectacular magic of cabaret!" }, "name": { "fi": "Cabaret Noir (K-18)", "sv": "Cabaret Noir (K-18)", "en": "Cabaret Noir (K-18)" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60235/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60539", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "21 € / 16 €", "sv": "21 € / 16 €", "en": "21 € / 16 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/klubb-ankdamm-ben-granfelt-vuotalo-17351424/", "sv": "https://www.lippu.fi/event/klubb-ankdamm-ben-granfelt-vuotalo-17351424/", "en": "https://www.lippu.fi/event/klubb-ankdamm-ben-granfelt-vuotalo-17351424/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4411, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:30.028147Z", "last_modified_time": "2023-09-07T14:24:30.028171Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729623.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4411/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:29.854274Z", "last_modified_time": "2023-11-14T06:13:23.090499Z", "date_published": null, "start_time": "2023-10-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Kitaristi/laulaja Ben Granfelt viettää juhlavuotta ja julkaisee uuden, jo 20:nnen levynsä ”Gratitude”.</p><p><i>”Gratitude” on mun kunnianosoitus Gary Moorelle, Jeff Beckille ja Robin Trowerille. Nämä kolme ovet inspiroinneet minua siitä asti kun aloitin kitaran soiton. He ovat syy siihen että vieläkin soitan ja nautin siitä enemmän kun koskaan aikaisemmin.”</i></p><p>Konsertissa kuullaan koko uusi levy sekä poimintoja Benin pitkältä uralta. \"Been there and done that ja vielää lisää tulossa”, kertoo Ben ja lupaa paljon sooloja ja hyvää fiilistä iltaan.</p><p><b>Lavalla:</b><br>Ben Granfelt, kitara, laulu<br>Masa Maijanen, basso, laulu<br>Jari Salminen, rummut, laulu<br>Miika Aukio, koskettimet, laulu</p><p>Kesto n. 2 tuntia, sis. väliajan.</p><p>Klubi-ilta, A-oikeudet, Kahvila Pokkari vastaa tarjoilusta. Ovet avataan klo 18.30</p><p>Liput Lippu.fi tai samana iltana ovelta klo 17.30 alkaen.</p><p>Järjestäjä: Sprucefield Ltd yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Gitarristen/sångaren Ben Granfelt firar sitt jubileumsår och släpper ett nytt album, Gratitude, som redan är hans 20:e</p><p>På konserten får publiken höra det nya albumet i sin helhet och axplock från Bens långa karriär.</p><p>Ben Granfelt<br>Masa Maijanen<br>Jari Salminen<br>Miika Aukio</p><p>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen. Dörrarna öppnas kl. 18.30.<br>Längd ca 2h inkl. paus. Bilj. á 21/16 € via Lippu.fi eller vid dörren från kl. 17.30.</p><p>Arr. Sprucefield Ltd i samarbete med Nordhuset.</p>", "en": "<p>Guitarist/singer Ben Granfelt celebrates an anniversary and releases a new 20th album “Gratitude”.</p><p>The concert will feature the new album in its entirety as well as highlights from Ben’s long career.</p><p>Ben Granfelt<br>Masa Maijanen<br>Jari Salminen<br>Miika Aukio</p><p>Club night, fully licensed bar, Café Pokkari. Doors open at 6.30 PM. Duration approx. 2 hour, inc. intermission. Tickets € 21/16 from lippu.fi or from the door 5.30 PM forwards.</p><p>Org. Sprucefield Ltd in cooperation with Vuotalo.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D6FEB37EAACFA117A0E6E6208E22375D/Ben_Granfelt_60th_Anniversary_Tour_2023", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D6FEB37EAACFA117A0E6E6208E22375D/Ben_Granfelt_60th_Anniversary_tour_2023", "en": "http://www.vuotalo.fi/en/events/event/D6FEB37EAACFA117A0E6E6208E22375D/Ben_Granfelt_60th_Anniversary_tour_2023" }, "short_description": { "fi": "Kitaristi/laulaja Ben Granfelt viettää juhlavuotta ja julkaisee uuden, jo 20:nnen levynsä ”Gratitude”.", "sv": "Gitarristen/sångaren Ben Granfelt firar sitt jubileumsår och släpper ett nytt album, Gratitude, som redan är hans 20:e", "en": "Guitarist/singer Ben Granfelt celebrates an anniversary and releases a new 20th album “Gratitude”." }, "name": { "fi": "Ben Granfelt 60th Anniversary Tour 2023 – Klubb Ankdamm", "sv": "Ben Granfelt 60th Anniversary tour 2023 – Klubb Ankdamm", "en": "Ben Granfelt 60th Anniversary tour 2023 – Klubb Ankdamm" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60539/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61051", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?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:42/?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:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5167, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:21.946333Z", "last_modified_time": "2023-10-09T13:30:21.946362Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737385.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5167/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:21.741827Z", "last_modified_time": "2023-11-14T06:13:23.016430Z", "date_published": null, "start_time": "2023-10-14T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista.</p><p>Elokuva perustuu kirjailija <b>Vilja-Tuulia Huotarisen</b> samannimiseen romaaniin, joka voitti Finlandia Juniorin ilmestyessään vuonna 2011.</p><p>Keväällä 1986 Tsernobylin ydinvoimalassa Neuvostoliitossa räjähtää ja hämäläiseen pikkukylään saapuu tyttö nimeltä Mimi, joka saa teini-ikäisen Mariian elämän hetkeksi täyteen valoa. Kahdenkymmenen vuoden jälkeen aikuistunut Mariia tulee vierailulle lapsuudenkotiinsa ja palaa muistoissaan nuoruutensa kesään ja sitä seuranneeseen traagiseen syksyyn.</p><p>Ensirakkauden kasarikesään palatessa, Mariian on päästettävä irti syyllisyydestä sekä annettava anteeksi muillekin kuin itselleen.</p><p>Kesto 91 min<br>Ikäraja 12<br>Ensi-ilta 13.10.2023<br>Tekstitys suomeksi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1BCCFEEBC4E0602826FA0159650BC540/Valoa_valoa_valoa_12_" }, "short_description": { "fi": "Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista." }, "name": { "fi": "Valoa valoa valoa (12) – Kino Helios" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61051/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60508", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": false, "offer_price_groups": [], "price": { "fi": "18 € / 13 €", "sv": "18 € / 13 €", "en": "18 € / 13 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/dionysian-band/", "sv": "https://www.lippu.fi/artist/dionysian-band/", "en": "https://www.lippu.fi/artist/dionysian-band/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4410, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:28.828677Z", "last_modified_time": "2023-09-07T14:24:28.828708Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730528.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:27.951966Z", "last_modified_time": "2023-11-14T06:13:22.940305Z", "date_published": null, "start_time": "2023-10-14T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Legendaarinen yhtye The Doors perustettiin Venice Beachillä Kaliforniassa kesällä 1965.</p><p>Syksyllä 2023 Kanneltalon lavalla Suomen autenttisin the Doors tribuuttiyhtye <b>Dionysian Band</b> tributoi Jim Morrisonin ja yhtyeen liekin takaisin henkiin! Yhtye esittää läpileikkauksen koko The Doorsin tuotannosta sisältäen mm. kappaleet Light My Fire, Roadhouse Flues, Break On Through sekä useita vähemmän kuultuja helmiä.</p><p><i>There Are Things Known, and Things Unknown, and In Between Are the Doors</i>.</p><p>Laulu – Henrik Korpela<br>Koskettimet ja basso – Jari Melart<br>Kitara – Pekka Helesuo<br>Rummut – Tatu Pärssinen</p><p>Kesto 1 t 20 min<br>Liput: 18 € /13 €, tulevat myyntiin lähempänä tapahtumaa</p>", "sv": "<p>Det legendariska bandet The Doors grundades i Venice Beach i Kalifornien sommaren 1965</p><p>2022 på Gamlasgårdens scen, tributerar Finlands mest autentiska The Doors tributband <b>Dionysan Band</b> – Jim Morrison och bandets flamma till liv igen! Bandet spelar ett urval av hela The Doors låtskatt, inklusive bl.a. låtarna Light My Fire, Roadhouse Blues, Break On Through osv.. samt ett antal mindre kända pärlor.</p>", "en": "<p>The legendary band The Doors was founded in Venice Beach, California in the summer of 1965.</p><p>In 2022, <b>Dionysian Band</b>, the most authentic The Doors tribute band in Finland, will relight the flame of Jim Morrison and the rest of the band on the Kanneltalo stage! The band will play a cross-section of the entire Doors production, including hits such as Light My Fire, Roadhouse Blues, Break On Through, as well as several more rarely heard gems.</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2EB3D344C165CB255DBAC4FCFA3724BC/Dionysian_Band_Tribute_to_the_Doors", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2EB3D344C165CB255DBAC4FCFA3724BC/Dionysian_Band_Tribute_to_the_Doors", "en": "http://www.kanneltalo.fi/en/events/event/2EB3D344C165CB255DBAC4FCFA3724BC/Dionysian_Band_Tribute_to_the_Doors" }, "short_description": { "fi": "Legendaarinen yhtye The Doors perustettiin Venice Beachillä Kaliforniassa kesällä 1965.", "sv": "Det legendariska bandet The Doors grundades i Venice Beach i Kalifornien sommaren 1965", "en": "The legendary band The Doors was founded in Venice Beach, California in the summer of 1965." }, "name": { "fi": "Dionysian Band – Tribute to the Doors – Ilta The Doorsin musiikkia!", "sv": "Dionysian Band – Tribute to the Doors – Kväll med The Doors musik!", "en": "Dionysian Band – Tribute to the Doors – Evening with The Doors music!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60508/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60927", "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: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5166, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:21.528250Z", "last_modified_time": "2023-10-09T13:30:21.528270Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736390.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5166/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:21.301538Z", "last_modified_time": "2023-11-14T06:13:22.855242Z", "date_published": null, "start_time": "2023-10-14T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Tapahtuman on kuratoinut Itä-Helsingissä vaikuttava kulttuurin sekatyöläinen, muusikko Arwi Lind. Hän myös pyörittää tänä vuonna 20 vuotta täyttävää Helmi Levyt -levy-yhtiötä.</p><p>Stoan aulassa levymarkkinat & DJ Fresh Ana. Esiintymässä Muuan Mies, Asa & DJ Polarsoul ja Pambikallio. Vapaa pääsy!</p><p>Klo 16 Muuan Mies <br>Klo 17.30 ASA & DJ Polarsoul <br>Klo 19 Pambikallio</p><p><i>Sounds of Stoa on kolme kertaa syksyn 2023 aikana järjestettävä tapahtuma, joka täyttää kulttuurikeskus Stoan livemusiikilla ja muulla ohjelmalla.</i><br> <br><b>Klo 16 | Muuan Mies</b><br>Muuan Mies on Jyväskylässä vuosituhannen vaihteessa perustettu saunavihdan tuoksuista suomisoundia, folkia, rockia ja iskelmää yhdistelevä mainio rytmiorkesteri.</p><p>Muuan miehen laulut kirjoittaa solisti <b>Ismo Puhakka</b>, joka on myös betonitehtaalla työskennellyt filosofian tohtori, lastenkirjailija ja zeniläisyyden harjoittaja. Koskettimia soittaa mm. omasta Risto-yhtyeestään tunnettu <b>Risto Ylihärsilä</b>, rumpalina Helmi Levyt -yhteyksistä tuttu <b>Arwi Lind</b>, basistina tuhdit reggaejuuret kasvattanut <b>Mikko Leinonen</b> sekä kitaristina nuori neropatti <b>Lauri Sintonen</b>.</p><p>Viimeisin ja järjestyksessään kuudes Muuan Mies -albumi <i>Pari paskaa biisiä</i> ilmestyi keväällä 2022. Muuan Miehen ilosta sykkivä musiikki valloittaa sydämiä vauvasta vaariin, muotivirtauksista piittaamatta. Stoan keikalle ovat tervetulleita lapsetkin!</p><p><b>Klo 17.30 | Asa & DJ Polarsoul</b><br>Me rakennamme identiteettimme ja tulemme osaksi ympäröivää kulttuuria kielen kautta. Tätä todellisuutta me myös dokumentoimme kielellä. Kieli tarjoaa meille työkalut oman maailman rakentamiseen. Sen Asa on tehnyt.</p><p>Aliaksella <b>Avain</b> uransa aloittaneella <b>Matti Salolla</b> oli aina oma painovoimansa, joka ohjasi omalle polulle. Klassikoksi muodostunut debyytti <i>”Punainen tiili”</i> toi sosiaalista realismia ja poliittista paatosta Rähinän ulosantiin, mutta varsinainen läpimurto oman äänen, oman kielen ja oman maailman, löytymiseen oli <b>Asa</b>.</p><p>Viimeisen kymmenen vuoden aikana Asa on julkaissut ja esittänyt musiikkia ahkerasti, psykedeliasta vahvasti ammentavasta ja tee se itse -henkisestä <i>Foetida</i>-sarjasta perinteisemmällä hiphop-estetiikalla operoiviin levyihin, kuten <i>Love</i> ja <i>Jou jou</i>, sekä DJ-vetoisista keikoista Asa Bäänd II -kokoonpanon konsertteihin.</p><p>Vuonna 2023 Asa on taiteilijana itsenäinen sekä esteettisesti että oman levy-yhtiönsä ansiosta.</p><p><b>Klo 19 | Pambikallio</b><br>Pambikallio on hurmannut suomenkielisellä psykedeliapopillaan heti ensijulkaisuistaan lähtien. Yhtye singahti indietaivaalle vuonna 2022 ja on rönsynnyt <b>Pauliina Koivusaaren</b> ja <b>Lauri Kallion</b> muodostamasta duosta viisihenkiseksi säkenöiväksi liveyhtyeeksi.</p><p>Pambikallion utuisen ja kimaltelevan kaikuisan dreampop-rangan ympärille on kasvanut duon käsissä ilahduttavan svengaavat, määrätietoisesti surisevat ja psykedeelisen taianomaiset raajat. Lopputulos on universaalin suvereeni. Kaikki yksityiskohdat ovat loppuun asti mietittyjä ja sen huomaa löytäessään yhtyeen musiikista toistuvasti jotain uutta.</p><p>Yhtyeen toinen albumi, <i>Parc de Pambi</i> julkaistaan lokakuussa 2023 Helmi Levyjen toimesta. <i>Parc de Pambi</i> -albumi kasvattaa yhtyeen musiikkia soinnillisesti aiempaa suuremmaksi ja dramaattisemmaksi. Levyn tyylilaji ja viittaukset poukkoilevat vinhasti paikasta toiseen; tunnelma polveilee dramaattisen pompöösistä eteeriseen ajelehdintaan ja lapsellisesta riehakkuudesta toismaalliseen hurmokseen.</p><p>Yhtye julkaisi debyyttialbuminsa maaliskuussa 2022. Pambikallio -albumi sai innostuneen vastaanoton niin yleisöltä kuin kriitikoiltakin. Yhtye on nostettu mm. YleX Läpimurto 2022 -listaukseen ja ollut ehdolla niin Indie Awardseissa kuin Femma-gaalassakin vuonna 2022.</p><p>Duona aloittanut yhtye kasvaa keikoille viisihenkiseksi bändiksi <b>Teemu Vänskän</b> (koskettimet), <b>Io Petterssonin</b> (basso) ja <b>Teemu Mustosen</b> (rummut) täydentämänä. Tervetuloa tutkimusmatkalle Pambin puistoon!</p><p>Ravintola Skutta palvelee tapahtuman ajan. <br>Tapahtuma on ikärajaton.<br>Vapaa pääsy.</p>", "sv": "<p>Kuratorn för evenemanget är musiker och mångsysslare inom kultur Arwi Lind som verkar i östra Helsingfors och leder skivbolaget Helmi Levyt som fyller 20 år i år.</p><p>Under evenemanget blir det skivmarknad & DJ Fresh Ana i Stoas lobby. Muuan Mies, Asa & DJ Polarsoul och Pambikallio kommer att uppträda vid evenemanget. Gratis inträde!</p><p>Kl. 16 Muuan Mies <br>Kl. 17.30 Asa & DJ Polarsoul <br>Kl. 19 Pambikallio</p><p><b>Kl. 16 | Muuan Mies</b><br>Muuan Mies är en förträfflig rytmorkester som bildades i Jyväskylä vid sekelskiftet och kombinerar finländskt sound med doften av bastukvast, folk, rock och schlager. Låtarna för Muuan Mies är skrivna av solist Ismo Puhakka som är filosofie doktor, barnförfattare och utövare av zen som också har arbetat i en betongfabrik. Keyboardisten är <b>Risto Ylihärsilä</b> som är känd bland annat för sitt eget band Risto, trummisen är <b>Arwi Lind</b> som är känd för <b>Helmi Levyt</b>, basisten är <b>Mikko Leinonen</b> med bastanta reggaerötter samt gitarristen ett ung geni <b>Lauri Sintonen</b>.</p><p><b>Kl. 17.30 | Asa & DJ Polarsoul</b><br>Vi bygger upp vår identitet och blir en del av den omgivande kulturen genom språk. Vi dokumenterar också denna verklighet genom språk. Språket ger oss verktyg för att bygga vår egen värld. Det har Asa gjort.</p><p><b>Matti Salo</b> som inledde sin karriär under aliaset <b>Avain</b> hade alltid sin egen tyngdkraft som styrde honom mot en egen stig. Debutalbumet <i>Punainen tiili</i> som blev klassiker gav socialrealism och politiskt patos åt hiphopkollektivet Rähinäs framställningssätt, men det egentliga genombrottet att hitta egen röst, eget språk och egen värld var Asa.</p><p><b>Kl. 19 | Pambikallio</b><br>Pambikallio har charmat med sin finskspråkiga psykedeliska pop från och med sitt debutalbum. Bandet flög upp till indiehimlen 2022 och har vuxit från duon som bestod av <b>Pauliina Koivusaari</b> och <b>Lauri Kallio</b> till ett glittrande liveband med fem medlemmar. I duons händer har Pambikallio fått glädjande svängande, målmedvetet surrande och psykedeliskt magiska lemmar runt bandets diffusa och glittrande ekande dreampop-skelett.</p><p>Ingen åldersgräns<br>Fritt inträde</p>", "en": "<p>The event’s curator is Arwi Lind, a musician and cultural jack-of-all-trades based in Eastern Helsinki, who runs the Helmi Levyt record label, which is celebrating its 20th anniversary this year.</p><p>During the event, there will be a record market & a DJ in Stoa's lobby. Muuan Mies, Asa & DJ Polarsoul and Pambikallio will perform at the event. Free entry!</p><p>4 pm Muuan Mies <br>5.30 pm Asa & DJ Polarsoul <br>7 pm Pambikallio</p><p><b>4 pm | Muuan Mies</b><br>Muuan Mies is a splendid rhythmic music band founded in Jyväskylä at the turn of the millennium, which combines old Finnish schlager, folk and rock in its sound. The Muuan Mies songs are written by the singer Ismo Puhakka, who’s also a doctor of philosophy, author of children’s book, Zen practitioner and a former concrete factory worker. The keyboards are played by <b>Risto Ylihärsilä</b>, known for his own band Risto, the drummer is <b>Arwi Lind</b>, known for the <b>Helmi Levyt</b> record label, the bass player is <b>Mikko Leinonen</b>, a bassist with strong reggae roots, and <b>Lauri Sintonen</b>, a young genius, plays the guitar.</p><p><b>5.30 pm | Asa & DJ Polarsoul</b> <br>We build our identity and engage with the culture around us through language. We also document this reality in language. Language provides us with the tools to build our own world. That’s also something that Asa has done.</p><p><b>Matti Salo</b>, who started his career as <b>Avain</b>, always had his own gravity, which guided him to his own path. The classic debut <i>Punainen tiili</i> (Red brick) brought social realism and political pathos to the releases of the Rähinä Records label, but the real breakthrough in finding his own voice, language and world was Asa.</p><p><b>7 pm | Pambikallio</b><br>Pambikallio’s Finnish-language psychedelic pop has charmed audiences since the band’s first releases. The band popped into the indie music sky in 2022, evolving from a duo consisting of <b>Pauliina Koivusaari</b> and <b>Lauri Kallio</b> into an energetic five-member live band. Pambikallio’s hazy, glittering and resonant dreampop core is complemented with delightfully swinging, buzzing and psychedelic sounds.</p><p>No age limit<br>Free entry</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5BD3DF4BBD70BC3D901D7166E87C1CFB/Muuan_Mies_Asa_DJ_Polarsoul_Pambikallio", "sv": "http://www.stoa.fi/sv/evenemang/event/5BD3DF4BBD70BC3D901D7166E87C1CFB/Muuan_Mies_Asa_DJ_Polarsoul_Pambikallio", "en": "http://www.stoa.fi/en/events/event/5BD3DF4BBD70BC3D901D7166E87C1CFB/Muuan_Mies_Asa_DJ_Polarsoul_Pambikallio" }, "short_description": { "fi": "Tapahtuman on kuratoinut Itä-Helsingissä vaikuttava kulttuurin sekatyöläinen, muusikko Arwi Lind. Hän myös pyörittää tänä vuonna 20 vuotta täyttävää Helmi Levyt -levy-yhtiötä.", "sv": "Kuratorn för evenemanget är musiker och mångsysslare inom kultur Arwi Lind som verkar i östra Helsingfors och leder skivbolaget Helmi Levyt som fyller 20 år i år.", "en": "The event’s curator is Arwi Lind, a musician and cultural jack-of-all-trades based in Eastern Helsinki, who runs the Helmi Levyt record label, which is celebrating its 20th anniversary this year." }, "name": { "fi": "Muuan Mies | Asa & DJ Polarsoul | Pambikallio – SoS – Sounds of Stoa", "sv": "Muuan Mies | Asa & DJ Polarsoul | Pambikallio – SoS – Sounds of Stoa", "en": "Muuan Mies | Asa & DJ Polarsoul | Pambikallio – SoS – Sounds of Stoa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60927/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60060", "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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4409, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:27.135707Z", "last_modified_time": "2023-09-07T14:24:27.135741Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732397.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4409/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:26.788877Z", "last_modified_time": "2023-11-14T06:13:22.776086Z", "date_published": null, "start_time": "2023-10-14T13:00:00Z", "end_time": "2023-10-14T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Keskustelua solidaarisuuden monista muodoista avataan erilaisista näkökulmista.</p><p>Solidaarisuuden toinen puoli on rasismi, joka ei kohdistu samalla tavalla kaikkiin ulkomaalaisryhmiin.</p><p>Mukana ajankohtaisessa ja askarruttavassa keskustelussa tutkija <b>Tuija Saresma</b>, toimittaja ja tietokirjailija <b>Erique Tessieri</b>, Suomen Somalia-verkoston puheenjohtaja <b>Habiba Ali</b>, Suomen chileläisen yhteisön edustaja, Arabikansojen ystävyysseura AKYS:in <b>Sirkku Kivistö</b> ja aktivisti <b>Outi Popp</b>. Juontajat: <b>Telle Virtanen</b> ja <b>Juha-Pekka Väisänen</b>. Yleisökysymyksiä ja keskustelua. <br> <br>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>Samtal om solidaritetens många former ur olika perspektiv.</p><p>Solidaritetens motpol är rasism som inte riktas på samma sätt mot alla utlänningsgrupper.</p><p><b>Talare:</b> <br>Tuija Saresma, Erique Tessieri, Habiba Ali, Sirkku Kivistö ja Outi Popp. <b>Programledare</b>: Telle Virtanen, Juha-Pekka Väisänen.</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 other side of solidarity is racism, which does not affect all groups of foreigners in the same way.</p><p><b>Speakers:</b> <br>Tuija Saresma, Erique Tessieri, Habiba Ali, Sirkku Kivistö ja Outi Popp. <b>Hosts</b>: Telle Virtanen, Juha-Pekka Väisänen.</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>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F329BD05CA67E6044F16763704679B9E/Seminaari_Solidaarisuus_myotaelamista_apua_ja_jalkatyota", "sv": "http://www.caisa.fi/sv/evenemang/event/F329BD05CA67E6044F16763704679B9E/Seminarium_Solidaritet_medkansla_hjalp_och_fotarbete", "en": "http://www.caisa.fi/en/events/event/F329BD05CA67E6044F16763704679B9E/Seminar_Solidarity_Empathy_Help_and_Legwork" }, "short_description": { "fi": "Keskustelua solidaarisuuden monista muodoista avataan erilaisista näkökulmista.", "sv": "Samtal om solidaritetens många former ur olika perspektiv." }, "name": { "fi": "Seminaari: Solidaarisuus – myötäelämistä, apua ja jalkatyötä – Chile50-teemaisia tapahtumia Caisassa", "sv": "Seminarium: Solidaritet – medkänsla, hjälp och fotarbete – Evenemang med Chile50-tema i Caisa", "en": "Seminar: Solidarity – Empathy, Help and Legwork – Chile50 themed events at Caisa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60060/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61081", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5165, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:18.594525Z", "last_modified_time": "2023-10-09T13:30:18.594571Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737448.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5165/?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-10-09T13:30:18.455983Z", "last_modified_time": "2023-11-14T06:13:22.704487Z", "date_published": null, "start_time": "2023-10-14T12:00:00Z", "end_time": "2023-10-14T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!</p><p>Eräänä sateisena iltana Muumilaakson rauhaisaan idylliin saapuu filosofiksi esittäytyvä Piisamirotta ennustamaan koko maapalloa kohtaavaa katastrofia. Yhtäkkiä kesä ei olekaan enää niin kuin ennen. Muumipeikon, Nipsun ja Pikku Myyn on lähdettävä vaikeakulkuiseen seikkailuun tähtitornivuoren huipulle selvittämään, onko maailmanloppu todella tulossa.</p><p>Elämän palaaminen uomiinsa edellyttää Muumilaakson väeltä ennennäkemätöntä sankaruutta. Matkalla kohdataan jännittäviä vaaroja, mutta myös luonnon ihmeitä ja uskomattomia aarteita – ja solmitaan korvaamattomia uusia ystävyyksiä. Tarinassa tavataan myös seikkailija Nuuskamuikkunen sekä viisas keksijä Niisku ja hänen siskonsa Niiskuneiti.</p><p>Vahvistunein joukoin kotiin Muumilaaksoon palattuaan on ystävyksillä entistäkin paremmat eväät niin pyörremyrskyiltä kuin pyrstötähdiltä suojautumiseen ja koko Muumi-perheen pelastamiseen. Tarvitaan vain kekseliäisyyttä, yhteishenkeä ja valmiutta auttaa apua tarvitsevia, jotta kaikki pysyvät turvassa merkillisiltä luonnonilmiöiltä.</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/195CA93ADBD8F6855224BF244AC0FB3A/Muumipeikko_ja_pyrstotahti_S_" }, "short_description": { "fi": "Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!" }, "name": { "fi": "Muumipeikko ja pyrstötähti (S) – Kino Helios" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61081/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26873, "next": "