Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1449
{ "meta": { "count": 32746, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1450", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1448" }, "data": [ { "id": "kulke:60220", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4356, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:42.728742Z", "last_modified_time": "2023-09-07T14:23:42.728762Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734226.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4356/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:23:42.066764Z", "last_modified_time": "2023-11-14T06:13:17.364651Z", "date_published": null, "start_time": "2023-10-06T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "en": "http://www.stoa.fi/en/events/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60220/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60505", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4355, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:41.327663Z", "last_modified_time": "2023-09-07T14:23:41.327683Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730506.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4355/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.959467Z", "last_modified_time": "2023-11-14T06:13:17.280850Z", "date_published": null, "start_time": "2023-10-06", "end_time": "2023-10-21", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.", "sv": "Boka en kostnadsfri privatföreställning.", "en": "Book yourself a free personal performance." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Suomalaisen_barokkiorkesterin_muusikot_Jeremy_Barrois_X_TUNNE", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musiker_fran_Suomalainen_barokkiorkesteri_Jeremy_Barrois_X_TUNNE", "en": "http://www.kanneltalo.fi/en/events/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musicians_of_the_Finnish_Baroque_Orchestra_Jeremy_Barrois_X_TUNNE" }, "description": { "fi": "<p>Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.</p><p>Kuulijalle rakennetaan Kanneltalon galleriaan oma tila, jossa ympäröivä elämä ja muut kuulijat jäävät hetkeksi taka-alalle, vain musiikki ja muusikko ovat tärkeitä. Varaa itsellesi maksuton henkilökohtainen esitys, tule seuraamaan live-kohtaamisia taustalta tai tule katsomaan videokooste.</p><p>X.TUNNE. on Helsinki Early Music Festivalin versio <b>Suomalaisen barokkiorkesterin</b> <i>Tule.Tunne.</i> <br>-barokkiperformanssilaboratoriosta.</p><p>Perjantaina 6.10. klo 15–18 ja lauantaina 7.10. klo 13–16 tarjolla on yhteensä 12 puolen tunnin mittaista kohtaamista, jossa yksi muusikko esiintyy kerrallaan yhteen kuulijaan keskittyen.</p><p><b>Varattavissa olevat ajat:</b><br>Perjantai 6.10. klo 15, 15.30, 16, 16.30, 17 ja 17.30<br>Lauantai 7.10. klo 13, 13.30, 14, 14.30, 15 ja 15.30</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Maksuttomat lippuvaraukset: Lippu.fi</a></u></p><p>Videokuvaaja <b>Jeremy Barrois</b> tallentaa esitykset ja editoi valikoiduista hetkistä kokonaisuuden, joka on katsottavissa Kanneltalon galleriassa osana <i>Helsinki Early Music Festivalia</i>. Tallenne on nähtävissä Kanneltalon galleriassa 11.–21.10.2023.</p><p>Yhteistyössä Kanneltalo, Suomalainen barokkiorkesteri, Helsinki Early Music Festival</p><p>Galleria, vapaa pääsy</p>", "sv": "<p>Boka en kostnadsfri privatföreställning.</p><p>För lyssnaren byggs ett eget utrymme i Gamlasgårdens galleri där livet omkring och den övriga publiken hamnar i bakgrunden för en stund och bara musiken och musikern har betydelse. Boka en kostnadsfri privatföreställning, följ live-mötena från kulisserna eller sätt dig och titta på videocollaget.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Kostnadsfria biljettbokning: Lippu.fi</a></u></p>", "en": "<p>Book yourself a free personal performance.</p><p>The listener is built their own space at the Kanneltalo gallery, where the surrounding life and other listeners take a back seat for a moment and only the music and the musician are important. Book yourself a free personal performance, come and follow the live encounters in the background or watch the video compilation.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Free ticket bookings: Lippu.fi</a></u></p>" }, "name": { "fi": "Suomalaisen barokkiorkesterin muusikot & Jeremy Barrois: X.TUNNE – Musiikillinen kohtaamislaboratorio ja videokooste", "sv": "Musiker från Suomalainen barokkiorkesteri & Jeremy Barrois: X.TUNNE – Ett musikaliskt möteslaboratorium och videocollage", "en": "Musicians of the Finnish Baroque Orchestra & Jeremy Barrois: X.TUNNE – Musical encounter laboratory and video compilation" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60990", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5146, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:43.791522Z", "last_modified_time": "2023-10-09T13:29:43.791542Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737111.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5146/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:42.804303Z", "last_modified_time": "2023-11-14T06:13:17.195474Z", "date_published": null, "start_time": "2023-10-05T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Haastatteludokumentin ”Kulttuuria täynnä ¬ muistoja Sortavalasta” -näytös on osa Stoan gallerian Aikamatka Sortavalaan -näyttelyn oheisohjelmaa." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FCF05BFDCD33291F1CF131B379F6F28B/Kulttuuria_taynna_muistoja_Sortavalasta_-dokumenttinaytos" }, "description": { "fi": "<p>Haastatteludokumentin ”Kulttuuria täynnä ¬ muistoja Sortavalasta” -näytös on osa Stoan gallerian Aikamatka Sortavalaan -näyttelyn oheisohjelmaa.</p><p>Sortavala oli sotia edeltävällä ajalla monin tavoin poikkeuksellinen kaupunki. Sen sijainti Laatokan pohjoisrannalla tuolloisten Karjalan laulumaiden äärellä sekä kaupungin vireä ja yritteliäs ilmapiiri loivat hyvät edellytykset monipuoliselle kulttuurielämälle. Voidaan sanoa, että Sortavalan yhteiskunnallinen ja kulttuurinen merkitys oli huomattavasti sen kokoa suurempi.<br> <br>Nyt valmistunut haastatteludokumentti valottaa eri näkökulmista Sortavalan ja sen ympäristön kulttuuri- ja sivistyselämää, sen vaikuttajia ja ihmisten arkea siellä. Kertojina on Sortavala-asiantuntijoita sekä siellä nuoruutensa viettäneitä alkuperäisiä sortavalalaisia. Kaupungista kehittyi 1800-luvun lopulta alkaen sota-aikaan asti kulttuurinen, taloudellinen sekä henkinen ja hengellinen keskus. <br> <br>Elokuva on samalla surullisella tavalla ajankohtainen. Kuulemme aikalaisten tunnelmia, kun sodan alkaessa lapsuus loppui ja joutui näkemään kasvuympäristön tuhoutumisen. Vuosikymmenienkään aikana rakkaus kotiseutuun ei ole unohtunut. <br> <br>Dokumentin on käsikirjoittanut ja ohjannut Sortavala-seuran puheenjohtaja Marja Lampi ja se on toteutettu yhteistyössä Metropolia Ammattikorkeakoulun elokuva- ja televisioalanopiskelijoiden kanssa. <br>Elokuva käynnistää Helsingissä toimivan Sortavala-seuran 70-vuotisjuhlavuoden.</p><p>Dokumentin kesto n. 1 tunti.</p>" }, "name": { "fi": "Kulttuuria täynnä – muistoja Sortavalasta -dokumenttinäytös" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60990/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60142", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/the-mystery-wires-markku-veijalainen-vuotalo-17474773/", "sv": "https://www.lippu.fi/event/the-mystery-wires-markku-veijalainen-vuotalo-17474773/", "en": "https://www.lippu.fi/event/the-mystery-wires-markku-veijalainen-vuotalo-17474773/" }, "description": null, "price": { "fi": "29 €", "sv": "29 €", "en": "29 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4353, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:40.219074Z", "last_modified_time": "2023-09-07T14:23:40.219096Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733182.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4353/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.074496Z", "last_modified_time": "2023-11-14T06:13:17.123269Z", "date_published": null, "start_time": "2023-10-05T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.", "sv": "Kvällens programledare Mape tar publiken till 1960-talets ungdomsmusik tillsammans med Back To The Sixties-legenderna.", "en": "The evening’s host Mape takes the audience on a journey through 1960s youth music with the legends of Back To The Sixties." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F70C4C14F7DBC6BE67B58047E732EFB2/The_Mystery_Wires_Markku_Mape_Veijalainen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/F70C4C14F7DBC6BE67B58047E732EFB2/The_Mystery_Wires_Markku_Mape_Veijalainen", "en": "http://www.vuotalo.fi/en/events/event/F70C4C14F7DBC6BE67B58047E732EFB2/The_Mystery_Wires_Markku_Mape_Veijalainen" }, "description": { "fi": "<p>Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.</p><p>Luvassa rautalankaklassikoita ja nuorisoelokuvamusiikkia Cliff & The Shadows -tyyliin.</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa. <br>Sali avautuu klo 17.30.<br>Kesto: 2 t <br>Liput lippu.fi tai ovelta.</p>", "sv": "<p>Kvällens programledare Mape tar publiken till 1960-talets ungdomsmusik tillsammans med Back To The Sixties-legenderna.</p><p>Det utlovas klassiska ståltrådshits och musik från ungdomsfilmer i Cliff & The Shadows stil.</p><p>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen. Barn under 18 år endast i sällskap av en vuxen.<br>Dörrarna öppnas kl. 17.30.<br>Längd ca 2 h. Bilj. á 29 € via Lippu.fi eller vid dörren.</p>", "en": "<p>The evening’s host Mape takes the audience on a journey through 1960s youth music with the legends of Back To The Sixties.</p><p>The programme includes ironclad classics and youth film music in the style of Cliff Richard & The Shadows.</p><p>Club night, fully licensed bar, Café Pokkari. Children under 18 yrs only with an adult. <br>Doors open at 5.30 PM. <br>Duration approx. 2 hours. <br>Tickets € 29 from lippu.fi or from the door.</p>" }, "name": { "fi": "The Mystery Wires & Markku \"Mape\" Veijalainen – Ilta Cliff & The Shadowsin tyyliin", "sv": "The Mystery Wires & Markku \"Mape\" Veijalainen", "en": "The Mystery Wires & Markku \"Mape\" Veijalainen" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60142/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60519", "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:31/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV", "en": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV" }, "description": null, "price": { "fi": "15 € / 10 €", "sv": "15 € / 10 €", "en": "15 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4354, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:40.639097Z", "last_modified_time": "2023-09-07T14:23:40.639153Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_726140.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4354/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.463579Z", "last_modified_time": "2023-11-14T06:13:17.041699Z", "date_published": null, "start_time": "2023-10-05T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Euroopan laajuisen Big Band -sävellyskilpailun finaalikonsertti kuullaan Malmitalossa!", "sv": "Finalkonserten för Big Band-kompositionstävlingen går av stapeln i Malms kulturhus!", "en": "The final concert of the pan-European Big Band Composing Contest will take place at Malmitalo!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest", "en": "http://www.malmitalo.fi/en/events/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest" }, "description": { "fi": "<p>Euroopan laajuisen Big Band -sävellyskilpailun finaalikonsertti kuullaan Malmitalossa!</p><p>Joka toinen vuosi pidettävä <b>Helsinki International Big Band Composing Contest</b> järjestetään jälleen <b>UMO Helsinki Jazz Orchestran</b> ja <b>Suomen Big Band -yhdistys ry:n</b> toteuttamana.</p><p>Kilpailu on suunnattu kaikille eurooppalaisille tai Euroopassa asuville musiikintekijöille ilman ikärajaa ja kilpaa käydään yhdellä ennalta tallentamattomalla ja julkaisemattomalla, 4–7-minuuttisella, big bandin vakiokokoonpanolle sävelletyllä teoksella per säveltäjä.</p><p>Finaaliin valitaan kahden anonyymin esikarsintakierroksen jälkeen enintään 10 teosta, jotka UMO Helsinki Jazz Orchestra soittaa kapellimestari <b>Antti Rissasen</b> johtamana.</p><p>Tuomaristoa johtaa UMOn taiteellinen johtaja ja pääkapellimestari <b>Ed Partyka</b>. Kilpailun voittajalle on luvassa 3000 euron palkinto, toiseksi tulleelle 2000 euroa ja kolmannelle 1000 euroa.</p><p>Kilpailun lisätiedot ja säännöt www.umohelsinki.fi</p><p>Konsertin kesto: n. 2,5–3 tuntia.</p>", "sv": "<p>Finalkonserten för Big Band-kompositionstävlingen går av stapeln i Malms kulturhus!</p><p>Till finalen utses efter två anonyma omgångar högst tio verk som UMO Helsinki Jazz Orchestra spelar under ledning av dirigent Antti Rissanen.</p><p>Längd cirka 2,5–3 t.</p>", "en": "<p>The final concert of the pan-European Big Band Composing Contest will take place at Malmitalo!</p><p>After two anonymous opening rounds, a maximum of 10 works will be selected for the final, to be performed by the UMO Helsinki Jazz Orchestra under the direction of conductor Antti Rissanen.</p><p>Duration: approx. 2,5–3 hours</p>" }, "name": { "fi": "Helsinki International Big Band Composing Contest", "sv": "Helsinki International Big Band Composing Contest", "en": "Helsinki International Big Band Composing Contest" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60519/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60112", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4352, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:39.861108Z", "last_modified_time": "2023-09-07T14:23:39.861129Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733046.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4352/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:39.262046Z", "last_modified_time": "2023-11-14T06:13:16.970554Z", "date_published": null, "start_time": "2023-10-05T08:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/731519EF0687905212B9A9DE68FCD27D/Opi_suomea_laulaen_" }, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua. <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45 <br>to 5.10. klo 10 ja 11.45 <br>to 16.11. klo 10 & 11.45 <br>torstai joulukuussa</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60111", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4351, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:38.430270Z", "last_modified_time": "2023-09-07T14:23:38.430291Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733045.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4351/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:37.658582Z", "last_modified_time": "2023-11-14T06:13:16.899918Z", "date_published": null, "start_time": "2023-10-05T07: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, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F72256EABB7D356BC94F79AB68A77732/Opi_suomea_laulaen_" }, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua. <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45 <br>to 5.10. klo 10 ja 11.45 <br>to 16.11. klo 10 & 11.45 <br>torstai joulukuussa</p>" }, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60111/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60470", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4350, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:37.240620Z", "last_modified_time": "2023-09-07T14:23:37.240643Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725257.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4350/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:23:37.092517Z", "last_modified_time": "2023-11-14T06:13:16.829559Z", "date_published": null, "start_time": "2023-10-05T07:00:00Z", "end_time": "2023-10-05T09: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, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/020D3ED95A10794040808FD02E3B94A7/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/020D3ED95A10794040808FD02E3B94A7/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/020D3ED95A10794040808FD02E3B94A7/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60470/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60518", "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:31/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/", "sv": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/", "en": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/" }, "description": null, "price": { "fi": "29,50 € / 22,50 €", "sv": "29,50 € / 22,50 €", "en": "29,50 € / 22,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4349, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:36.873850Z", "last_modified_time": "2023-09-07T14:23:36.873877Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728592.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4349/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:36.722617Z", "last_modified_time": "2023-11-14T06:13:16.754145Z", "date_published": null, "start_time": "2023-10-04T16: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, "short_description": { "fi": "Georg Wadenius aloitti uransa jazz-kitaristina, joka oli saanut vahvoja vaikutteita Wes Montgomeryltä ja Jim Hallilta.", "sv": "Jazzgitarristen Georg Wadenius har spelat med Roberta Flack, Luther Vandross, Simon & Garfunkel och Steely Dan – och många fler.", "en": "Georg Wadenius started as a jazz guitar player, heavily influenced by Wes Montgomery and Jim Hall." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius", "en": "http://www.malmitalo.fi/en/events/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius" }, "description": { "fi": "<p>Georg Wadenius aloitti uransa jazz-kitaristina, joka oli saanut vahvoja vaikutteita Wes Montgomeryltä ja Jim Hallilta.</p><p>Soitettuaan kolme vuotta tunnetussa <i>Made in Sweden</i> -fuusiokooonpanossa hän sai kutsun liittyä <i>Blood, Sweat and Tears</i> -yhtyeeseen. Hän esiintyi ja levytti kokoonpanon kanssa neljän vuoden ajan.</p><p>Samaan aikaan hän levytti ja esiintyi livenä myös <b>Joe Hendersonin</b> ja <b>Ronnie Cuberin</b> kanssa. Myöhemmin hänestä tuli <i>Saturday Night Live Bandin</i> vakiojäsen kuuden vuoden ajaksi ja hän sekä levytti että teki kiertueita <b>Roberta Flackin</b>, <b>Luther Vandrossin</b>, <b>Simon & Garfunkelin</b>, <b>Steely Danin</b> sekä lukuisten muiden kanssa.</p><p>Nyt hän palaa juurilleen trio <i>Gejoman</i> kanssa, yhdessä kahden Ruotsin suurimman jazz-muusikon, <b>Jonas Holgerssonin</b> (rummut) sekä <b>Mattias Svenssonin</b> (basso) kanssa.</p>", "sv": "<p>Jazzgitarristen Georg Wadenius har spelat med Roberta Flack, Luther Vandross, Simon & Garfunkel och Steely Dan – och många fler.</p><p>Nu återvänder han till sina rötter med trio Gejoma – tillsammans med två av Sveriges största jazzmusiker, Jonas Holgersson (trummor) och Mattias Svensson (bas).</p>", "en": "<p>Georg Wadenius started as a jazz guitar player, heavily influenced by Wes Montgomery and Jim Hall.</p><p>After 3 years with the renowned fusion group Made in Sweden he was asked to join Blood, Sweat & Tears. He played and recorded with them for 4 years.</p><p>During this time he also recorded and played live with Joe Henderson and Ronnie CuberLater on he was a permanent member of the Saturday Night Live Band for 6 years and recorded and toured with Roberta Flack, Luther Vandross, Simon & Garfunkel and Steely Dan – among countless others.</p><p>He now returns to his roots with the trio Gejoma – joined by two of Swedens greatest jazz players, Jonas Holgersson, drums and Mattias Svensson, bass.</p>" }, "name": { "fi": "Georg \"Joijje\" Wadenius", "sv": "Georg \"Joijje\" Wadenius", "en": "Georg \"Joijje\" Wadenius" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60518/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61061", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5144, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:39.179357Z", "last_modified_time": "2023-10-09T13:29:39.179378Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733538.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5144/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:38.926239Z", "last_modified_time": "2023-11-14T06:13:16.661997Z", "date_published": null, "start_time": "2023-10-04T15: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, "short_description": { "fi": "Rap-tähti Silvana Imam tekee pääosassa elokuvadebyyttinsä. Isabella Carbonell palkittiin parhaana alle 40-vuotiaana ohjaajana Venetsian elokuvajuhlilla.", "sv": "Huvudrollen var rap-stjärnan Silvana Imams filmdebut. Isabella Carbonell belönades som bästa regissör under 40 år vid filmfestivalen i Venedig", "en": "The headpart is the rapstar Silvana Imams first appearance on film. Isabella Carbonell was rewarded as the best director under 40 years at the Film Festival in Venice." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn", "en": "http://www.vuotalo.fi/en/events/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn" }, "description": { "fi": "<p>Rap-tähti Silvana Imam tekee pääosassa elokuvadebyyttinsä. Isabella Carbonell palkittiin parhaana alle 40-vuotiaana ohjaajana Venetsian elokuvajuhlilla.</p><p>Kodittomina ja yhteiskunnalle näkymättöminä elävistä kaksosista sisar on tikittävä pommi. Veli ei ole sanonut sanaakaan sen jälkeen, kun he pakenivat kotimaastaan. Odottamaton työtarjous näyttää tuovan heidät askeleen lähemmäksi unelmaa oikeasta kodista. Heidän tarvitsee vain kuljettaa tavaroita paikasta A paikkaan B. Mutta kun tavarat saapuvat kahden nuoren tytön muodossa, sisarusten välille syntyy konflikti. Kahden intensiivisen päivän aikana he kohtaavat elämää muuttavan dilemman – kuinka pitkälle he ovat valmiita menemään selviytymistaistelussaan?</p><p>Ruotsi 2022\t<br>Ohjaaja:\t Isabella Carbonell<br>Käsikirjoitus:\tIsabella Carbonell<br>Näyttelijät:\tSilvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Genre:\t Draama, Rikostarina, 2020-luku<br>Kesto: 84 min. <br>Kielet: Ruotsi, litvia, arabia, mandariini-kiinaa, englanti, tekstitys: Suomi <br>ikäraja: K16</p><p>Järj. Finlandssvenkst filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Huvudrollen var rap-stjärnan Silvana Imams filmdebut. Isabella Carbonell belönades som bästa regissör under 40 år vid filmfestivalen i Venedig</p><p>Ett hemlöst tvillingpar rör sig under radarn, bortom samhällets regler och system för hjälpande händer. Tillsammans kämpar de för sin överlevnad och tvingas söka sig till kriminella kretsar där de får i uppdrag att sköta okategoriserade leveranser genom ett vinterkyligt Stockholm. När leveransernas innehåll avslöjas sätts tvillingarnas mänsklighet på prov.</p><p>Sverige 2022\t<br>Regissör:\t Isabella Carbonell<br>Manus:\t Isabella Carbonell<br>Genre:\t Drama, Thriller, 2020-talet<br>Skådespelare:\tSilvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Längd: 84 min. <br>Språk: Svenska, litauiska, arabiska, mandarin-kinesiska, <br> engelska, <br>Textning: Fnska. <br>Åldersgräns: F16<br>. <br>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset.</p>", "en": "<p>The headpart is the rapstar Silvana Imams first appearance on film. Isabella Carbonell was rewarded as the best director under 40 years at the Film Festival in Venice.</p><p>Homeless and invisible – the Twins are constantly struggling to survive. Sister is a ticking time bomb; her screams are loud. Brother, on the other hand, doesn’t speak, but rather screams inwards. Their dream of a real home leads to an unexpected job opportunity that sounds simple enough: transport goods from point A to point B. But when the goods appear in the form of two young girls, the unspeakable happens: a rift suddenly occurs between Brother and Sister. Over the course of two intense days the twins are forced to make a life-altering decision: how far are they willing to go in their quest for a better future?</p><p>Sweden 2022\t<br>Director:\t Isabella Carbonell<br>Script:\t Isabella Carbonell<br>Genre:\t Drama, Thriller, 2020-ies<br>Actors:\t Silvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Duration: 84 min. <br>Languages: Swedish, lithuanian, arabic, mandarin-chinese, <br> english<br>Subtitles: Finnish<br>Age limit : 16</p><p>Org. Finlandssvenskt filmcentrum in cooperation with Vuotalo.<br>.</p>" }, "name": { "fi": "Onsdagsbio: Dogborn", "sv": "Onsdagsbio: Dogborn", "en": "Onsdagsbio: Dogborn" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61061/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61047", "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/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:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5145, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:41.086199Z", "last_modified_time": "2023-10-09T13:29:41.086218Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737377.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5145/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:40.401936Z", "last_modified_time": "2023-11-14T06:13:16.577770Z", "date_published": null, "start_time": "2023-10-04T15: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, "short_description": { "fi": "1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_", "en": "http://www.malmitalo.fi/en/events/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_" }, "description": { "fi": "<p>1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa.</p><p>Borghettin perhe on juuri muuttanut uuteen upeilla näkymillä varustettuun kerrostaloasuntoon, joita kiireessä rakennetaan kaupungin vaurastuvalle keskiluokalle. Vaikka perheessä näyttää ulospäin olevan kaikki kunnossa, niin asiat eivät ole niin kuin ennen.<br> <br>Clara (<b>Penélope Cruz</b>) ja Felice (<b>Vincenzo Amato</b>) ovat menettäneet rakkautensa. Kotiäiti Clara on<br>autoritääriselle miehelleen ensimmäiseksi vaimo ja vasta toiseksi lapsilleen äiti. Claralla ei juurikaan ole sosiaalista elämää ydinperheen ulkopuolella ja siksi hän alkaa elää elämäänsä lastensa kautta.</p><p>Kotona oleva stressaantunut tunnelma sekä kotiväkivallan peittely suvun silmissä vie hänet entistä kauemmaksi aviomiehestään. Perheen tytär Adri (<b>Luana Giuliani</b>) kamppailee oman identiteettinsä kanssa ja isänsä harmiksi ystävystyy alempaan yhteiskuntaluokkaan kuuluvan tytön kanssa. Sisäiset ristiriidat repivät perhettä erilleen kohti murtumispistettä, jota suvun taustalla aiheuttama paine ei yhtään helpota.</p><p><i>Terraferma</i> ja <i>Kultainen portti</i> -elokuvien ohjauksistaan tunnettu <b>Emanuele Crialese</b> on Rakas äitini<br>elokuvassa tarttunut osittain omaelämänkerralliseen aiheeseen. Sen autenttinen 1970-lukulainen värimaailma on värikylläinen ja näyttävä. Elokuva toimii monessa tasossa ja sen perheidylliä rikkovat ongelmat ovat hyvin samaistuttavia myös nykyaikana.<br> <br>Ensi-ilta 22.9.2023<br>Kesto 99 min<br>Ikäraja 12</p>" }, "name": { "fi": "Rakas äitini (12) – Kino Helios", "sv": "Rakas äitini (12) – Kino Helios", "en": "Rakas äitini (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61047/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60676", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4348, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:36.497907Z", "last_modified_time": "2023-09-07T14:23:36.497939Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735264.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4348/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:23:36.349214Z", "last_modified_time": "2023-11-14T06:13:16.492768Z", "date_published": null, "start_time": "2023-10-04T14:00:00Z", "end_time": "2023-10-04T16: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, "short_description": { "fi": "Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?", "sv": "Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?", "en": "Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A3111113D200CD6948A8EC8F079E4A77/Sanapaja_Wordshop_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A3111113D200CD6948A8EC8F079E4A77/Sanapaja_Wordshop_", "en": "http://www.vuotalo.fi/en/events/event/A3111113D200CD6948A8EC8F079E4A77/Sanapaja_Wordshop_" }, "description": { "fi": "<p>Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?</p><p>Haluatko harrastaa kirjoittamista mukavassa seurassa? Tervetuloa Sanapaja / Wordshop -kirjoittajatyöpajoihin!<br> <br>Voit kirjoittaa millä kielellä haluat. Kieliopilla ei ole väliä, vaan sillä mitä haluat sanoa! <br>Pajoissa puhutaan suomea ja englantia.</p><p>Voit osallistua pajoihin vaikka joka kerta, tai silloin kuin sinulle sopii. <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Ole ylpeä kaikista kielistä, joita osaat!<br> <br>Järjestäjät: Vuotalo, Nuoren Voiman Liitto ja Operaatio Pulssi <br>Ikäsuositus: 13-19v (mutta ei tarkkaa ikärajaa) <br>Paikka: Kirjaston kokoushuone 2</p>", "sv": "<p>Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?</p><p>Vill du skriva i ett härligt gäng? Välkommen till skrivarverkstäderna Sanapaja / Wordshop!</p><p>Du kan skriva på vilket språk som helst. Det viktigaste är inte grammatiken utan det du vill säga!</p><p>I verkstäderna talas finska och engelska. <br>Du kan delta i verkstäderna varje gång eller då det passar dig. <br>Fritt inträde, ingen förhandsanmälan.</p><p>Var stolt över alla språk du kan!</p><p>Arrangörer: Nordhuset, Nuoren Voiman Liitto ry och Operaatio Pulssi <br>Åldersrekommendation: 13–19 (ingen specifik åldersgräns) <br>Plats: Bibliotekets mötesrum 2</p>", "en": "<p>Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?</p><p>Do you want to do some writing in good company? Welcome to the Wordshop writers’ workshops! <br> <br>You can write in any language you want. It's not the grammar that counts. It's what you want to say. The workshops are conducted in Finnish and English.</p><p>You can participate in the workshops every time or whenever it suits you.</p><p>Free admission, no pre-registration required.</p><p>Be proud of all the languages you know!</p><p>Organisers: Vuosaari House, Nuoren Voiman Liitto and Operation Pulse <br>Age recommendation: 13–19 (no specific age limit)<br>Location: Meeting room 2 in Vuosaari Library</p>" }, "name": { "fi": "Sanapaja / Wordshop", "sv": "Sanapaja / Wordshop", "en": "Sanapaja / Wordshop" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60676/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60535", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4347, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:35.333562Z", "last_modified_time": "2023-09-07T14:23:35.333584Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730662.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4347/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:34.660288Z", "last_modified_time": "2023-11-14T06:13:16.414441Z", "date_published": null, "start_time": "2023-10-04T13:00:00Z", "end_time": "2023-10-04T15: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, "short_description": { "fi": "Alussa on pikimusta alusta.", "sv": "I början finns ett becksvart underlag.", "en": "At the beginning, there is a pitch-black surface." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/71CB8ED3A51AC9A7B369047D62317BBF/Keskiviikon_taidepaja_Tulkoon_valo_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/71CB8ED3A51AC9A7B369047D62317BBF/Onsdagens_konstverkstad_Tulkoon_valo_", "en": "http://www.vuotalo.fi/en/events/event/71CB8ED3A51AC9A7B369047D62317BBF/Wednesday_art_workshop_Let_there_be_light_" }, "description": { "fi": "<p>Alussa on pikimusta alusta.</p><p>Raaputtamalla raapekartonkia tuomme valoa pikkuhiljaa piirustukseen.</p><p>Työpajan ikäsuositus: sopii sekä lapsille että aikuisille<br>Työpajaa ohjaa: Chloé Mahy-Hulkko<br>Tapahtuman kieli: suomi, ranska, englanti<br>Vapaa pääsy</p>", "sv": "<p>I början finns ett becksvart underlag.</p><p>En linje i taget skrapar vi fram ljuset i teckningen som görs på skrappapper.</p><p>För barn och vuxna. <br>Verkstadsinstruktör: Chloé Mahy-Hulkko<br>Språk: finska, franska, engelska</p><p>Fritt inträde</p>", "en": "<p>At the beginning, there is a pitch-black surface.</p><p>By scraping scraper board, we gradually bring light into the drawing.</p><p>For children and adults<br>Workshop instructor: Chloé Mahy-Hulkko<br>Languages: Finnish, French, English</p><p>Free entry</p>" }, "name": { "fi": "Keskiviikon taidepaja: Tulkoon valo!", "sv": "Onsdagens konstverkstad: Tulkoon valo!", "en": "Wednesday art workshop: Let there be light!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60535/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61045", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios", "sv": "https://www.lippu.fi/artist/kino-helios", "en": "https://www.lippu.fi/artist/kino-helios" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5143, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:38.313568Z", "last_modified_time": "2023-10-09T13:29:38.313594Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737373.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5143/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:38.175668Z", "last_modified_time": "2023-11-14T06:13:16.330254Z", "date_published": null, "start_time": "2023-10-04T12: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, "short_description": { "fi": "Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.", "sv": "Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.", "en": "The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_", "en": "http://www.malmitalo.fi/en/events/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_" }, "description": { "fi": "<p>Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.</p><p>Risto on pelannut kotinsa ja perheensä ja Arto on saanut niskakipuja hoidattaessaan kuulla, ettei hänellä ole käytännössä juurikaan aivoja.</p><p>Voi siis kaikella syyllä todeta, että paremminkin on mennyt. Ystävyksillä ei käytännössä ole jäljellä muuta kuin työnsä. Sen parissa he hoitavat kaikkein likaisimmatkin keikat. Hakevat junan alle murskautuneet ja koteihinsa mädäntyneet niiden viimeiseen lepopaikkaan. Kuten Risto osuvasti toteaa – kuolema on elävien ongelma. Sitä miesten elämässä riittää, mutta tästä huolimatta he pyrkivät uskomaan elämään.</p><p>Vaikka toisella ei ole aivoja, eikä toisella sydäntä, yhdessä tilanne ei ole toivoton. Asiat ottavat kuitenkin yllättävän suunnan ja Risto ja Arto joutuvat pelaamaan uhkapeliä omalla hengellään. Sen jälkeen mikään ei ole ennallaan.</p><p><i>Peluri – Kuolema on elävien ongelma</i> on kuolemanvakava komedia ystävyydestä, heikkouksista ja anteeksiannosta. Se koskettaa, naurattaa ja satuttaa - sekä auttaa ymmärtämään elämää sen eri sävyissä.</p><p>Ikäraja: 16<br>Kesto 98 min<br>Ensi-ilta 22.9.2023<br>Tekstitys suomeksi</p>", "sv": "<p>Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.</p><p>Risto har spelat bort hem och familj och Arto har i samband med en behandling av sin nacksmärta fått veta att han praktiskt taget knappt har någon hjärna.</p><p>Läget har alltså varit bättre. I praktiken har de två polarna inget annat än sitt arbete, där de tar emot också de värsta uppdragen och transporterar personer som krossats under tåg och personer som förmultnat i hemmet till den sista viloplatsen. Som Risto mycket träffande konstaterar – döden är de levandes problem. Och problem finns det gott om i männens liv, men trots det här gör de sitt bästa för att tro på livet.</p><p>Den ena må sakna hjärna och den andra må sakna hjärta, men när de är tillsammans är situationen i alla fall inte helt hopplös. Saker och ting tar ändå en oväntad vändning och Risto och Arto tvingas spela ett högt spel med sina liv som insats. Efter det är ingenting mera som förut.<br>Spelaren – Döden är de levandes problem är en gravallvarlig komedi om vänskap, svagheter och förlåtelse. Den berör, den roar och den gör ont – samt hjälper oss att förstå livet i alla dess olika nyanser.</p><p>Åldersgräns: 16<br>Längd 98 min<br>Premier 22.9.2023</p>", "en": "<p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>Age limit: 16<br>Duration 98 min<br>Premier 22.9.2023</p>" }, "name": { "fi": "Peluri – kuolema on elävien ongelma (16) – Kino Helios", "sv": "Peluri – kuolema on elävien ongelma (16) – Kino Helios", "en": "Peluri – kuolema on elävien ongelma (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61045/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60048", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?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:733/?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: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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4346, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:33.839510Z", "last_modified_time": "2023-09-07T14:23:33.839532Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732380.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4346/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:33.572137Z", "last_modified_time": "2023-11-14T06:13:16.259915Z", "date_published": null, "start_time": "2023-10-04T12: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, "short_description": { "fi": "Muusikot Cinta Hermo ja Maarikka Autio kertovat musiikkiurastaan ja kokemuksistaan ja samalla myös heidän tulevasta Magas-projektistaan.", "sv": "Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas.", "en": "Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BAE8D3DC6EF0F15B33C102DCB37A5E06/HOW-radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/BAE8D3DC6EF0F15B33C102DCB37A5E06/HOW-radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/BAE8D3DC6EF0F15B33C102DCB37A5E06/HOW-radio_Global_Club_Nights" }, "description": { "fi": "<p>Muusikot Cinta Hermo ja Maarikka Autio kertovat musiikkiurastaan ja kokemuksistaan ja samalla myös heidän tulevasta Magas-projektistaan.</p><p>Kesto: 60 min</p>", "sv": "<p>Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas.</p><p>Längd: 60 min</p>", "en": "<p>Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas.</p><p>Duration: 60 min</p>" }, "name": { "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves", "sv": "HOW-radio | Global Club Nights", "en": "HOW-radio | Global Club Nights" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60048/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60534", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4344, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:32.940772Z", "last_modified_time": "2023-09-07T14:23:32.940793Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728498.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4344/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:23:32.778395Z", "last_modified_time": "2023-11-14T06:13:16.186835Z", "date_published": null, "start_time": "2023-10-04T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Revontulten räppäri on dokumenttielokuva Saamenmaan pohjoisimmassa kulmassa asuvan 18-vuotiaan saamelaisräppärin Mihkku Laitin elämästä.", "sv": "Revontulten räppäri är en dokumentärfilm om 18-åriga Mihkku Laiti, en samisk rapartist som bor det nordligaste hörnet av Sápmi.", "en": "The documentary ‘Rap and Reindeer’ follows the life of the 18-year-old Sámi rapper Mihkku Laiti, who lives in the northernmost corner of Sámiland." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/017B31A7B2D58E9281C2E515BDFD8981/Ylakoulukino_Revontulten_rappari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/017B31A7B2D58E9281C2E515BDFD8981/Hogstadiekino_Revontulten_rappari", "en": "http://www.vuotalo.fi/en/events/event/017B31A7B2D58E9281C2E515BDFD8981/Lower_Secondary_School_Cinema_Rap_and_Reindeer" }, "description": { "fi": "<p>Revontulten räppäri on dokumenttielokuva Saamenmaan pohjoisimmassa kulmassa asuvan 18-vuotiaan saamelaisräppärin Mihkku Laitin elämästä.</p><p>Elokuva on <i>Talent Suomessa</i> hurmanneen <b>Mihkkun</b> kasvutarina kohti muusikon uraa ja orastavaa tähteyttä monenlaisten odotusten keskellä.</p><p>Mihkku kantaa ylpeästi itse tuunaamaansa saamenpukua, räppää ja joikaa sulassa sovussa, suunnittelee brändiään tietokoneella, mutta taitaa myös poronhoidon vaativan työn. Ja ennen kaikkea näkee omat erityiset juurensa ja saamen kielen suurena vahvuutenaan. Tulevaisuus askarruttaa: seuraako Mihkku isänsä jalanjälkiä vai omia unelmiaan?</p><p>Ohjaaja Petteri Saario: <br><i>”Olen tuntenut Mihkkun viisivuotiaasta lähtien, eli lähes koko hänen elämänsä. On ollut upeaa seurata, miten esiintymisestä tykänneestä vilkkaasta pojasta on varttunut poikkeuksellisen karismaattinen ja syvällinen nuorimies. Mihkkun tarinassa kiteytyy vahvasti saamelaisuuden huominen: kulttuuri säilyy, jos se kykenee uudistumaan ja vastaamaan sen keskellä kasvavien ihmisten tarpeisiin.</p><p>Sama pätee kulttuuria kannattelevaan kielelliseen ilmaisuun. Revontulten räppäri tarjoaa raikkaan näkökulman monimuotoiseen saamelaisuuteen, saamelaisnuoren itsensä kokemana ja kertomana.”</i></p><p>Ikäraja: S<br>Ikäsuositus: yläkoulu, toinen aste<br>Pituus: 75 min<br>Ohjaus: Petteri Saario</p><p>Koululaisryhmille pakolliset ennakkoilmoittautumiset osoitteessa <u><a href=\"https://kultus.fi/ \">kultus.fi</a></u></p><p>Koulukinon kautta oppimateriaalit: <u><a href=\"https://www.koulukino.fi/oppimateriaalit/revontulten-rappari/\">Revontulten räppäri – Koulukino</a></u></p>", "sv": "<p>Revontulten räppäri är en dokumentärfilm om 18-åriga Mihkku Laiti, en samisk rapartist som bor det nordligaste hörnet av Sápmi.</p><p>Åldersgräns: T<br>Åldersrekommendation: högstadiet, andra stadiet<br>Längd: 75 min<br>Regi: Petteri Saario</p>", "en": "<p>The documentary ‘Rap and Reindeer’ follows the life of the 18-year-old Sámi rapper Mihkku Laiti, who lives in the northernmost corner of Sámiland.</p><p>Age limit: for all ages<br>Age recommedation: Lower Secondary School, upper secondary education<br>Duration: 75 min<br>Director: Petteri Saario</p>" }, "name": { "fi": "Yläkoulukino: Revontulten räppäri", "sv": "Högstadiekino: Revontulten räppäri", "en": "Lower Secondary School Cinema: Rap and Reindeer" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60534/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59878", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4342, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:30.727832Z", "last_modified_time": "2023-09-07T14:23:30.727853Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730800.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4342/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:30.061281Z", "last_modified_time": "2023-11-14T06:13:16.106314Z", "date_published": null, "start_time": "2023-10-04", "end_time": "2023-10-28", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin.", "sv": "Utställningen kastar en tillbakablick på händelserna för ett halvt sekel sedan och på vad chilenarna har gett Finland.", "en": "The exhibition offers a glimpse into the events of half a century ago and what Chileans have given to Finland." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/46ED411EC0D070101ECFFC8F9D210D88/Yhta_matkaa_puoli_vuosisataa", "sv": "http://www.caisa.fi/sv/evenemang/event/46ED411EC0D070101ECFFC8F9D210D88/Pa_gemensam_resa_i_ett_halvt_sekel", "en": "http://www.caisa.fi/en/events/event/46ED411EC0D070101ECFFC8F9D210D88/On_a_Common_Journey_for_Half_a_Century" }, "description": { "fi": "<p>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin.</p><p>Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomenkin hallitus päätti jo syksyllä 1973 ottaa tänne ryhmän pakolaisia, jotka pakenivat Chilen sotilasdiktatuurin sortoa. He olivat maamme ensimmäiset kiintiöpakolaiset, ja heistä alkoi maamme avautuminen ja kansainvälistyminen. Tänne muodostui kiinteä chileläinen yhteisö, joka sopeutui hyvin maahamme.</p><p>Näyttely luo silmäyksen puolen vuosisadan takaisiin tapahtumiin ja siihen, mitä chileläiset ovat antaneet Suomelle. Caisassa on esillä myös poliittisia julisteita, jotka heijastavat Suomeen syntynyttä laajaa solidaarisuusliikettä.</p><p>Viittomakielinen näyttelyopastus la 28.10. klo 13–14, yhteistyö Ursa Minorin kanssa. Oppaana Aino Laiho. <br> <br>Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</p><p><i>Kulttuurikeskus Caisassa on lokakuussa Chilen vallankaappaukseen liittyviä 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>Utställningen kastar en tillbakablick på händelserna för ett halvt sekel sedan och på vad chilenarna har gett Finland.</p><p>I Caisa visas också politiska affischer som återspeglar den omfattande solidaritetsrörelsen som uppstod i Finland.</p><p>Guidning på utställningen på finskt teckenspråk lördagen den 28 oktober kl. 13–14, ett samarbete med Ursa Minor. Guide Aino Laiho.</p><p>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 exhibition offers a glimpse into the events of half a century ago and what Chileans have given to Finland.</p><p>Caisa will also display political posters reflecting the broad solidarity movement that emerged in Finland.</p><p>A guided tour of the exhibition will be held in Finnish sign language on Sat, 28 Oct between 13 and 14, in collaboration with Ursa Minor. Guided by Aino Laiho.</p><p>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>" }, "name": { "fi": "Yhtä matkaa puoli vuosisataa – Chile50-teemaisia tapahtumia Caisassa", "sv": "På gemensam resa i ett halvt sekel – Evenemang med Chile50-tema i Caisa", "en": "On a Common Journey for Half a Century – Chile50 themed events at Caisa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59878/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60108", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4341, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:29.610355Z", "last_modified_time": "2023-09-07T14:23:29.610386Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733019.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4341/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:29.461120Z", "last_modified_time": "2023-11-14T06:13:16.028810Z", "date_published": null, "start_time": "2023-10-03T14:30:00Z", "end_time": "2023-10-03T16: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, "short_description": { "fi": "Chilen vallankaappaus ja sitä seurannut diktatuuri oli suomalaisillekin suorastaan sukupolvikokemus. Suomeen syntyi vahva solidaarisuusliike.", "sv": "Militärkuppen i Chile och den efterföljande diktaturen var även för finländarna en upplevelse som formligen påverkade en hel generation. I Finland uppstod en stark solidaritetsrörelse.", "en": "The Chilean coup d’état and the dictatorship that followed were a generational experience, even for Finns. A strong solidarity movement was born in Finland." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3FF496042DA397BFA215D15EFC4516DA/Keskustelu_Yhteiskunnallisten_vaikuttajien_muistoja_1970-luvulta", "sv": "http://www.caisa.fi/sv/evenemang/event/3FF496042DA397BFA215D15EFC4516DA/Samtal_Samhallspaverkares_minnen_fran_1970-talet", "en": "http://www.caisa.fi/en/events/event/3FF496042DA397BFA215D15EFC4516DA/Discussion_Memories_of_Social_Opinion_Leaders_from_the_1970s" }, "description": { "fi": "<p>Chilen vallankaappaus ja sitä seurannut diktatuuri oli suomalaisillekin suorastaan sukupolvikokemus. Suomeen syntyi vahva solidaarisuusliike.</p><p>Muistojaan ja tuntojaan tulevat kertomaan poliitikot ja yhteiskunnalliset toimijat, jotka tuolloin olivat vielä nuoria, mutta joista tuli merkittäviä vaikuttajia suomalaisessa yhteiskunnassa.</p><p>Keskustelussa mukana presidentti <b>Tarja Halonen</b>, <b>Erkki Tuomioja</b>, <b>Arja Alho</b> ja <b>Kari Uotila</b>. Juontaja: <b>Adrián Soto</b>.</p><p>Kesto: 1,5 h<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi<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>Militärkuppen i Chile och den efterföljande diktaturen var även för finländarna en upplevelse som formligen påverkade en hel generation. I Finland uppstod en stark solidaritetsrörelse.</p><p>Politiker och samhälleliga aktörer, som vid denna tid ännu var unga, men som senare blev betydande påverkare i det finländska samhället, kommer till Caisa för att berätta om sina minnen och känslor. I samtalet deltar: President <b>Tarja Halonen</b>, <b>Erkki Tuomioja</b>, <b>Arja Alho</b> och <b>Kari Uotila</b>. Programledare: <b>Adrián Soto</b>.</p><p>Längd: 1,5 t<br>Åldersrekommendation: för alla åldrar<br>Språk: finska<br>Fritt inträde</p><p>Innehållsvarning: Innehållen i evenemangen med Chile50-tema kan vara omskakande för känsliga tittare.</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>", "en": "<p>The Chilean coup d’état and the dictatorship that followed were a generational experience, even for Finns. A strong solidarity movement was born in Finland.</p><p>Politicians and social actors who were still young at the time but who later became important figures in Finnish society, will share their memories and feelings. Participating in the discussion are: President <b>Tarja Halonen</b>, <b>Erkki Tuomioja</b>, <b>Arja Alho</b> and <b>Kari Uotila</b>. Host: <b>Adrián Soto</b>.</p><p>Duration: 1,5 h<br>Age recommendation: for all ages<br>Language: Finnish<br>Free entry</p><p>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>" }, "name": { "fi": "Keskustelu: Yhteiskunnallisten vaikuttajien muistoja 1970-luvulta – Chile50-teemaisia tapahtumia Caisassa", "sv": "Samtal: Samhällspåverkares minnen från 1970-talet – Evenemang med Chile50-tema i Caisa", "en": "Discussion: Memories of Social Opinion Leaders from the 1970s – Chile50 themed events at Caisa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60108/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60457", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-2/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4338, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:27.829247Z", "last_modified_time": "2023-09-07T14:23:27.829268Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725182.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4338/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:23:26.954116Z", "last_modified_time": "2023-11-14T06:13:15.952849Z", "date_published": null, "start_time": "2023-10-03T10:30:00Z", "end_time": "2023-10-03T12: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, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/FE644A50FC07C58D56F6E201FB800AEE/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/FE644A50FC07C58D56F6E201FB800AEE/Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/FE644A50FC07C58D56F6E201FB800AEE/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Open Art Studio for Toddlers-verkstäder", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60457/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60098", "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: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4337, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:26.328069Z", "last_modified_time": "2023-09-07T14:23:26.328093Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732902.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4337/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:25.990256Z", "last_modified_time": "2023-11-14T06:13:15.874833Z", "date_published": null, "start_time": "2023-10-03", "end_time": "2023-10-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Stoan Parvigalleriassa on esillä valokuvaaja Kari Haklin valokuvia Sortavalasta vuodelta 2019.", "sv": "I Stoas balkonggalleri visas fotograf Kari Haklis fotografier från Sordavala från år 2019.", "en": "Stoa’s Balcony Gallery features photographs taken by photographer Kari Hakli in Sortavala in 2019." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E92002DCC737B6EC7C59F3A92CDB34A/Kari_Haklin_valokuvia_Sortavalasta", "sv": "http://www.stoa.fi/sv/evenemang/event/4E92002DCC737B6EC7C59F3A92CDB34A/Kari_Haklis_fotografier_fran_Sordavala", "en": "http://www.stoa.fi/en/events/event/4E92002DCC737B6EC7C59F3A92CDB34A/Kari_Hakli_s_Photographs_of_Sortavala" }, "description": { "fi": "<p>Stoan Parvigalleriassa on esillä valokuvaaja Kari Haklin valokuvia Sortavalasta vuodelta 2019.</p><p>Kuvat kertovat vaikuttavasti, millaiseksi kaupunki on kehittynyt suomalaisajan jälkeen. Haklin kuvat ovat osa Stoan galleriassa samaan aikaan nähtävää Aikamatka Sortavalaan -näyttelyä.<br> <br>Aikamatka Sortavalaan -näyttely vie mukanaan Karjalan Sortavalaan, joka luovutettiin Neuvostoliitolle sotien seurauksena 1944. Millainen tuo kaupunki ympäristöineen oli?</p><p>Pääsemme tutustumaan 1900-luvun alkupuolen valokuvien ja postikorttien kautta Sortavalan hienoon arkkitehtuuriin, upeisiin Laatokan maisemiin ja kaupunkilaisten elämään. Esillä on myös yksityishenkilöiden lainaamista evakkoesineistä koottu installaatio sekä arkistoaineistoa. <br> <br>Sortavalan kaupunki sijaitsee Laatokan pohjoisrannalla, ja ennen sotia sitä ympäröi laaja maalaiskunta. Suomalaisajalla Sortavala oli alueensa tärkein kulttuurin, sivistyksen, liike-elämän, teollisuuden ja yhdistystoiminnan keskus, jonka vaikutukset heijastuivat koko Suomen alueelle. Sinne kehittyi omaleimainen identiteetti, jossa idän ja lännen kulttuuripiirteet rikastuttivat toisiaan ja uskontokunnat elivät sovussa rinnakkain. <br> <br>Aikamatka Sortavalaan -näyttely juhlistaa Sortavala-seura ry:n 70-vuotisjuhlavuotta. Lisätiedot: www.sortavala-seura.fi <br> <br>Tuottaja: Tuula Roitto, Sortavala-seura ry:n hallitus <br>Näyttely- ja graafinen suunnittelu: Annika Roitto <br>Valokuvat ja postikortit: Tuula Roiton kokoelmat, Kari Nissisen valokuva- ja postikorttikokoelma, Sortavala-seura <br>Parvigallerian valokuvat: Kari Hakli<br>Kiitokset: Sortavala-säätiö, joka on tukenut näyttelyn toteuttamista taloudellisesti, näyttelyyn aineistoa lainanneet yksityishenkilöt, Stoa, joka tarjosi näyttelytilan.</p>", "sv": "<p>I Stoas balkonggalleri visas fotograf Kari Haklis fotografier från Sordavala från år 2019.</p><p>Bilderna ger en imponerande inblick i stadens utveckling efter den finska tiden. Haklis bilder utgör en del av utställningen Aikamatka Sortavalaan som visas samtidigt i Stoas galleri.</p>", "en": "<p>Stoa’s Balcony Gallery features photographs taken by photographer Kari Hakli in Sortavala in 2019.</p><p>Bilderna ger en imponerande inblick i stadens utveckling efter den finska tiden. Haklis bilder utgör en del av utställningen Aikamatka Sortavalaan som visas samtidigt i Stoas galleri.</p>" }, "name": { "fi": "Kari Haklin valokuvia Sortavalasta", "sv": "Kari Haklis fotografier från Sordavala", "en": "Kari Hakli’s Photographs of Sortavala" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60098/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }