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=1538®istration__remaining_waiting_list_capacity__isnull=true
{ "meta": { "count": 32740, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1539®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1537®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "helmet:268001", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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:p556/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4690, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-08T12:27:30.840082Z", "last_modified_time": "2023-09-08T12:27:30.840110Z", "url": "https://www.helmet.fi/download/noname/{18DB5386-E580-42AA-84CD-5E1EB0BA3404}/105714", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4690/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-08T12:27:30.371644Z", "last_modified_time": "2023-10-17T10:29:32.483456Z", "date_published": "2023-09-08T10:21:43.913000Z", "start_time": "2023-09-16T11:30:00Z", "end_time": "2023-09-16T13: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": "We invite you to our playful workshop.", "en": "We invite you to our playful workshop." }, "info_url": null, "description": { "fi": "<p> <em>Știm că perioada aceasta vine la pachet cu multe emoții căci mulți dintre voi veți păși în universul colectivității, fie că vorbim de grădiniță sau școală.</em> </p><p> <em>Vă invităm la un atelier cu multă joacă și lectur</em> <em>ă</em> <em>unde vom răsfoi povești în care personajele preferate precum Conni sau Norișorul Roz ne povestesc despre experiențele lor în lumea colectivității.</em> </p><p> <em>Evenimentul va avea loc la Oodi, etajul 3, lângă Story Room.</em> </p><p> <em>Cărțile și materialele folosite în cadrul acestui atelier sunt obținute prin proiectul C.A.R.T.E - susținut de Departamentul pentru Românii de Pretutindeni în perioada iunie - noiembrie 2023</em> </p><p> <em>We know that this period comes with many emotions because many of you will step into the world of community, whether it's kindergarten or school.</em> </p><p> <em>We invite you to a workshop filled with playfulness, where we will explore stories in which favorite characters like Conni or Norisorul Roz tell us about their experiences in the world of community.</em> </p><p> <em>The event will take place at Oodi, 3rd floor, near the Story Room.</em> </p><p> <em>The event will be in Romanian, but all kids are wellcome!</em> </p><p> <em>The books and materials used in this workshop are obtained through the C.A.R.T.E project - supported by the Department for Romanians Everywhere from June to November 2023</em> </p>", "en": "<p> <em>Știm că perioada aceasta vine la pachet cu multe emoții căci mulți dintre voi veți păși în universul colectivității, fie că vorbim de grădiniță sau școală.</em> </p><p> <em>Vă invităm la un atelier cu multă joacă și lectur</em> <em>ă</em> <em>unde vom răsfoi povești în care personajele preferate precum Conni sau Norișorul Roz ne povestesc despre experiențele lor în lumea colectivității.</em> </p><p> <em>Evenimentul va avea loc la Oodi, etajul 3, lângă Story Room.</em> </p><p> <em>Cărțile și materialele folosite în cadrul acestui atelier sunt obținute prin proiectul C.A.R.T.E - susținut de Departamentul pentru Românii de Pretutindeni în perioada iunie - noiembrie 2023</em> </p><p> <em>We know that this period comes with many emotions because many of you will step into the world of community, whether it's kindergarten or school.</em> </p><p> <em>We invite you to a workshop filled with playfulness, where we will explore stories in which favorite characters like Conni or Norisorul Roz tell us about their experiences in the world of community.</em> </p><p> <em>The event will take place at Oodi, 3rd floor, near the Story Room.</em> </p><p> <em>The event will be in Romanian, but all kids are wellcome!</em> </p><p> <em>The books and materials used in this workshop are obtained through the C.A.R.T.E project - supported by the Department for Romanians Everywhere from June to November 2023</em> </p>" }, "name": { "fi": "Romanian workshop for kids", "en": "Romanian workshop for kids" }, "provider_contact_info": null, "location_extra_info": { "fi": "Children's arena, 3rd floor", "en": "Children's arena, 3rd floor" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268001/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268309", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4788, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T12:34:37.254179Z", "last_modified_time": "2023-09-15T12:34:37.254209Z", "url": "https://www.helmet.fi/download/noname/{9A4915E1-46BA-4D27-BC87-A8D7E7C10670}/105886", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4788/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-15T12:34:37.083403Z", "last_modified_time": "2023-10-17T10:29:32.219474Z", "date_published": "2023-09-15T11:03:00Z", "start_time": "2023-09-16T05:00:00Z", "end_time": "2023-09-16T13: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": "Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023." }, "info_url": null, "description": { "fi": "<p>Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023.</p><p>\"Värikäs maailmani -taidenäyttelyssä tarkastellaan luonnon kauneutta ja ihmisen yhteyttä siihen. Teosten abstraktisuus nostattaa maalaukset uudelle tasolle henkisesti, ja jokainen voi tulkita teoksia omasta värikkäästä maailmastaan käsin.\"</p><p> <em>Kuva: Sini-Maaria Vänttinen</em> </p>" }, "name": { "fi": "Värikäs maailmani -taidenäyttely 16.9.-3.10.23" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268309/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266840", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T13:17:10.462724Z", "last_modified_time": "2023-08-25T13:17:10.462747Z", "url": "https://www.helmet.fi/download/noname/{5C7E8710-4366-469B-AAA1-285E650AA293}/105221", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-25T13:17:08.987220Z", "last_modified_time": "2023-10-17T10:29:32.014373Z", "date_published": "2023-08-25T09:00:00Z", "start_time": "2023-08-28T13:00:00Z", "end_time": "2023-09-16T13: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": "emilia kopra taidenäyttely tikkurilan kirjastossa 28.8. - 16.9.2023" }, "info_url": null, "description": { "fi": "<p>Tervetuloa taidenäyttelyyn Tikkurilan kirjaston 2. kerrokseen. Näyttely johdattaa katsojan hetkeksi hengähtämään ja haaveilemaan lämpimän auringon alle. Lähde siis mukaan matkalle maailman toiselle puolelle, sinne missä auringon lämpö hivelee ihoa ja hiekka polttaa varpaita!</p><p>Kuuletko jo meren kohinan?</p><p>Tunnetko raikkaan merituulen?</p><p>Haistatko herkullisen ruuan tuoksun?</p><p>Näyttelyn on toteuttanut vantaalainen taiteilija Emilia Kopra (s.1993). Hän rakastaa leikitellä väreillä ja maalata akryyleilla niin esittäviä kuin abstrakteja teoksia. Taide on aina ollut jossakin muodossa osa Emilian elämää, ja nyt viime vuosina se on näkynyt intohimona maalata. Nämä teokset syntyivät matkustamisen kaipuusta ja Emilian omista lomamuistoista.</p><p>www.instagram.com/artby.tunne</p>" }, "name": { "fi": "Matkalla - Emilia Kopran taidenäyttely" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tikkurilan kirjaston aikuistenosasto, näyttelyseinä" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266840/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267370", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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:p8113/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3813, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-31T13:26:40.980566Z", "last_modified_time": "2023-08-31T13:26:40.980610Z", "url": "https://www.helmet.fi/download/noname/{88BE6353-53B4-4CA9-96D9-9EE4BE20AE11}/105412", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3813/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-31T13:26:40.841919Z", "last_modified_time": "2023-10-17T10:29:31.631827Z", "date_published": "2023-08-31T11:00:00Z", "start_time": "2023-09-16T11:00:00Z", "end_time": "2023-09-16T12: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": "Tule tutustumaan Lukuvalmentaja Junior -palveluun ja nappaa mukaasi luettavaa!" }, "info_url": null, "description": { "fi": "<p>Tule tutustumaan Lukuvalmentaja Junior -palveluun ja nappaa mukaasi luettavaa!</p><p>Haluaisitko innostua lukemisesta? Onko sinun vaikea löytää kiinnostavia kirjoja? Tai oletko yksinkertaisesti lukenut jo ihan kaiken ja kaipaat uusia tarinoita? Niin tai näin, olet tervetullut Lukuvalmentaja Juniorin vastaanotolle! Lukuvalmentaja tekee parhaansa, jotta juuri sinulle sopivat kirjat löytyisivät. Palvelu on tarkoitettu kaikille lasten- ja nuortenkirjallisuudesta kiinnostuneille – lapsille, nuorille, vanhemmille ja opettajille. Voi valita valmennuksesi joko toiveidesi mukaan koottuna kirjakassina tai sähköpostiin tulevana kirjalistana. Palvelu on ilmainen. Varaa itsellesi valmennus vastaamalla <a href=\"https://forms.office.com/e/ksXdR6kt9r\">aloituskyselyyn</a>. </p><p>Esittelemme palvelua 16.9.2023 klo 14-15 Oodin kolmannessa kerroksessa Kirjataivaassa. Voit tulla kuulemaan lisää palvelusta, täyttämään aloituskyselyn ja nappaamaan mukaasi pinon lasten- tai nuortenkirjallisuutta.</p>" }, "name": { "fi": "Lukuvalmentaja Junior -pop up" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kirjataivas, 3. krs" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267370/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262010", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8288/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2731, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:44.463702Z", "last_modified_time": "2023-08-15T15:30:44.463818Z", "url": "https://www.helmet.fi/download/noname/{05A8B63E-1EE3-42B0-9F63-8FD982CA3EBE}/103210", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2731/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:36:15.399603Z", "last_modified_time": "2023-10-17T09:31:31.809683Z", "date_published": "2023-06-21T10:45:25.007000Z", "start_time": "2023-09-16T10:00:00Z", "end_time": "2023-09-16T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa mukaan lukupiiriin!" }, "info_url": null, "description": { "fi": "<p>Tapulikaupungin kirjaston lukupiirin syksyn 2023 teema on erilaiset perhesuhteet. Lukupiiri kokoontuu kerran kuukaudessa lauantaisin klo 13.00-14.30.</p><p> <strong>Syksyn ohjelma:</strong> </p><p>26.8. Alice Munro: Hyvän naisen rakkaus<br> 16.9. Alex Schulman: Eloonjääneet<br> 21.10. Minna Canth: Kauppa-Lopo & Agnes<br> 18.11. Ann-Luise Bertell: Ikävän jälkeen<br> 16.12. Ann Patchett: Hollantilainen talo</p><p>Lukupiirikirjoja on varattu lukupiiriläisille ja kirjan voi hakea kirjaston tiskiltä.</p><p>Lukupiiri kokoontuu kirjaston perällä olevalla lukualueella. Toivotamme kaikki uudet ja vanhat lukupiiriläiset lämpimästi tervetulleiksi mukaan lukupiiriin!</p><p> <em>Kuva: Kadyn Pierce, Unsplash</em> </p>" }, "name": { "fi": "Tapulikaupungin kirjaston lukupiiri" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262010/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268082", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4727, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-12T08:26:47.264041Z", "last_modified_time": "2023-09-12T08:26:47.264059Z", "url": "https://www.helmet.fi/download/noname/{84A81BD5-E401-40CB-8DA4-8BA698D58391}/105747", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4727/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-12T08:26:46.970667Z", "last_modified_time": "2023-10-17T08:34:20.072813Z", "date_published": "2023-09-12T07:52:29.083000Z", "start_time": "2023-09-16T10:00:00Z", "end_time": "2023-09-16T10: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": "\"Kantele-ala ansaitsee tulla valokeilaan”, Sanni Virta, Kanteleliiton toiminnanjohtaja, sekä Kanteleen päivän ideoija ja tuottaja sanoo. Kantele liitetään usein Kalevalan päivään, mutta kanteleella voi olla myös oma juhlapäivänsä." }, "info_url": null, "description": { "fi": "<p> <strong>100 kanteletta Oodissa lapsien ja nuorten voimannäyte</strong> </p><p>Flashmob Oodin kolmannessa kerroksessa klo 13 on erityisesti kanteleharrastajien juhlahetki, kun lastenmusiikin ja kanteleen lähettilään, rakastetun taiteilijan Satu Sopasen So-La-So -kappale kajahtaa ilmoille tuhansien kielien voimin!</p><p>Flashmobissa esisoittajina toimivat kanteleen supertähdet Maija Kauhanen, Ida Elina, Eija Kankaanranta ja Aurora Visa. Sen jälkeen kuullaan Kulta ry:n puheenjohtajan, kanteleliittolaisen Rosa Meriläisen juhlapuhe. Tilaisuus on avoin kaikille, ja tapahtumasta otetaan etäyhteys Euroviisujen tavoin eri puolille Suomea, ja katsotaan, miltä Kanteleen päivän juhlinta eri paikkakunnilla näyttää. Etno-Emmalla palkittu <strong>Maija Kauhanen</strong> sekä popkanteletar <strong>Ida Elina </strong>esiintyvät tilaisuuden lopuksi. </p>" }, "name": { "fi": "Kanteleen päivä" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kirjataivas, eteläpääty" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268082/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267873", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3921, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-07T11:22:45.852371Z", "last_modified_time": "2023-09-07T11:22:45.852390Z", "url": "https://www.helmet.fi/download/noname/{A9CDB600-B9B8-4A67-907D-4F7BEC5AAF12}/105670", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-07T11:22:45.667952Z", "last_modified_time": "2023-10-17T08:34:19.870014Z", "date_published": "2023-09-07T10:10:00Z", "start_time": "2023-09-16T09:00:00Z", "end_time": "2023-09-16T10: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": "Tervetuloa katsomaan dokumenttielokuvaa!", "en": "Open film screening" }, "info_url": null, "description": { "fi": "<p> <em>Huom! Elokuva on englanninkielinen ja siinä on tekstitys englanniksi.</em> </p><p>Näytökseen on vapaa pääsy!</p><p>Tietoa elokuvasta:</p><p>The Smell of Money is a documentary that follows Elsie Herring and her rural North Carolina community as they take on the multibillion-dollar pork industry that has been spraying animal waste on their homes and land for decades.</p><p>Elokuvan kotisivut: <a href=\"https://www.smellofmoneydoc.com/\">https://www.smellofmoneydoc.com/</a></p>", "en": "<p>Free entrance, welcome!</p><p>About the film:</p><p>The Smell of Money is a documentary that follows Elsie Herring and her rural North Carolina community as they take on the multibillion-dollar pork industry that has been spraying animal waste on their homes and land for decades.</p><p>The film's homepage: <a href=\"https://www.smellofmoneydoc.com/\">https://www.smellofmoneydoc.com/</a></p>" }, "name": { "fi": "Avoin elokuvanäytös: The Smell of Money", "en": "Film screening: The Smell of Money" }, "provider_contact_info": null, "location_extra_info": { "fi": "Maijansali 1. krs", "en": "Maijansali 1st floor" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267873/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266951", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?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:p6062/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3734, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-28T10:24:13.754410Z", "last_modified_time": "2023-08-28T10:24:13.754430Z", "url": "https://www.helmet.fi/download/noname/{C814BFBF-AC09-4976-BD26-978FF0256C9A}/105256", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3734/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-28T10:24:13.611762Z", "last_modified_time": "2023-10-17T08:34:19.501918Z", "date_published": "2023-08-28T09:05:54.197000Z", "start_time": "2023-09-16T08:30:00Z", "end_time": "2023-09-16T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa pelaamaan UNOa nuortentila VOXiin! Turnaus on suunnattu alle 12-vuotiaille." }, "info_url": null, "description": { "fi": "<p>Tervetuloa pelaamaan UNOa Ison Omenan kirjaston nuortentila VOXiin!</p><p>UNO-turnauksessa pelataan UNOn virallisilla säännöillä, jotka kerrataan yhdessä tapahtuman alussa.</p><p>Turnaus on suunnattu alle 12-vuotiaille pelaajille.</p>" }, "name": { "fi": "UNO-turnaus" }, "provider_contact_info": null, "location_extra_info": { "fi": "nuortentila VOX" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266951/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:260542", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2791, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:09.862678Z", "last_modified_time": "2024-02-06T13:38:39.450870Z", "url": "https://www.helmet.fi/download/noname/{B92373FF-BD23-428F-B5E2-D3E9EC134C70}/93620", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2791/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:36:15.041704Z", "last_modified_time": "2023-10-17T05:34:52.968417Z", "date_published": "2022-12-12T22:00:00Z", "start_time": "2023-09-16T08:00:00Z", "end_time": "2023-09-16T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa virittäytymään tarinoiden taajuudelle!" }, "info_url": null, "description": { "fi": "<p>Munkan kirjastossa virittäydytään taas tarinoiden taajudelle, kun satutuokio pyörähtää käyntiin tuttuun tapaan lauantaina klo 11:00. Satutuokio on suunnattu erityisesti 3 - 6-vuotiaille, mutta kaikki sadunnälkäiset ovat tottakai tervetulleita kuuntelemaan!</p>" }, "name": { "fi": "Satutuokio lauantaisin" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:260542/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267872", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3920, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-07T09:32:14.665477Z", "last_modified_time": "2023-09-07T09:32:14.665497Z", "url": "https://www.helmet.fi/download/noname/{72A8ADEC-C004-4A9E-AFB5-ACB65CD46B2C}/105668", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3920/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-07T09:32:14.482960Z", "last_modified_time": "2023-10-16T20:38:23.305843Z", "date_published": "2023-09-06T21:00:00Z", "start_time": "2023-10-16T14:30:00Z", "end_time": "2023-10-16T16: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": "HyTe ry järjestää yhteistyössä Suomi-Syyria Ystävyysseuran sekä Espoon Monikulttuuriset lapset ja nuoret -järjestön kanssa tapahtuman, jossa keskustellaan nuorten rikollisuudesta, ennaltaehkäisevistä palveluista sekä vanhemmille suunnatusta tuesta. Paikalla on laaja kirjo eri alojen ammattilaisia vastaamassa vanhempien ennalta esittämiin kysymyksiin. Tapahtuman painopiste on ennaltaehkäisevässä to", "en": "The NGOs have once again invited parents of young people,as well as representatives from youth work, the police and child protection in a collaborative event. The event is a continuation of a project initiated last spring, which produced video recordings of the police answering parents' questions. The primary emphasis of this upcoming event will be on providing support to parent." }, "info_url": null, "description": { "fi": "<p>15-vuotiaiden rikollisuus on huolestuttanut vanhempia, järjestöjä ja poliisia kautta Suomen. Vanhempien ei kuitenkaan tarvitse jäädä huolensa kanssa yksin. Moni taho tarjoaa niin ennaltaehkäisevää toimintaa kuin vanhemmille suoraa tukea nuoren oireillessa. Erilaiset järjestöt ja viranomaiset voivat olla tärkeä apu ja voimavara vanhemmalle.</p><p>HyTe ry järjestää yhteistyössä Suomi-Syyria Ystävyysseuran sekä Espoon Monikulttuuriset lapset ja nuoret -järjestön kanssa tapahtuman, jossa keskustellaan nuorten rikollisuudesta, ennaltaehkäisevistä palveluista sekä vanhemmille suunnatusta tuesta. Paikalla on laaja kirjo eri alojen ammattilaisia vastaamassa vanhempien ennalta esittämiin kysymyksiin. Tapahtuman painopiste on ennaltaehkäisevässä toiminnassa ja toivomme myös kysymysten koskevan ongelmien ennaltaehkäisyä.</p><p>Ennen tapahtumaa kannattaa vielä katsastaa viime kevään aikana julkaistu videosarja vanhempien kysymyksistä komisario Hannu Väänäselle. Kahdeksanosaisessa videosarjassa käydään läpi yleisesti alaikäisten rikollisuuteen liittyviä teemoja Suomessa.</p><p>Tapahtumassa tarjolla pientä purtavaa.</p><p>Löydät videosarjan kolmella eri kielellä linkkien takaa: </p><p> <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fyoutube.com%2Fplaylist%3Flist%3DPLu-cSo43UwFhfW3wrx3eCjQsMXzgzO7k3%26si%3DyK3dW2rzpQlzRJEy&data=05%7C01%7C%7Cfb26254a55c54cf6376f08dbaf6620f4%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638296625410510748%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=GWCKt%2BgylnpBd6NHkS4XO7mnJqjN7GAyUH0oVHD2Zds%3D&reserved=0\">Monikielinen infopaketti alaikäisten nuorten rikollisuudesta nuorille ja heidän vanhemmilleen</a> </p><p> <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fyoutube.com%2Fplaylist%3Flist%3DPLu-cSo43UwFhqJzrtBxqB4CqT8DBGisfu%26si%3D-OBBP5pbfZ7vuHkf&data=05%7C01%7C%7Cfb26254a55c54cf6376f08dbaf6620f4%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638296625410510748%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=fUnWvtSZ4q52gUyRxn9Ew5dldi8jQrQKApvRAyA9mJ8%3D&reserved=0\">A Multilingual Information Package on Juvenile Delinquency for Young People and Their Parents (English subtitles)</a> </p>", "en": "<p>The NGOs have once again invited parents of young people,as well as representatives from youth work, the police and child protection in a collaborative event. The event is a continuation of a project initiated last spring, which produced video recordings of the police answering parents' questions. The primary emphasis of this upcoming event will be on providing support to parent and engaging in preventive efforts.</p><p>We will be serving light refreshments</p><p>Before the event, it's worth checking out the video series released last spring about parents' questions to Commissioner Hannu Väänänen. In the eight-part video series, various topics related to underage criminal activity in Finland are discussed.</p><p>You can find the video series in three different languages through the following links:</p><p> <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fyoutube.com%2Fplaylist%3Flist%3DPLu-cSo43UwFhfW3wrx3eCjQsMXzgzO7k3%26si%3DyK3dW2rzpQlzRJEy&data=05%7C01%7C%7Cf5544771b0b0422557f908dbb03b1c32%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638297540156195162%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=iXR8nYb2LphZA7BlODzjYWtm9an6KgPPR5OoWKY3xq0%3D&reserved=0\">Monikielinen infopaketti alaikäisten nuorten rikollisuudesta nuorille ja heidän vanhemmilleen</a> </p><p> <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fyoutube.com%2Fplaylist%3Flist%3DPLu-cSo43UwFhqJzrtBxqB4CqT8DBGisfu%26si%3D-OBBP5pbfZ7vuHkf&data=05%7C01%7C%7Cf5544771b0b0422557f908dbb03b1c32%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638297540156195162%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=OJ0SLAUf9hNnVVKtYnYy5lbqpN9wzP2zYh9%2BvM5PPkg%3D&reserved=0\">A Multilingual Information Package on Juvenile Delinquency for Young People and Their Parents (English subtitles)</a> </p>", "ar": "<p> <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fyoutube.com%2Fplaylist%3Flist%3DPLu-cSo43UwFhZUad6FJXnOGf3Q8Mtkcrr%26si%3D86OvteKJL0AehYAc&data=05%7C01%7C%7Cf5544771b0b0422557f908dbb03b1c32%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638297540156195162%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=UNMyPN%2FyxiRL5Xw3s%2BjE67EtRCjGQiODloIbeyqwxdI%3D&reserved=0\">معلومات متعددة اللغات، حول جنوح الأحداث، المعلومات موجهة للشباب وأولياء أمورهم!</a> </p>" }, "name": { "fi": "Tukea ja tietoa nuorten vanhemmille", "en": "Support and Information for Parents of Youth" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267872/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60581", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": 4036, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:47.496978Z", "last_modified_time": "2023-09-07T14:19:47.496999Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728087.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4036/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:47.348192Z", "last_modified_time": "2023-10-16T20:13:25.137141Z", "date_published": null, "start_time": "2023-08-17T16: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": "Etno-Espan ja Savoy-teatterin Taiteiden yö Espan lavalla. VILDÀn esiintyminen Etno-Espan Taiteiden yössä Sointi Jazz Orchestran kanssa on valitettavasti peruuntunut. VILDÁn korvaa Sointi Jazz Orchestra & Friends -kokoonpano.", "sv": "Etno-Espa och Savoy-teatern – Konstens natt på Esplanadestraden.", "en": "Etno-Espa’s and Savoy Theatre’s Night of the Arts at Espa Stage." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/352D491ED97A345DD673F1398C3F4E5A/Taiteiden_yo_Sointi_Jazz_Orchestra_Friends_Dallahan_SCO_", "sv": "http://www.espanlava.fi/sv/evenemang/event/352D491ED97A345DD673F1398C3F4E5A/Taiteiden_yo_Sointi_Jazz_Orchestra_Friends_Dallahan_SCO_", "en": "http://www.espanlava.fi/en/events/event/352D491ED97A345DD673F1398C3F4E5A/Taiteiden_yo_Sointi_Jazz_Orchestra_Friends_Dallahan_SCO_" }, "description": { "fi": "<p>Etno-Espan ja Savoy-teatterin Taiteiden yö Espan lavalla. VILDÀn esiintyminen Etno-Espan Taiteiden yössä Sointi Jazz Orchestran kanssa on valitettavasti peruuntunut. VILDÁn korvaa Sointi Jazz Orchestra & Friends -kokoonpano.</p><p><b>19.00 Sointi Jazz Orchestra & Friends</b> <br>Taiteiden yössä 10-vuotisjuhlavuottaan viettävä Sointi Jazz Orchestra tuo Etno-Espan lavalle mukanaan solistivieraita yhtyeen historian varrelta. Konsertissa kuullaan yhtyeen kantaohjelmiston lisäksi osia Timo Alakotilan big bandille ja harmonikalle säveltämästä monigenreisestä Sinfonia Concertante -teoksesta, joka sai kantaesityksensä tasan 20 vuotta sitten. SJO:n kanssa teosta tulkitsemaan saapuu rovaniemeläinen harmonikkataiteilija Kaisa Ristiluoma. Lisäksi yhtyeen vieraaksi saapuu huikea jazz/soul-laulaja Maja Mannila, joka esittää omia englanninkielisiä kappaleitaan suuren jazzorkesterin säestyksellä.</p><p>Kaisa Ristiluoma on rovaniemeläinen muusikko, säveltäjä ja pedagogi, joka vaikuttaa tällä hetkellä erityisesti Pohjois-Suomessa. Hän toimii laaja-alaisesti musiikin kentällä niin solistina kuin tehden yhteistyötä toisten muusikoiden ja eri taiteenalojen osaajien kanssa.</p><p>Maja Mannila on vaikuttava nuori jazz/soul-laulaja, pianisti ja säveltäjä. Yhtyeensä kanssa hän esittää omia, englanninkielisiä kappaleita, jotka ovat tyyliltään sekoitus r’n’b-tä, soulia, jazzia ja gospel-musiikkia. Muusikkoperheen kasvatilla on varma ote musisointiin samalla kun hän painottaa vapauden ja hauskanpidon olevan tärkeää musiikin luomisessa ja soittamisessa.</p><p><b>Sointi Jazz Orchestra</b><br>Rasmus Soini – musiikin johto ja sovitukset</p><p>Petteri Hietamäki – altto- ja sopraanosaksofoni, huilu<br>Samuli Nieminen – alttosaksofoni, klarinetti, huilu<br>Frans Thomsson – tenorisaksofoni, klarinetti, bassoklarinetti<br>Janne Saarinen – tenorisaksofoni, oboe, englannintorvi<br>Pekka Seppänen – baritonisaksofoni, bassoklarinetti</p><p>Kalevi Louhivuori – trumpetti, flyygelitorvi<br>Joona Kilponen – trumpetti, flyygelitorvi<br>Vid Šketa – trumpetti, flyygelitorvi<br>Jasmin Afaneh – trumpetti, flyygelitorvi, huilu, alttohuilu</p><p>Alexis Routley – käyrätorvi<br>Mikko Haanpää – pasuuna<br>Panu Luukkonen – pasuuna<br>Hooper Santos – pasuuna<br>Kenneth Ojutkangas – tuuba</p><p>Aleksis Liukko – piano<br>Oskari Siirtola – kontrabasso<br>Arttu Huopainen – rummut</p><p><b>21.00 Dallahan (SCO)</b><br>Dallahan on monipuolinen ja energinen folk-kvartetti Skotlannista, yhtyettä pidetään yhtenä folk-musiikin lupaavimmista uusista tulokkaista.</p><p>Dallahanin musiikki yhdistelee perinteistä kelttiläistä kansanmusiikkia ja bluegrass-vaikutteita, luoden raikkaan ja omaperäisen soundin. Yhtyeen jäsenet ovat taitavia multi-instrumentalisteja, soitinvalikoimaan kuuluu viulu, kitara, mandoliini, banjo, huuliharppu ja kontrabasso.</p><p>Dallahanin sointimaailma on eloisaa, innostavaa ja täynnä virtuositeettia. Bändi on tullut tunnetuksi energisistä live-esiintymisistään, joissa heidän musiikkinsa herää eloon täydessä voimassaan.</p><p>Jack Badcock – kitara, laulu<br>Ciaran Ryan – banjo, mandoliini, viulu<br>Andrew Waite – harmonikka<br>Benedict Morris – viulu</p><p><i>Etno-Espa on vuosittainen kaupunkifestivaali, joka keskittyy uuteen kotimaiseen kansanmusiikkiin. Tapahtuman tarkoituksena on esitellä, mitä kaikkea suomalainen ja Suomessa tehtävä kansanmusiikki on tänä päivänä. Etno-Espa järjestetään 7.–17.8.2023.</i></p>", "sv": "<p>Etno-Espa och Savoy-teatern – Konstens natt på Esplanadestraden.</p><p><b>19.00 Sointi Jazz Orchestra & Friends</b> <br>VILDÁs konsert med Sointi Jazz Orchestra är inställt på Konstens natt. Istället Sointi Jazz Orchestra ska spela en konserten med Kaisa Ristiluoma och Maja Mannila som solister.</p><p>Den år 2013 grundade 18-mannade ensemblen är en av Finlands mest intressanta jazzorkestrar. Den säregna instrumentationen och de uttryckligen för Sointi anpassade konsertprogrammen gör orkestern unik. SJO uppför mestadels på 2000-talet komponerad ny musik. Dessutom uruppför ensemblen utöver sin egen grundrepertorar verk i samarbete med intressanta gästartiste.</p><p><b>Sointi Jazz Orchestra</b><br>Rasmus Soini</p><p>Petteri Hietamäki<br>Samuli Nieminen<br>Frans Thomsson<br>Janne Saarinen<br>Pekka Seppänen</p><p>Kalevi Louhivuori<br>Joona Kilponen<br>Vid Šketa<br>Jasmin Afaneh</p><p>Alexis Routley<br>Mikko Haanpää<br>Panu Luukkonen<br>Hooper Santos<br>Kenneth Ojutkangas</p><p>Aleksis Liukko<br>Oskari Siirtola<br>Arttu Huopainen</p><p><b>21.00 Dallahan (SCO)</b><br>Dallahan är en mångsidig och energisk folkmusikkvartett från Skottland. Bandet anses vara en av de mest lovande nykomlingarna inom folkmusiken.</p><p>Dallahans ljudvärld är levande, inspirerande och full av virtuositet. Bandet har blivit känt för sina energiska liveuppträdanden, där deras musik vaknar till liv med full kraft.</p><p>Jack Badcock <br>Ciaran Ryan <br>Andrew Waite <br>Benedict Morris</p><p><i>Etno-Espa är en årligen arrangerad stadsfestival som koncentrerar sig på ny inhemsk folkmusik. Evenemangets syfte är att presentera finländsk och i Finland skapad folkmusik i alla de former den antar i dag. Etno-Espa 2023 arrangeras 7.–17.8.2023 på Esplanadestraden.</i></p>", "en": "<p>Etno-Espa’s and Savoy Theatre’s Night of the Arts at Espa Stage.</p><p><b>19.00 Sointi Jazz Orchestra & Friends</b> <br>VILDÀ’s performance as Sointi Jazz Orchestra’s soloists has been unfortunately cancelled. Sointi Jazz Orchestra will perform at Etno-Espa’s Night of the Arts with other guesting soloists.</p><p>Sointi Jazz Orchestra will celebrate its 10 years anniversary at the Night of the Arts, and will bring to Espa stage a selection of guesting soloists. In the concert we will hear parts of Timo Alakotila’s composition Sinfonia Concertante, which was premiered 20 years ago. Together with Sointi Jazz Orchestra the piece will be played by accordionist Kaisa Ristiluoma. In addition, the concert will be featured by energetic jazz and soul singer Maja Mannila, who will perform her compositions accompanied by a big jazz orchestra.</p><p>Sointi Jazz Orchestra:</p><p>Rasmus Soini</p><p>Petteri Hietamäki<br>Samuli Nieminen<br>Frans Thomsson<br>Janne Saarinen<br>Pekka Seppänen</p><p>Kalevi Louhivuori<br>Joona Kilponen<br>Vid Šketa<br>Jasmin Afaneh</p><p>Alexis Routley<br>Mikko Haanpää<br>Panu Luukkonen<br>Hooper Santos<br>Kenneth Ojutkangas</p><p>Aleksis Liukko<br>Oskari Siirtola<br>Arttu Huopainen</p><p><b>21.00 Dallahan (SCO)</b><br>Forged in Scotland and Ireland’s traditional music scene, but drawing on the music of the Balkans and North America, Dallahan take their listeners on a journey. Traversing styles and countries of the world in a dazzling live show, they create their own unique brand of World-folk delivered with stunning virtuosity.</p><p>Jack Badcock<br>Ciaran Ryan<br>Andrew Waite<br>Benedict Morris</p><p><i>Etno-Espa is an annual city festival that focuses on modern folk music. The festival presents what Finnish folk music and folk music made in Finland can be today. The festival takes place in Helsinki, on Espa outdoor stage from 7th to 17th of August 2023.</i></p>" }, "name": { "fi": "Taiteiden yö: Sointi Jazz Orchestra & Friends | Dallahan (SCO) – Etno-Espa", "sv": "Taiteiden yö: Sointi Jazz Orchestra & Friends | Dallahan (SCO) – Etno-Espa", "en": "Taiteiden yö: Sointi Jazz Orchestra & Friends | Dallahan (SCO) – Etno-Espa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60581/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60653", "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" } ], "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": 4035, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:47.122000Z", "last_modified_time": "2023-09-07T14:19:47.122023Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734781.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4035/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:46.979662Z", "last_modified_time": "2023-10-16T20:13:24.969594Z", "date_published": null, "start_time": "2023-08-17T15: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": "Delado International on musiikki- ja tanssiryhmä Burkina Fasosta ja Suomesta." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8D07D0097BD1C7CBAF9C1362B88BB301/Delado_2_International" }, "description": { "fi": "<p>Delado International on musiikki- ja tanssiryhmä Burkina Fasosta ja Suomesta.</p><p>Delado tuo yhteen mestarimuusikot Burkina Fasosta ja tanssija-lauluntekijä Sanna Karlsson-Sutisnan Suomesta.</p><p>Taiteiden yössä Delado esiintyy duona eikä triona kuten viime vuonna, siitä nimi Delado 2.</p>" }, "name": { "fi": "Delado 2 International – Elokuun iltasoitto" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60653/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60592", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 4034, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:46.754934Z", "last_modified_time": "2023-09-07T14:19:46.754955Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731979.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4034/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:46.604517Z", "last_modified_time": "2023-10-16T20:13:24.694895Z", "date_published": null, "start_time": "2023-08-17T15: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": "Tervetuloa tutustumaan länsiafrikkalaisiin tansseihin ja treenaamaan liverytmien tahdissa elokuun viimeisinä arkipäivinä Kannelmäen Sitratorille!", "sv": "Välkommen att bekanta dig och öva på västafrikanska danser i takt med liverytmer de sista vardagarna i augusti på Cittertorget i Gamlas!", "en": "Come and explore West African dances and get some exercise to the beat of live rhythms on the last weekdays of August at Sitratori square in Kannelmäki!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4A3F9838C00399073E6EE0A172A7EB37/Kanneltalon_avoimet_afrotunnit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4A3F9838C00399073E6EE0A172A7EB37/Oppna_afroklasser_pa_Gamlasgarden", "en": "http://www.kanneltalo.fi/en/events/event/4A3F9838C00399073E6EE0A172A7EB37/Open_Afro_dance_classes_at_Kanneltalo" }, "description": { "fi": "<p>Tervetuloa tutustumaan länsiafrikkalaisiin tansseihin ja treenaamaan liverytmien tahdissa elokuun viimeisinä arkipäivinä Kannelmäen Sitratorille!</p><p>Länsiafrikkalainen tanssi on iloista, energistä ja vauhdikasta. Se kohottaa kuntoa kuin huomaamatta sekä kehittää rytmitajua, keskittymistä ja koordinaatiokykyä. Liikekieli on kokonaisvaltaista ja liikeradat laajoja. Vuorovaikutus elävän musiikin kanssa antaa energiaa ja tuo tanssimiseen tunnelmaa!</p><p>Tunnit sisältävät alkulämmittelyn sekä tutustumista länsiafrikkalaiseen rytmiikkaan ja liikekieleen. Opit myös pienen koreografian. Lopuksi tehdään palauttava ja rentouttava loppuvenyttely.<br> <br><b>Tunnit sopivat kaikille</b>: voit tulla joko tutustumaan lajiin, tai konkarina ottamaan rennon varaslähdön alkavaan tanssisyksyyn!</p><p>Vapaa pääsy, sateen sattuessa tanssimme katoksen alla.</p><p>Mukaan rento tanssiasu, hikipyyhe ja vesipullo.<br> <br>Opettaja: Lilli Rannikko, KM, tanssinopettaja<br>Säestys: Aly Yattara, Adama Kone ja Aleksi Aalto<br> <br>Kesto: 45 min<br>Paikka: Sitratori<br>Vapaa pääsy</p>", "sv": "<p>Välkommen att bekanta dig och öva på västafrikanska danser i takt med liverytmer de sista vardagarna i augusti på Cittertorget i Gamlas!</p><p>Västafrikansk dans är glad, energisk och fartfylld! Klasserna innehåller uppvärmning och introduktion till västafrikanska rytmer och rörelsespråk. Du kommer också att få lära dig en liten koreografi.</p><p>Vi avslutar med stretching för återhämtning och avslappning.<br>Klasserna är lämpliga för alla: om du är nybörjare, kom och bekanta dig med dansstilen, eller om du är veteran, ta en tjuvstart till danshösten under avslappnade former!</p><p>Fritt inträde, vid regn dansar vi under tak! Ta med löst sittande danskläder, en svetthandduk och en vattenflaska.</p><p>Danslärare: Lilli Rannikko<br>Musikerna: Aly Yattara, Adama Kone, Aleksi Aalto</p>", "en": "<p>Come and explore West African dances and get some exercise to the beat of live rhythms on the last weekdays of August at Sitratori square in Kannelmäki!</p><p>West African dance is cheerful, energetic and fast-paced. The classes include a warm-up session and introduction to West African rhythm and movement. You also learn a short choreography. The class ends with relaxing and restorative stretches.</p><p>The classes are suitable for everyone: you can come as a beginner to explore a new dance, or with previous experience to get a laid-back early start to the autumn of dance!</p><p>Free admission; in case of rain we dance under the canopy. Bring a casual dance outfit, a gym towel and a bottle of water.</p><p>Dance instructor: Lilli Rannikko<br>Musicians: Aly Yattara, Adama Kone, Aleksi Aalto</p>" }, "name": { "fi": "Kanneltalon avoimet afrotunnit", "sv": "Öppna afroklasser på Gamlasgården", "en": "Open Afro dance classes at Kanneltalo" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60592/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60082", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4033, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:46.326572Z", "last_modified_time": "2023-09-07T14:19:46.326593Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732787.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4033/?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:19:45.654468Z", "last_modified_time": "2023-10-16T20:13:24.284140Z", "date_published": null, "start_time": "2023-08-17T14:00:00Z", "end_time": "2023-08-17T16: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": "Annantalo on täynnä taidetyöpajoja taiteiden yönä klo 17–19.30. Tervetuloa kaikki lapset, nuoret ja perheet mukaan taiteilemaan!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0EE75B9F64B44485BB31A4CC3BED0D05/Taiteiden_yon_taidetyopajat_Annantalolla_" }, "description": { "fi": "<p>Annantalo on täynnä taidetyöpajoja taiteiden yönä klo 17–19.30. Tervetuloa kaikki lapset, nuoret ja perheet mukaan taiteilemaan!</p><p>Taiteiden yö hiipii Annantaloon 17.8. klo 17-19.30. Tervetuloa taiteilemaan ja tutkimaan mitä yö tuo tullessaan. Tervetuloa kaikki lapset, nuoret ja perheet mukaan taiteilemaan!</p><p>Työpajat sopivat kaiken ikäisille lapsille yhdessä oman aikuisen kanssa. Jos pajassa ei ole tilaa, voit odottaa hetken, että paikkoja vapautuu!</p><p>TYÖPAJAT</p><p>Pimeänlento-installaatio</p><p>Lennetään yhdessä öisessä pimeydessä. Tutkitaan erilaisia pimeydessä lentäviä olentoja. Mikä jää meiltä hämärään ja mitä kykenemme aistimaan?</p><p>Yöperhoset-animaatiopaja</p><p>Hei täplätupsukkaat, hapsiyökköset, purppurakääpiöt ja kirjosuomut! Nyt on aikanne hypätä valkokankaalle! Tervetuloa luomaan oma yöperhosesi animaation keinoin.</p><p>Otuksia yössä -saviveistostyöpaja</p><p>Pimeys laskeutuu kaupunkiin. Kuka kumma kivien ja oksien takaa hiipii esiin? Työpajassa muovaillaan pieniä saviveistoksia, joiden piirteissä voivat yhdistyä vaikkapa kissaeläimen ja lepakon ominaisuudet.</p><p>Valoa kohti – lyhtypaja</p><p>Tässä pajassa pääset rakentamaan värikkäitä lyhtyjä paperista. Ota oma led-tuikku tai taskulamppu mukaan, niin näet lyhtysi valaistuna. Tervetuloa loihtimaan valoa Annantalon Taiteiden yöhön!</p><p>Osana päivää järjestetään myös Lasinkaiverrustyönäytös klo 17–19: taiteilija Henriikka Pöllänen esittelee kaiverrustekniikoita lasille osana Särkyvää ja värikästä näyttelyä.</p>" }, "name": { "fi": "Taiteiden yön taidetyöpajat Annantalolla" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60082/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60055", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 4032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:44.930703Z", "last_modified_time": "2023-09-07T14:19:44.930766Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732388.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:44.648736Z", "last_modified_time": "2023-10-16T20:13:23.683381Z", "date_published": null, "start_time": "2023-08-17T14: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": "Opi musiikkia äidinkielenä!", "sv": "Lär dig musik som ditt modersmål!", "en": "Learn Music as a Mother Language!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D96F6C90DF9D5EA4EABD85915846BA58/Kansantansseja_elavan_musiikin_saestyksella_Tyopaja", "sv": "http://www.caisa.fi/sv/evenemang/event/D96F6C90DF9D5EA4EABD85915846BA58/Folkdans_med_levande_musik_Verkstader_", "en": "http://www.caisa.fi/en/events/event/D96F6C90DF9D5EA4EABD85915846BA58/Folk_dances_with_live_music_Workshops" }, "description": { "fi": "<p>Opi musiikkia äidinkielenä!</p><p>Työpajassa voit opetella soittamaan tanssien taustalla tai tanssimaan itse. Kaikenlaiset soittimet ja tanssitaidot ovat tervetulleita. Et tarvitse muuta kuin soittimesi, äänesi ja kehosi!</p><p>Aiempaa tanssikokemusta ei tarvita.</p><p>Tapahtuman kesto: 2 t<br>Ikäsuositus: sopii kaikille<br>Kielet: englanti, somalia, portugali ja suomi</p><p>Vapaa pääsy</p>", "sv": "<p>Lär dig musik som ditt modersmål!</p><p>Folkdans med levande musik – undervisning i musik som ett språk och ett sammanbindande element mellan lokala kulturella minoriteter. I augusti: Somalia & Angola.</p><p>Du kan lära dig att spela musiken till danserna eller lära dig danserna. Alla musikinstrument och dansnivåer är välkomna. Du behöver bara ta med dig ditt instrument, din röst och kropp!</p><p>Längd: 2 timmar<br>För alla åldrar<br>Språk: engelska, somaliska, portugisiska och finska<br>Fritt inträde</p>", "en": "<p>Learn Music as a Mother Language!</p><p>Folk Dances with Live Music, to teach music as a language and connecting the local cultural minorities:<br>August: Somalia & Angola</p><p>You can learn how play music for the dances or learn the dances. All kinds of music instruments and dance levels are welcome. Just bring your instrument, voice and body!</p><p>Duration: 2 h<br>For all ages<br>Languages: English, Somalia, Portugal and Finnish<br>Free entry</p>" }, "name": { "fi": "Kansantansseja elävän musiikin säestyksellä | Työpaja – Taiteiden yö | Angola ja Tansania", "sv": "Folkdans med levande musik | Verkstäder – Konstens natt", "en": "Folk dances with live music | Workshops – Night of the Arts" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60055/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59620", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?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": 4031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:44.395097Z", "last_modified_time": "2023-09-07T14:19:44.395125Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727655.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4031/?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:19:44.240832Z", "last_modified_time": "2023-10-16T20:13:22.987048Z", "date_published": null, "start_time": "2023-08-17T14:00:00Z", "end_time": "2023-08-17T17: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": "Elokuun ihanin ilta on täällä taas! Tervetuloa naapurista ja kauempaakin Stoan aukiolle tunnelmoimaan kanssamme syyskauden alkua.", "sv": "Den skönaste augustikvällen är här igen! Vi välkomnar såväl lokalbor som mer långväga gäster till Stoaplatsen för en trivsam stund tillsammans inför höstsäsongen.", "en": "The most wonderful evening of August is here once again! All locals and even people from further away are welcome to join us at Stoa Square to enjoy the atmosphere of the beginning of autumn." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/050988677BA2BEEE71A5A0734EFAC3D6/Stoan_Elojuhla_", "sv": "http://www.stoa.fi/sv/evenemang/event/050988677BA2BEEE71A5A0734EFAC3D6/Stoas_Elojuhla_", "en": "http://www.stoa.fi/en/events/event/050988677BA2BEEE71A5A0734EFAC3D6/Stoa_Elojuhla_" }, "description": { "fi": "<p>Elokuun ihanin ilta on täällä taas! Tervetuloa naapurista ja kauempaakin Stoan aukiolle tunnelmoimaan kanssamme syyskauden alkua.</p><p>Kaiken ikäisiä värikkäin rytmein tanssittavat Emma-palkittu Megasakki sekä kansainvälistä arvostusta nauttiva Helsinki-Cotonou Ensemble. Luvassa on lisäksi Arctic Ensemblen katusirkuksen taikaa sekä monenlaista tekemistä pienille ja isommille.</p><p>Tapahtuman juontavat lastenohjelmista tutut liikennepuistokonstaapelit Valtti ja Maltti.</p><p>Klo 17.15-17.35 Arctic Ensemble: Tuuliajolla <br>Klo 17.45-18.30 Helsinki Cotonou Ensemble<br>Klo 18.40-19 Arctic Ensemble: Tuuliajolla <br>Klo 19.15-20 Megasakki</p><p>Sateen sattuessa tapahtuma siirretään sisätiloihin.</p><p><b>Helsinki-Cotonou Ensemble</b> on helsinkiläisen kitaristi Janne Halosen ja beniniläisen lyömäsoittaja-laulaja Noël Saïzonoun luotsaama kahdeksanhenkinen yhtye. HCE:n musiikissa yhdistyvät funk-rytmit ja jazz-harmoniat sielukkaisiin sävellyksiin voodoon hengessä. Se on saanut arvostusta ammattilaisten piireissä kautta maailman.</p><p>Kokoonpano:<br>Janne Halonen – kitara, laulu<br>Noël Saïzonou – lyömäsoittimet, laulu<br>Juha Räsänen – rummut<br>Sampo Riskilä – basso<br>Mikko Pettinen – trumpetti, laulu<br>Visa Oscar – koskettimet<br>Kasheshi Makena – lyömäsoittimet, laulu<br>Joakim Berghäll – saksofoni, laulu</p><p><b>Megasakki</b> on uusi lastenmusiikkiyhtye, jonka rytmimusiikin tyylit soulista hiphopiin ja funkista r’n’b:hen yhdistyvät oivaltavalla tavalla lasten arkea käsitteleviin hauskoihin sanoituksiin, joiden äärellä viihtyvät kaiken ikäiset kuulijat. Menevä musiikki ja iloinen tunnelma innostavat yleisöjä vauvasta vaariin, eikä kvartetin konserteista puutu taikuutta: vai mitä sanot ajankääntämisestä, keijupölystä ja telepatiasta?</p><p>Riikka Keränen/Tea Telepaatti – laulu<br>Elina Arlin/Säihky Suojeluskeiju – laulu<br>Anssi Tirkkonen/Aake Aikapoika – rummut, elektroniikka<br>Vesa Ojaniemi/Arvo Tarkka – basso, laulu, elektroniikka</p><p><b>Arctic Ensemble: Tuuliajolla</b><br>Pariakrobatiaa ja katuteatteria yhdistelevä katusirkusesitys vie katsojat päätähuimaavalle purjehdusseikkailulle, josta voidaan nauttia jalat visusti maan kamaralla. <br>Esiintyjät: Pihla Ojala ja Ilkka Kemppinen</p><p><b>Työpajat </b></p><p>Hippukoi, villasiipi, kuukehrääjä<br>Loihditaan ylijäämäkankaista satumaisen kauniita perhosia lepattavien supersankareiden ihmeelliseen joukkoon. Työpaja sopii kaikenikäisille, pienimmät yhdessä aikuisen kanssa. <br>Ohjaaja: Jenni Vilander</p><p>Rikkaruohografiikkaa<br>Nyt saa luvalla hurahtaa rikkaruohoihin! Työpajassa tehdään rikkaruohoina pidetyistä kasveista kohopainografiikkaa ja maalauksia. Materiaalina toimivat lupiinin lehdet, kurttulehtiruusut, vuohenputket ja voikukat. Pienimmät kävijät voivat tehdä kasvimateriaalista omat siveltimet, joita testaillaan pajassa elintarvikeväreillä maalaten. Maalauksiin haetaan inspiraatiota nykytaiteesta ja Stoan aukion Kadonneesta lehdosta. Työpaja sopii kaiken ikäisille. <br>Ohjaajat: Seikkailutaidekoulun Verna Kuntsi ja Satu Sipilä</p><p>Tawashi – punottu pesusieni<br>Mitä tehdä kaikilla parittomilla sukilla ja rikkinäisillä sukkahousuilla? Tawashi on japanin kieltä ja tarkoittaa pesusientä. Työpajassa tehdään nollahukka-pesusieniä kierrätystekstiilejä käyttäen näppärää kutomisalustaa. Pajassa saat myös ohjeet oman alustan tekemiseen. Tekniikka ei ole vaikea, mutta vaatii hieman kärsivällisyyttä. <br>Ohjaaja: Chloé Mahy-Hulkko</p><p>Sadonkorjuuseppeleet<br>Ken on heistä kaikkein kukkaisin? Kruunaa elojuhlatyylisi värikkäällä seppeleellä! Työpajassa tehdään kierrätetyistä tekokukista kestokukkaseppele kuumaliiman avulla. Tämä seppele ei lakastu syksyn myötä vaan kestää monet karkelot. Työpaja soveltuu kaikenikäisille, mutta pienimmät osallistujat tarvitsevat apua kuumaliiman käsittelyssä. <br>Ohjaaja: Greta Salonen</p><p>Itäkeskuksen kirjaston ja Helsingin työväenopiston Sana-camping -alueella otetaan irtiotto arjesta ja lompsahdetaan lukulomalle!</p><p>Ravintola Skutta tarjoilee villit herkut.</p>", "sv": "<p>Den skönaste augustikvällen är här igen! Vi välkomnar såväl lokalbor som mer långväga gäster till Stoaplatsen för en trivsam stund tillsammans inför höstsäsongen.</p><p>Färgglada dansrytmer för folk i alla åldrar spelas av Emma-pristagaren Megasakki och internationellt renommerade Helsinki-Cotonou Ensemble. Det utlovas också skogsstämningar och fågelsång, gatucirkusmagi och många slags aktiviteter för både stora och små. Restaurang Skutta serverar vilda delikatesser.</p>", "en": "<p>The most wonderful evening of August is here once again! All locals and even people from further away are welcome to join us at Stoa Square to enjoy the atmosphere of the beginning of autumn.</p><p>People of all ages will get to dance to the colourful rhythms of the Emma-winning Megasakki and the internationally acclaimed Helsinki-Cotonou Ensemble. Other delights in store include forest atmospheres and bird song, the magic of street circus and a variety of activities for children and adults alike. Restaurant Skutta will serve the wild treats.</p>" }, "name": { "fi": "Stoan Elojuhla – Taiteiden yö", "sv": "Stoas Elojuhla – Konstens natt", "en": "Stoa Elojuhla – Night of the Arts" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59620/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60162", "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:104/?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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 4030, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:43.989969Z", "last_modified_time": "2023-09-07T14:19:43.989989Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727787.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4030/?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:19:43.835131Z", "last_modified_time": "2023-10-16T20:13:21.086051Z", "date_published": null, "start_time": "2023-08-17T13: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": "Musiikkia, tarinoita, työpajoja ja taidetta Vuotalon Taiteiden yössä!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/70FC4DA5E12AF80419FB2F62046C850B/Vuotalon_Taiteiden_yo_" }, "description": { "fi": "<p>Musiikkia, tarinoita, työpajoja ja taidetta Vuotalon Taiteiden yössä!</p><p><b>klo 16–19 | A&DO Labran avajaiset</b><br>Arkkitehtuurimuseon ja Designmuseon yhteinen A&DO Labra -näyttely on kiertänyt Suomea jo kahden vuoden ajan. Nyt kahteen merikonttiin rakennettu arkkitehtuuri- ja muotoiluoppimisen näyttely palaa Helsinkiin – kaikki kiertomatkan opit mukanaan. A&DO Labra rantautuu Vuotalon pihalle Vuosaareen, missä avautuu loistava paikka hyvän lähiympäristön tarkasteluun kaikenikäisille. Näyttely on avoinna 17.8.–20.9.2023. <br> <br><b>klo 16–19 | Vuosaaren monikulttuuristen perhejärjestöjen tapahtumatori </b><br> <br><b>klo 16–19 | Kädentaitopajat</b><br>Miten yhdistyvät suomalainen ryijyperinne, letitys ja eri kulttuurien värimaailmat? Tule tutkimaan, kokeilemaan ja tutustumaan! Alle 8-vuotiaat lapset aikuisen seurassa. Maksuton, vapaa pääsy. Ohjaajina Ama Essel ja Maria Vuorenjuuri / Helsingin työväenopisto.</p><p><b>klo 17–19 | Afrosuomalaiset Helsingissä – kuvankeräystyöpaja teemana Vuosaari </b><br>Mitä Being Black – poimintoja afrosuomalaisuudesta -näyttelystä puuttuu? Tule kuvankeräystyöpajaan lisäämään omat kuvasi osaksi näyttelyä! Työpajassa osallistujat jakavat valokuvia omasta puhelimestaan ja valitsevat lopuksi yhdessä, mitkä kuvat päätyvät esille näyttelyyn. Työpajassa kerätyt kuvat lisätään näyttelytilassa niille varattuun näyttöön, jossa ne ovat nähtävillä 24.9. asti. Työpajan vetää Alice Mutoni / Helsingin kaupunginmuseo.</p><p><b>klo 17–19 | Aikamatkustaja-piirustustyöpaja</b><br>Kuvitellaan tarina, jossa juuri sinä olet päähenkilö. Jos matkustaisit ajassa vaikka 100 tai 1000 vuotta tulevaisuuteen, minkälaista se olisi? Aikamatkustaja-piirustustyöpajan teema on omana itsenään oleminen ja tilan haltuun ottaminen. Työpajassa tavoite on asettaa oma kokemus, identiteetti keskiöön tieteis- ja fantasiaelementtejä hyödyntäen. Piirtimet ja paperit saat Vuotalolta. Jade Lönnqvist ohjaa työpajan Being Black -näyttelytilassa.<br> <br><b>klo 18 | Delado 2 International</b><br>Delado on musiikki- ja tanssiryhmä Burkina Fasosta ja Suomesta. Delado tuo yhteen mestarimuusikot Burkina Fasosta ja tanssija-lauluntekijä Sanna Karlsson-Sutisnan Suomesta. Taiteiden yössä Delado esiintyy duona. <br> <br><b>klo 19 | Story Sharing Universum: Story Sharing Café</b><br>Yö Vuotalon alapihan taikapuutarhassa on täynnä valoa, musiikkia ja upeita tarinoita. Story Sharing Café on avoin ja hauska tapahtuma, jossa ihmiset eri puolilta maailmaa, erilaisine taustoineen ja todellisuuksineen, voivat tavata ja jakaa arjen tarinoita.</p><p>Voit tulla yksin tai tuoda ystäväsi ja jakaa tarinoita ja muistoja pienissä ryhmissä tarinanjakoryhmämme jäsenten isännöimissä sohvapöydissä. Tänä vuonna keskitymme erityisesti Afrikkaan. Meillä on myös erityisiä tarinavieraita, musiikkia ja avoin tarinanjakomikrofoni. Yhdessä luomme sydäntä lämmittävän ja nautinnollisen tapahtuman! Puhumme vähintään englantia, suomea, ruotsia, arabiaa, paštua, espanjaa ja venäjää.</p>" }, "name": { "fi": "Vuotalon Taiteiden yö" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60162/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60690", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": 4029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:43.598491Z", "last_modified_time": "2023-09-07T14:19:43.598513Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735432.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:43.389704Z", "last_modified_time": "2023-10-16T20:13:18.685845Z", "date_published": null, "start_time": "2023-08-17T12:30:00Z", "end_time": "2023-08-17T15: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": "Työväenopiston tiloissa pääset laulamaan yhteislauluja, kokeilemaan dreijausta sekä tekemään origameja." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37B4A6504A7B420AF7BF5F4F0AEFCEBE/Tyovaenopiston_taiteiden_yo_Malmitalossa" }, "description": { "fi": "<p>Työväenopiston tiloissa pääset laulamaan yhteislauluja, kokeilemaan dreijausta sekä tekemään origameja.</p><p>Työväenopisto tarjoaa Malmitalon taiteiden yössä ohjelmaa seuraavasti:</p><p><b>Klo 15.30-18 Origamipaja, työväenopiston aulatila, 2.krs</b><br>Tule tekemään iloisia origamikoristeita paperista ja kankaasta. Sopii kaikenikäisille, alle kouluikäiset aikuisten seurassa.</p><p><b>Klo 15.30-18 Tutustu dreijaukseen, kuvanveistoluokka, 2.krs</b><br>Tule katsomaan ja kokeilemaan dreijausta kokeneen keramiikanopettajan opastuksella.</p><p><b>klo 17-18 Kesän muistoja - Taiteiden yön yhteislaulut / musiikkiluokka 2.krs </b><br> Malmitalolla lauletaan yhdessä Taiteiden yönä. Tule mukaan laulamaan yksin tai ystäväsi kanssa!</p>" }, "name": { "fi": "Työväenopiston taiteiden yö Malmitalossa – Työväenopisto esittelee toimintaansa Taiteiden yönä Malmitalolla" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60690/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60394", "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:348/?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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "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": 4028, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:42.924357Z", "last_modified_time": "2023-09-07T14:19:42.924380Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730164.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4028/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:42.163560Z", "last_modified_time": "2023-10-16T20:13:17.494053Z", "date_published": null, "start_time": "2023-08-17T12: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": "Malmin tapahtumakesän starttaa elokuussa Taiteiden yö, joka tuo puistoon muun muassa maailmanmusiikkia, värikkäitä työpajoja ja lasten diskon." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5BA6FD04409651FEA93C74A32796D254/Malmitalon_Taiteiden_yo" }, "description": { "fi": "<p>Malmin tapahtumakesän starttaa elokuussa Taiteiden yö, joka tuo puistoon muun muassa maailmanmusiikkia, värikkäitä työpajoja ja lasten diskon.</p><p><b>Klo 15-18 Viirityöpaja</b><br>Tule ompelemaan viirejä kierrätysmateriaaleista Taito Etelä-Suomen ohjaajien avustuksella. Viireillä koristellaan puistoa ja voit ottaa yhden myös itsellesi!</p><p>Soveltuu kaikenikäisille. Ohjaus suomeksi. <br>Vapaa pääsy</p><p><b>Klo 15-16 Eläintyöpaja</b><br>Tule askartelemaan värikkäitä eläimiä ja kukkasia kirjastolaisten kanssa! Materiaalina käytämme piipunrasseja.</p><p>Syntyneistä taideteoksista on mahdollista koostaa oma hetkellinen, isompi taideteos laatikon sisälle. Anna luovuudelle ja leikille tilaa, vain taivas on rajana!</p><p>Eläinten askartelu soveltuu kaikenikäisille, kukkaset vaativat hieman pidempää keskittymistä. Ohjaus suomeksi. Vapaa pääsy.</p><p><b>Klo 16–17 Skidit-disko</b><br>Skidit-disko tarjoaa musiikkimatkan lastensävelistä tämän päivän tinkimättömiin hitteihin. Lämminhenkisessä diskossa yhdistyvät tanssittavat bängerit, hauskat leikit, tanssiopetus ja mielikuvituksellinen meno. Hyvä meininki kerää tanssilattialle niin aikuiset kuin lapsetkin. Let’s BAILA!<br> <br>Skidit-disko käynnisti lastendiskobuumin Suomessa tuodessaan maailmalta suosituksi tulleen konseptin koko perheen päivätansseista ykkösklubeilla. Diskon synnyinpaikka on Kuudes Linja ja Kaiku Helsingin Kalliossa, mutta diskoiltu on myös laivoilla, Musiikkitalolla, museossa, Flow Festivalin perhesunnuntaissa ja Oulussa, johon lennätettiin maailman pienin disko.</p><p>Soveltuu kaikenikäisille.<br>Vapaa pääsy.</p><p><b>Klo 15.30-18 Työväenopiston Taiteiden yö Malmitalossa</b><br>Työväenopiston tiloissa Malmitalolla pääset tutustumaan mm. dreijaukseen sekä laulamaan yhteislauluja. Tarkemman ohjelman löydät täältä: https://malmitalo.fi/fi/tapahtumat/event/37B4A6504A7B420AF7BF5F4F0AEFCEBE/Ty_v_enopiston_taiteiden_y__Malmitalossa</p><p><b>klo 19 Jaakko Laitinen ja väärä raha</b><br>Jaakko Laitinen & Väärä Raha on vuodesta 2009 musiikin ystäviä ja elämän rakastajia villinnyt Lapland-Balkan-orkesteri. Sen musiikissa lyövät kättä monenlaiset elementit pääraaka-aineina Balkanin säpäkät rytmit ja vanha suomalainen iskelmä. Musiikilliseen maustehyllyyn on vuosien varrella sattunut vaikutteita niin Gruusiasta, Turkista, Lähi-Idästä kuin Kreikastakin.</p><p>Laitisen sanoitukset kunnioittavat suomalaisen iskelmän parhaimpia perinteitä venyttäen ilmaisua uusille vesille - aiheiden skaala paukkuu perinteisistä lemmenlauluista tietoisuuden ja todellisuuden olemuksen kiperiin pohdintoihin ja pimeän pullon etsintään Peräpohjolan yössä.</p><p>Viisi fanien rakastamaa ja kriitikoiden ylistämää pitkäsoittoa ja yhden live-levyn julkaissut orkesteri tunnetaan kuitenkin ennen kaikkea hurmoksellisena keikkajyränä, ja mainetta on ylläpidetty kiihkeään keikkatahtiin Eirasta Inariin ja ympäri Eurooppaa yli 20 eri maassa niin suurilla festivaaliareenoilla kuin kylähäissä ja savuisissa klubeissa.<br> <br>Jaakko Laitinen · laulu<br>Ilkka Arola · trumpetti, buzuki<br>Marko Roininen · haitari<br>Juho Kanervo · basso<br>Janne Hast · rummut</p>" }, "name": { "fi": "Malmitalon Taiteiden yö" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60394/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60337", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 4027, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:41.770973Z", "last_modified_time": "2023-09-07T14:19:41.770994Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734861.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4027/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:41.618263Z", "last_modified_time": "2023-10-16T20:13:17.157356Z", "date_published": null, "start_time": "2023-08-17", "end_time": "2023-08-26", "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": "Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille.", "sv": "Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar.", "en": "Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakesa_2023", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakesa_2023", "en": "http://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakesa_2023" }, "description": { "fi": "<p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille.</p><p>Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Malmin tapahtumakesän ohjelma:</b></p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/5BA6FD04409651FEA93C74A32796D254/Malmitalon_Taiteiden_y_\">Taiteiden yö</u></a><br>to 17.8. klo 15–19</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/3A7AA67F770DD9CC967B71B663C312B3/Yhteislaulut\">Yhteislaulut</u></a><br>pe 18.8. klo 15–16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/5CBB04D99F0B4D59D1C50A9F738BFF18/Kaupunkitanssit\">Kaupunkitanssit (ohjaus suomeksi)</u></a><br>pe 18.8. klo 17.30–18.15 tango</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/CC0F161D2E3264D9B32974C6810B5597/Muska___Hot_dogs_\">Muska ja Hot dogs </u></a><br>pe 18.8. klo 19</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/9C6CBA40DE80EEEBB5E40D2AEED3E34B/Hupsansaa_ry__Puutarhajuhlat-ty_paja_\">Hupsansaa ry: Puutarhajuhlat-työpaja </u></a><br>la 19.8. klo 13–16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/46AB99E332C6D65E88591B3142429025/Siivet_ry__Oma_laulusi_-konsertti_ja_ty_paja_\">Siivet ry: Oma laulusi -konsertti ja työpaja</u></a><br>la 19.8. klo 13</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/94E0CE7EBF318CB943F235C2BE7A2C94/Naattiorkesteri\">Naattiorkesteri</u></a><br>la 19.8.2023 klo 15–16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/B703E470D6C8608FBC5A04154E895CB1/Lempikuoro\">Lempikuoro</u></a><br>ke 23.8.2023 klo 16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/43C633E9624A6E9777AB9693C34ABF94/Kaupunkitanssit\">Kaupunkitanssit (ohjaus suomeksi)</u></a><br>ke 23.8. klo 17.30–18.15 fusku</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/83CB058F4590B5C58FC8E654778604DF/Lyyti\">Lyyti</u></a><br>ke 23.8.2023 klo 19</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/447C4CB347599A31AF293B96B5361A91/Luontokylvyt_vauvoille_ja_taaperoille\">Luontokylvyt vauvoille ja taaperoille</u></a><br>pe 25.8. klo 10.30–13</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/DFEFE8DCB1DCA25785CE9D95E6EF34AD/Yhteislaulut\">Yhteislaulut</u></a><br>pe 25.8.2023 klo 15–16</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/007EAE9BC2EC3DBC9B6ECC37ED48A25A/Kaupunkitanssit\">Kaupunkitanssit (ohjaus suomeksi)</u></a><br>pe 25.8. klo 17.30–18.15 cha cha</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/1EE8D308092BAADF0316C3ABA4279A31/Scandinavian_Music_Group_Trio\">Scandinavian Music Group Trio</u></a><br>pe 25.8.2023 klo 19</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/76AAD5A65F688F5ED5817C079AF73BDF/Suosikki\">Suosikki</u></a><br>la 26.8.2023 klo 18</p><p><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/1C404A044C27F2BE8FE3966299015CB9/Kissa\">Kissa</u></a><br>la 26.8.2023 klo 20</p>", "sv": "<p>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar.</p><p>Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Program</b></p><p>Konstens Natt</u></a><br>tors 17.8 kl. 15–19</p><p>Yhteislaulut</u></a><br>fre 18.8 kl. 15–16</p><p>Kaupunkitanssit (undervisning på finska)</u></a><br>fre 18.8 kl. 17.30–18.15 tango</p><p>Muska ja Hot dogs </u></a><br>fre 18.8 kl. 19</p><p>Hupsansaa ry: Puutarhajuhlat-työpaja </u></a><br>lö 19.8 kl. 13–16</p><p>Siivet ry: Konsert och verkstad Oma laulusi<br>lö 19.8 kl. 13</p><p>Naattiorkesteri</u></a><br>lö 19.8 kl. 15–16</p><p>Kaupunkitanssit (undervisning på finska)</u></a><br>ons 23.8 kl. 17.30–18.15 fusku</p><p>Lempikuoro<br>ons 23.8 kl. 16</p><p>Lyyti</u></a><br>ons 23.8 kl. 19</p><p>Luontokylvyt vauvoille ja taaperoille<br>fre 25.8 kl. 10.30–13</p><p>Yhteislaulut</u></a><br>fre 25.8 kl. 15–16</p><p>Kaupunkitanssit (undervisning på finska)</u></a><br>fre 25.8 kl. 17.30–18.15 cha cha</p><p>Scandinavian Music Group Trio</u></a><br>fre 25.8 kl. 19</p><p>Suosikki</u></a><br>lö 26.8 kl. 18</p><p>Kissa</u></a><br>lö 26.8 kl. 20</p>", "en": "<p>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events!</p><p>The programme includes a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>Programme:</b></p><p>Night of the Arts</u></a><br>Thu 17 Aug at 3–7 p.m.</p><p>Yhteislaulut (Sing along in Finnish)</u></a><br>Fri 18 Aug at 3–4 p.m.</p><p>Kaupunkitanssit (teaching in Finnish)</u></a><br>Fri 18 Aug at 5.30–6.15 p.m. (tango)</p><p>Muska ja Hot dogs </u></a><br>Fri 18 Aug at 7 p.m.</p><p>Hupsansaa ry: Puutarhajuhlat-työpaja </u></a><br>Sat 19 Aug at 1–4 p.m.</p><p>Siivet ry: Oma laulusi – Concert and workshop <br>Sat 19 Aug at 1 pm</p><p>Naattiorkesteri</u></a><br>Sat 19 Aug at 3–4 p.m.</p><p>Lempikuoro <br>Wed 23 Aug at 4 p.m</p><p>Kaupunkitanssit (teaching in Finnish)</u></a><br>Wed 23 Aug at 5.30–6.15 p.m. (fusku)</p><p>Lyyti</u></a><br>Wed 23 Aug at 7 p.m.</p><p>Luontokylvyt vauvoille ja taaperoille<br>Fri 25 Aug from 10.30 am to 1 p.m.</p><p>Yhteislaulut (Sing along in Finnish)</u></a><br>Fri 25 Aug at 3–4 p.m.</p><p>Kaupunkitanssit (teaching in Finnish)</u></a><br>Fri 25 Aug at 5.30–6.15 p.m. (cha cha)</p><p>Scandinavian Music Group Trio</u></a><br>Fri 25 Aug at 7 p.m.</p><p>Suosikki</u></a><br>Sat 26 Aug at 6 p.m.</p><p>Kissa</u></a><br>Sat 26 Aug at 8 p.m.</p>" }, "name": { "fi": "Malmin tapahtumakesä 2023", "sv": "Malmin tapahtumakesä 2023", "en": "Malmin tapahtumakesä 2023" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60337/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }