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&include=location%2Ckeywords&page=814
{ "meta": { "count": 32755, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=815", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=813" }, "data": [ { "id": "kulke:63663", "has_user_editable_resources": false, "location": null, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:48", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.680935Z", "last_modified_time": "2024-02-06T13:19:14.106891Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 382, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Espan lava" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 151084, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T12:13:04.523573Z", "last_modified_time": "2024-05-10T12:13:04.523589Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746305.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151084/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-10T12:13:04.488620Z", "last_modified_time": "2024-05-29T10:12:50.191718Z", "date_published": null, "start_time": "2024-06-07T14: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": "Calle Mambo tarjoaa Espan lavalla monipuolisen musiikkimatkan ympäri Chilen!", "sv": "Calle Mambo erbjuder en mångsidig musikresa kring Chile på Esplanadestraden!", "en": "Calle Mambo is offering you an amazing journey around Chile, dancing and eclectic!" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/68D86EA67DC4FB370716A5FAEEE5B59A/Calle_Mambo_CL_", "sv": "http://www.espanlava.fi/sv/evenemang/event/68D86EA67DC4FB370716A5FAEEE5B59A/Calle_Mambo_CL_", "en": "http://www.espanlava.fi/en/events/event/68D86EA67DC4FB370716A5FAEEE5B59A/Calle_Mambo_CL_" }, "description": { "fi": "<p>Calle Mambo tarjoaa Espan lavalla monipuolisen musiikkimatkan ympäri Chilen!</p><p>Calle Mambo on vuonna 2013 perustettu chileläinen yhtye, joka tuo Euroopan kiertueensa myös Espan lavalle juhlistaakseen uutta \"Retumba la Tierra\" -albumiaan.</p><p>Ahkerasti keikkaileva yhtye palaa tarttuvien latinalaisten äänien kanssa: Huayno, Cumbia, Timba, Caporal ja niin edelleen.</p><p>Lavalla yli 10 eri instrumenttia soittavana yhtye on symboli latinalaisen musiikin monimuotoisuudelle ja rikkaudelle: Quena, Quenacho, Cuatro, Charango, Tiple, Timbal, Gaita, Zampoña, Ronroco.</p>", "sv": "<p>Calle Mambo erbjuder en mångsidig musikresa kring Chile på Esplanadestraden!</p><p>Calle Mambo är ett ett band från Chile som har grundats 2013. Bandet hämtar nu sin Europaturné även till Esplanadscenen för att fira sitt nya album “Retumba la Tierra”.</p><p>Det flitigt turnerade bandet återkommer med latinska toner som fastnar: Huayno, Cumbia, Timba, Caporal och så vidare. Med över 10 instrument som spelas på scenen är bandet en symbol för den latinska musikens mångfald och rikedom: Quena, Quenacho, Cuatro, Charango, Tiple, Timbal, Gaita, Zampoña, Ronroco.</p>", "en": "<p>Calle Mambo is offering you an amazing journey around Chile, dancing and eclectic!</p><p>Calle Mambo is a Chilean group formed in 2013. They will be on an European tour from April to October 2024 to celebrate their new album \"Retumba la Tierra\"!</p><p>Playing over 10 instruments on stage, it is a symbol of the diversity and richness of Latin music: Quena, Quenacho, Cuatro, Charango, Tiple, Timbal, Gaita, Zampoña, Ronroco.</p>" }, "name": { "fi": "Calle Mambo (CL)", "sv": "Calle Mambo (CL)", "en": "Calle Mambo (CL)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63663/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63662", "has_user_editable_resources": false, "location": null, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:48", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.680935Z", "last_modified_time": "2024-02-06T13:19:14.106891Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 382, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Espan lava" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-73/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151079, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T11:13:11.223612Z", "last_modified_time": "2024-05-10T11:13:11.223625Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742572.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151079/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-10T11:13:11.205087Z", "last_modified_time": "2024-05-29T10:12:50.102545Z", "date_published": null, "start_time": "2024-06-07T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Espan lavalle saapuu Lapin sotilassoittokunta Rovaniemeltä. Lapin sotilassoittokunta on pohjoisen Suomen ainoa ja EU:n pohjoisin ammattipuhallinorkesteri, kokoonpanoltaan 30 soittajaa.", "sv": "Lapplands militärmusikkår bestående av 30 musiker i Rovaniemi är den enda professionella musikkåren i Norra Finland.", "en": "The Lapland Military Band located in Rovaniemi is the only professional wind orchestra in Northern Finland, with 30 musicians in the ensemble." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B2C723D3B89389F0CDD3248CA6A0660B/MIL-Espa_Lapin_sotilassoittokunta", "sv": "http://www.espanlava.fi/sv/evenemang/event/B2C723D3B89389F0CDD3248CA6A0660B/MIL-Espa_Lapplands_militarmusikkar_", "en": "http://www.espanlava.fi/en/events/event/B2C723D3B89389F0CDD3248CA6A0660B/MIL-Espa_The_Lapland_Military_Band_" }, "description": { "fi": "<p>Espan lavalle saapuu Lapin sotilassoittokunta Rovaniemeltä. Lapin sotilassoittokunta on pohjoisen Suomen ainoa ja EU:n pohjoisin ammattipuhallinorkesteri, kokoonpanoltaan 30 soittajaa.</p><p>MIL-Espa-puistokonsertteja on järjestetty vuodesta 1927 lähtien Esplanadin puistossa. Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen.</p><p>MIL-Espa-puistokonsertit 2024 kesäperjantaisin 24.5., 31.5., 7.6., 14.6., 28.6., 5.7., 12.7., 19.7., 26.7. ja 16.8. Espan lavalla.</p>", "sv": "<p>Lapplands militärmusikkår bestående av 30 musiker i Rovaniemi är den enda professionella musikkåren i Norra Finland.</p><p>MIL-Espa-parkkonserterna har ordnats från och med år 1927 i Esplanadparken. På sommarfredagar ser vi olika sammansättningar av militärmusikkårer från olika håll i Finland på Esplanadestraden. Underhållande framträdanden med olika musikstilar utlovas.</p><p>MIL-Espa-parkkonserterna 2024 på sommarfredagar 24.5., 31.5., 7.6., 14.6., 28.6., 5.7., 12.7., 19.7., 26.7. och 16.8. på Esplanadestraden.</p>", "en": "<p>The Lapland Military Band located in Rovaniemi is the only professional wind orchestra in Northern Finland, with 30 musicians in the ensemble.</p><p>MIL-Espa park concerts have been held in the Esplanade Park since 1927. On summer Fridays, the Espa Stage will host various military band ensembles from around Finland. The programme includes live performances in many genres of music.</p><p>MIL-Espa park concerts on summer Fridays in 2024 on 24 May, 31 May, 7 June, 14 June, 28 June, 5 July, 12 July, 19 July, 26 July and 16 August on the Espa Stage.</p>" }, "name": { "fi": "MIL-Espa: Lapin sotilassoittokunta", "sv": "MIL-Espa: Lapplands militärmusikkår", "en": "MIL-Espa: The Lapland Military Band" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63662/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63661", "has_user_editable_resources": false, "location": null, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:48", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.680935Z", "last_modified_time": "2024-02-06T13:19:14.106891Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 382, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Espan lava" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 151078, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T11:13:10.988855Z", "last_modified_time": "2024-05-10T11:13:10.988874Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746667.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151078/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-10T11:13:10.970770Z", "last_modified_time": "2024-05-29T10:12:49.979967Z", "date_published": null, "start_time": "2024-06-06T15: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": "Overhead soittaa melodista progressiivista rockia, ja on 25-vuotisella urallaan saavuttanut suuren menestyksen suomalaisen progen saralla.", "sv": "Overhead spelar melodisk progressiv rock och har under sin 25-åriga karriär uppnått stor framgång inom den finländska progen.", "en": "Overhead with their melodic progressive rock lie among the most iconic acts from the Finnish prog scene." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E96D7424E50F4F66B22CD38DF35248A2/Overhead_Telepathic_Minds_Live_-_25th_Anniversary_Tour", "sv": "http://www.espanlava.fi/sv/evenemang/event/E96D7424E50F4F66B22CD38DF35248A2/Overhead_Telepathic_Minds_Live_-_25th_Anniversary_Tour", "en": "http://www.espanlava.fi/en/events/event/E96D7424E50F4F66B22CD38DF35248A2/Overhead_Telepathic_Minds_Live_-_25th_Anniversary_Tour" }, "description": { "fi": "<p>Overhead soittaa melodista progressiivista rockia, ja on 25-vuotisella urallaan saavuttanut suuren menestyksen suomalaisen progen saralla.</p><p>Yhtye on julkaissut kuusi oivallista pitkäsoittoa ja esiintynyt klubeilla ja festivaaleilla ympäri Euroopan.</p><p>Viime vuonna julkaistu tupla-albumi Telepathic Minds on ollut suuri arvostelumenestys ja valittu vuoden parhaaksi albumiksi useammissakin progemedioissa. Tämä virtuoosimainen kokoonpano tarjoaa livenä huippuluokan kokemuksen musadiggareille eeppisillä teoksillaan. Overhead kiertää juhlavuotensa kunniaksi Eurooppaa keväällä ja syksyllä ja esiintyy nyt pitkästä aikaa Espan lavalla.</p>", "sv": "<p>Overhead spelar melodisk progressiv rock och har under sin 25-åriga karriär uppnått stor framgång inom den finländska progen.</p><p>Bandet har släppt sex förträffliga LP-skivor och framträtt på klubbar och festivaler runt om i Europa.</p><p>Dubbelalbummet Telepathic Minds som släpptes i fjol har varit en stor kritikerframgång och valdes till årets bästa album av flera olika progemedier.</p><p>Den virtuosmässiga ensemblen erbjuder musikfans en fantastisk liveupplevelse med sina episka verk. Till jubileumsårets ära turnerar Overhead i Europa under våren och hösten och uppträder nu efter ett långt uppehåll på Esplanadestraden.</p>", "en": "<p>Overhead with their melodic progressive rock lie among the most iconic acts from the Finnish prog scene.</p><p>They will present their latest masterpiece, the captivating double album \"Telepathic Minds\", unanimously praised by critics and even being hailed as the year's best album by many!</p><p>Celebrating their 25th anniversary this year Overhead have toured around Europe playing clubs and festivals in Germany, UK, and France just to name a few.</p><p>The band's live performances are nothing short of legendary, filled with an otherworldly, hypnotic intensity that will leave you spellbound. So don't miss your chance to see Overhead on this tour!</p>" }, "name": { "fi": "Overhead: Telepathic Minds Live - 25th Anniversary Tour – Open Stage", "sv": "Overhead: Telepathic Minds Live - 25th Anniversary Tour – Open Stage", "en": "Overhead: Telepathic Minds Live - 25th Anniversary Tour – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63661/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63660", "has_user_editable_resources": false, "location": null, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:48", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.680935Z", "last_modified_time": "2024-02-06T13:19:14.106891Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 382, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Espan lava" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 151077, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T11:13:10.886956Z", "last_modified_time": "2024-05-10T11:13:10.886970Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746666.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151077/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-10T11:13:10.862954Z", "last_modified_time": "2024-05-29T10:12:49.919562Z", "date_published": null, "start_time": "2024-06-06T13: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": "Los Pan Pan esittää tänä kesänä Espalla leffamusaa & lattareita! Mukana on runsaasti steel bandeille ominaista socaa eli soul calypsoa.", "sv": "Los Pan Pan framför filmmusik och latinska rytmer på Esplanaden i sommar! I dessa hör vi även rikligt med soca, det vill säga soul calypso, som är typiskt för steel band.", "en": "This summer, Los Pan Pan will be playing film scores and latino music on the Espa Stage! Includes a large amount of soca, or soul calypso, which is natural to all steel bands." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/7C2306E82539B416AB4E42F4AFDC0018/Los_Pan_Pan", "sv": "http://www.espanlava.fi/sv/evenemang/event/7C2306E82539B416AB4E42F4AFDC0018/Los_Pan_Pan", "en": "http://www.espanlava.fi/en/events/event/7C2306E82539B416AB4E42F4AFDC0018/Los_Pan_Pan" }, "description": { "fi": "<p>Los Pan Pan esittää tänä kesänä Espalla leffamusaa & lattareita! Mukana on runsaasti steel bandeille ominaista socaa eli soul calypsoa.</p><p>Los Pan Pan on 15-henkinen steel band Kirkkonummelta. Nimensä mukaisesti orkesterissa soitetaan steel paneja, eli pannuja, jotka ovat tyhjistä öljytynnyreistä valmistettuja melodisia lyömäsoittimia. Soittimen alkuperä on Trinidadissa.</p><p>Kirkkonummen Steel Band ry:n edustusorkesteri Los Pan Pania johtaa Satu Jämsä.</p>", "sv": "<p>Los Pan Pan framför filmmusik och latinska rytmer på Esplanaden i sommar! I dessa hör vi även rikligt med soca, det vill säga soul calypso, som är typiskt för steel band.</p><p>Los Pan Pan är ett 15-personers steel band från Kyrkslätt. Som namnet antyder spelar orkestern steel pans, det vill säga pannor som är melodiska slaginstrument framställda av tomma oljetunnor. Instrumentets ursprung finns i Trinidad.</p><p>Representationsorkestern för Kirkkonummen Steel Band ry Los Pan Pan leds av Satu Jämsä.</p>", "en": "<p>This summer, Los Pan Pan will be playing film scores and latino music on the Espa Stage! Includes a large amount of soca, or soul calypso, which is natural to all steel bands.</p><p>Los Pan Pan is a 15-person steel band from Kirkkonummi. As the name suggests, they play steel pans, which are melodic percussion instruments made from empty oil barrels. These instruments originate in Trinidad.</p><p>Satu Jämsä leads Los Pan Pan, the representative orchestra of the Kirkkonummi Steel Band Association.</p>" }, "name": { "fi": "Los Pan Pan – Open Stage", "sv": "Los Pan Pan – Open Stage", "en": "Los Pan Pan – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63660/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63657", "has_user_editable_resources": false, "location": null, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:48", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.680935Z", "last_modified_time": "2024-02-06T13:19:14.106891Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 382, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Espan lava" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 151069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T10:13:04.432059Z", "last_modified_time": "2024-05-10T10:13:04.432071Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751221.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151069/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-10T10:13:04.421878Z", "last_modified_time": "2024-05-29T10:12:49.073788Z", "date_published": null, "start_time": "2024-06-02T11: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": "Eturivin jazzmuusikot Jukka Eskola, Teppo Mäkynen, Petri Puolitaival ja Eero Seppä esittävät uuden kvartettinsa kanssa Espan lavalla originaaleista sävellyksistä koostuvaa monipuolista ja rytmikästä jazzmusiikkia.", "sv": "De framstående jazzmusikerna Jukka Eskola, Teppo Mäkynen, Petri Puolitaival och Eero Seppä framför mångsidig och rytmisk jazzmusik som består av originalkompositioner med sin nya kvartett på Esplanadestraden.", "en": "A new quarter formed by prominent jazz musicians Jukka Eskola, Teppo Mäkynen, Petri Puolitaival and Eero Seppä performs varied jazz rhythms and original compositions on the Espa Stage." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5DCB0DCA11AE49B2233B6AD8CE655365/Eskola_-_Makynen_-_Puolitaival_-_Seppa_", "sv": "http://www.espanlava.fi/sv/evenemang/event/5DCB0DCA11AE49B2233B6AD8CE655365/Eskola_-_Makynen_-_Puolitaival_-_Seppa_", "en": "http://www.espanlava.fi/en/events/event/5DCB0DCA11AE49B2233B6AD8CE655365/Eskola_-_Makynen_-_Puolitaival_-_Seppa_" }, "description": { "fi": "<p>Eturivin jazzmuusikot Jukka Eskola, Teppo Mäkynen, Petri Puolitaival ja Eero Seppä esittävät uuden kvartettinsa kanssa Espan lavalla originaaleista sävellyksistä koostuvaa monipuolista ja rytmikästä jazzmusiikkia.</p><p>Sepän harvemmin kuultu Höfner-basso, Mäkysen hypnoottiset rytmit, sekä kahden puhaltajan taituroimat sävelet luovat värikkään ja kiinnostavan kokonaisuuden.</p><p>Konsertti on osa Suomen Kulttuurirahaston Uudenmaan rahaston tukemaa Meidän Uusimaa -konserttikokonaisuutta.</p>", "sv": "<p>De framstående jazzmusikerna Jukka Eskola, Teppo Mäkynen, Petri Puolitaival och Eero Seppä framför mångsidig och rytmisk jazzmusik som består av originalkompositioner med sin nya kvartett på Esplanadestraden.</p><p>Seppäs mer sällan hörda Höfner-bas, Mäkynens hypnotiska rytmer och tonerna av de två skickliga blåsarna skapar en färggrann och intressant helhet.</p><p>Konserten är en del av konserthelheten Meidän Uusimaa (Vårt Nyland) som stöds av Finska kulturfondens Nylandsfond.</p>", "en": "<p>A new quarter formed by prominent jazz musicians Jukka Eskola, Teppo Mäkynen, Petri Puolitaival and Eero Seppä performs varied jazz rhythms and original compositions on the Espa Stage.</p><p>Seppä’s rare Höfner bass, Mäkynen’s hypnotic rhythms and the two brass players’ virtuosic tunes form into a colourful and interesting experience.</p><p>The concert is part of the Meidän Uusimaa concert series supported by the Finnish Cultural Foundation’s Uusimaa Regional Fund.</p>" }, "name": { "fi": "Eskola - Mäkynen - Puolitaival - Seppä", "sv": "Eskola - Mäkynen - Puolitaival - Seppä", "en": "Eskola - Mäkynen - Puolitaival - Seppä" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63657/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63656", "has_user_editable_resources": false, "location": null, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:48", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.680935Z", "last_modified_time": "2024-02-06T13:19:14.106891Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 382, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Espan lava" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 151068, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T10:13:04.330811Z", "last_modified_time": "2024-05-10T10:13:04.330826Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751220.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151068/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-10T10:13:04.315928Z", "last_modified_time": "2024-05-29T10:12:49.005802Z", "date_published": null, "start_time": "2024-06-02T10: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": "Aktiivisesti ympäri maailmaa konsertoiva ja useasti palkittu Meta4 tuo Espan lavalle laadukasta klassista musiikkia, jossa soivat kulttuurihistoriallisesti arvokkaat viulut ja sellot.", "sv": "Esplanadestraden står värd för ofta prisbelönta Meta4 som aktivt ger konserter runt om i världen. Deras högklassiga klassiska musik klingar av kulturhistoriskt värdefulla violiner och celloer.", "en": "Award-winning and world-renowned Meta4 bring their incredibly capable classical ensemble to the Espa Stage, along with their culturally and historically valuable violins and cellos." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/747BCB8EED7FA5AC91C9B06608C63E11/Meta4", "sv": "http://www.espanlava.fi/sv/evenemang/event/747BCB8EED7FA5AC91C9B06608C63E11/Meta4", "en": "http://www.espanlava.fi/en/events/event/747BCB8EED7FA5AC91C9B06608C63E11/Meta4" }, "description": { "fi": "<p>Aktiivisesti ympäri maailmaa konsertoiva ja useasti palkittu Meta4 tuo Espan lavalle laadukasta klassista musiikkia, jossa soivat kulttuurihistoriallisesti arvokkaat viulut ja sellot.</p><p>Vuonna 2001 perustettu Meta4 on yksi Suomen menestyneimpiä jousikvartetteja. Kvartetin kansainvälinen ura käynnistyi Moskovassa vuonna 2004 järjestetyn Dmitri Šostakovitš -kilpailun voitolla sekä erikoispalkinnolla kilpailun parhaasta Šostakovitš-tulkinnasta.</p><p>Vuonna 2007 Meta4 voitti Wienissä Joseph Haydn -kilpailun, ja sai myöhemmin samana vuonna Opetus- ja kulttuuriministeriöltä Suomi-palkinnon tunnustuksena kansainvälisestä menestyksestään.</p><p>Meta4 toimi BBC:n New Generation Artists -ohjelmassa vuosina 2008–2010 ja vuonna 2013 se palkittiin Jenny ja Antti Wihurin rahaston tunnustuspalkinnolla. Meta4 on Jyväskylä Sinfonian päävierailija syksystä 2022 alkaen.</p><p>Meta4 konsertoi aktiivisesti eri puolilla maailmaa. Viime aikoina kvartetti on vieraillut muun muassa Wiener Konzerthausissa, Lontoon Wigmore Hallissa ja King’s Placessa, Madridin Auditorio Nacionalissa, Pariisissa Cité de la Musiquessa, Tukholman Konserthusissa sekä Lincoln Centerissä, New Yorkissa.</p><p>Kotimaassa kvartetti on toiminut Oulunsalo Soi -musiikkijuhlien taiteellisena johtajana 2008–2011 sekä Kuhmon Kamarimusiikki -festivaalin residenssikvartettina 2008–2017.</p><p>Meta4 on opiskellut Eurooppalaisessa Kamarimusiikkiakatemiassa (ECMA) merkittävimpinä opettajinaan Hatto Beyerle ja Johannes Meissl.</p><p>Kvartetti on myös aktiivinen levyttäjä. Meta4:lta on ilmestynyt Hänssler Classicin julkaisemina Haydnin Jousikvartetot op. 55, 1–3, joka palkittiin arvostetulla Echo Klassik -palkinnolla, Emma-palkittu ja Yleisradion vuoden levyksi valittu Šostakovitšin Jousikvartetot 3, 4 & 7 sekä Béla Bartókin Jousikvartetot 1 & 5. Kvartetilta on myös ilmestynyt Ondinen julkaisemana Kaija Saariahon kamarimusiikkia sekä LP-levyllä Sibeliuksen jousikvartetto ‘Voces Intimae’ (Berliner Meister Schallplatten).</p><p>Brahmsin klarinettikvinteton ja Gérard Pessonin Nebenstückin sisältävä levy äänitetiin yhdessä klarinetisti Reto Bierin kanssa ja julkaistiin ECM-levymerkin alla 2019.</p><p>Bis-levymerkin alla kvartetilta on julkaistu kaksi viimeisintä levytystä: maaliskuussa 2020 julkaistiin Gringolts Quartetin kanssa tehty yhteislevytys Octets, joka sisältää Felix Mendelssohnin ja George Enescun jousioktettisävellyksiä.</p><p>Sebastian Fagerlundin kamarimusiikkia sisältävä Oceano julkaistiin lokakuussa 2021. Tuorein levytys, Krishna Nagarajan sävellyksiä sisältävä Tales from Norway ilmestyi keväällä 2022 Challenge Classicsilta ja oli myös Emma-ehdokkaana vuoden klassisen musiikin levytyksenä.</p><p>Kvartetin jäsenillä on käytössään muun muassa Suomen Kulttuurirahaston omistama Stradivarius-viulu, Signe ja Ane Gyllenbergin säätiön Carlo Bergonzi -viulu sekä Lorenzo Storionin vuonna 1780 Cremonassa rakentama sello.</p><p>Antti Tikkanen – viulu<br>Minna Pensola – viulu<br>Atte Kilpeläinen – alttoviulu<br>Tomas Djupsjöbacka – sello</p><p>Konsertti on osa Suomen Kulttuurirahaston Uudenmaan rahaston tukemaa Meidän Uusimaa -konserttikokonaisuutta.</p>", "sv": "<p>Esplanadestraden står värd för ofta prisbelönta Meta4 som aktivt ger konserter runt om i världen. Deras högklassiga klassiska musik klingar av kulturhistoriskt värdefulla violiner och celloer.</p><p>Meta4 som grundades år 2001 är en av Finlands mest framgångsrika stråkkvartetter. Kvartettens internationella karriär inleddes med en seger i Dmitri Sjostakovitj-tävlingen i Moskva år 2004 samt ett specialpris för tävlingens bästa tolkning av Sjostakovitj.</p><p>År 2007 vann Meta4 Joseph Haydn-tävlingen i Wien, och belönades senare samma år med Undervisnings- och kulturministeriets Finlandspris som erkännande för deras internationella framgång. Meta4 var aktivt i BBC:s New Generation Artists-programmet åren 2008–2010, och år 2013 belönades kvartetten med en premie från Jenny och Antti Wihuris fond. Meta4 är Jyväskylä Sinfonias huvudgäst sedan hösten 2022.</p><p>Meta ger aktivt konserter på olika håll i världen. Under senaste tid har kvartetten bland annat framträtt i Wiener Konzerthaus, Lontoon Wigmore Hall och King’s Place, Auditorio Nacional i Madrid, Cité de la Musique i Paris, Konserthuset i Stockholm samt Lincoln Center i New York. I hemlandet har kvartetten fungerat som konstnärlig ledare för musikfesten Oulunsalo Soi 2008–2011 samt som residenskvartett för kammarmusikfestivalen i Kuhmo 2008–2017. Meta4 har studerat i den Europeiska Kammarmusikakademin (ECMA) med Hatto Beyerle och Johannes Meissl som sina viktigaste lärare.</p><p>Kvartetten spelar även aktivt in skivor. Hänssler Classic har av Meta4 utgivit Haydns stråkkvartetter op. 55, 1–3, som belönades med det ansedda Echo Klassik-priset, Sjostakovitj stråkkvartetter 3, 4 & 7 som belönades med Emma-priset och valdes till årets skiva av Yleisradio samt Béla Bartóks stråkkvartetter 1 & 5. Ondine har också utgivit kammarmusik av Kaija Saariaho av kvartetten samt Sibelius stråkkvartett ‘Voces Intimae’ på LP-skiva (Berliner Meister Schallplatten). Skivan som innehåller Brahms klarinettkvintett och Gérard Pessons Nebenstück spelades in tillsammans med klarinettisten Reto Bier, och utgavs 2019 av skivbolaget ECM. Kvartettens två senaste inspelningar har utgivits av skivbolaget Bis: i mars 2020 utgavs saminspelningen Octets som gjorts tillsammans med Gringolts Quartet och som innehåller kompositioner för stråkoktett av Felix Mendelssohn och George Enescu. Oceano som innehåller kammarmusik av Sebastian Fagerlund utgavs i oktober 2021. Den nyaste inspelningen Tales from Norway som innehåller kompositioner av Krishna Nagaraja utkom våren 2022 på Challenge Classics, och var även Emma-nominerad som årets inspelning av klassisk musik.</p><p>Kvartettens medlemmar har bland annat tillgång till en Stradivarius-violin som ägs av Suomen Kulttuurirahasto, en Carlo Bergonzi-violin som ägs av Signe och Arne Gyllenbergs fond samt en cello byggd av Lorenzo Storioni i Cremona år 1780.</p><p>Antti Tikkanen – violin<br>Minna Pensola – violin<br>Atte Kilpeläinen – altviolin<br>Tomas Djupsjöbacka – cello</p><p>Konserten är en del av konserthelheten Meidän Uusimaa (Vårt Nyland) som stöds av Finska kulturfondens Nylandsfond.</p>", "en": "<p>Award-winning and world-renowned Meta4 bring their incredibly capable classical ensemble to the Espa Stage, along with their culturally and historically valuable violins and cellos.</p><p>Meta4, formed in 2001, is one of the most internationally successful Finnish string quartets. The quartet’s international career began in Moscow after winning the 2004 Dmitri Shostakovich contest as well as the special award for the best Shostakovich interpretation.</p><p>In 2007, Meta4 won the International Joseph Haydn Chamber Music Competition in Vienna, and later that year, received the Finland Prize from the Ministry of Education and Culture in recognition of its international success. Meta4 was selected as a BBC New Generation Artist for 2008–2010 and in 2013 Jenny and Antti Wihuri Foundation awarded the quartet with a special prize in recognition of its work. Meta4 is Jyväskylä Sinfonia’s primary guest starting in autumn 2022.</p><p>Meta4 tours the world actively. Recently, the quartet has performed at Wiener Konzerthaus, Wigmore Hall and King’s Place in London, Auditorio Nacional in Madrid, Cité de la Musique in Paris and Stockholms Konserthus, as well as Lincoln Center in New York. In Finland, the quartet served as the Artistic Director of Oulunsalo Music Festival in 2008–2011 and was the quartet-in-residence at the Kuhmo Chamber Music Festival from 2008-2017.</p><p>Meta4 has studied in the European Chamber Music Academy (ECMA) under Hatto Beyerle and Johannes Meissl.<br>The quartet also releases recordings actively. Meta4 has released recordings on Hänssler Classics: Haydn’s String Quartets op. 55 1–3, which was awarded the esteemed Echo Klassik Award; Shostakovich’s String Quartets 3, 4 & 7, which received the 2012 Record of the Year award from the Finnish Broadcasting Company YLE as well as the Emma prize (the Finnish Grammy), as well as Bartók’s String Quartets 1 & 5. The quartet has also released an album of Kaija Saariaho’s chamber music works via Ondine and an LP of Sibelius’s String Quartet ‘Voces Intimae’ (Berliner Meister Schallplatten).</p><p>An album with Brahms Clarinet Quintet and Gérard Pesson’s Nebenstück together with clarinettist Reto Bieri, was released via ECM Records in 2019. Two of the quartet’s most recent albums were released via Bis Records: their recording of octets by Mendelssohn and Enescu with the Gringolts Quartet was released in March 2020, and October 2021 saw the release of Oceano, Chamber Music by Sebastian Fagerlund. Their latest album, Tales from Norway, which includes compositions by Krishna Nagaraja, was released in spring 2022 via Challenge Classics and was nominated for the Emma award for Classical Album of the Year.</p><p>The members of Meta4 play distinguished instruments, which include a Stradivarius, kindly on loan from the Finnish Cultural Foundation, a Carlo Bergonzi violin, kindly on loan from Signe and Ane Gyllenberg's Foundation and a cello made by Lorenzo Storioni in Cremona in 1780.</p><p>Antti Tikkanen – violin<br>Minna Pensola – violin<br>Atte Kilpeläinen – viola<br>Tomas Djupsjöbacka – cello</p><p>The concert is part of the Meidän Uusimaa concert series supported by the Finnish Cultural Foundation’s Uusimaa Regional Fund.</p>" }, "name": { "fi": "Meta4", "sv": "Meta4", "en": "Meta4" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63656/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh4hxxvvq", "has_user_editable_resources": false, "location": { "id": "tprek:15395", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:16.199535Z", "last_modified_time": "2024-04-09T05:09:28.197140Z", "custom_data": null, "email": "kirjasto.omena@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02230", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1939, "image": 7942, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.740192, 60.160072 ] }, "telephone": { "fi": "+358 9 8165 7723" }, "street_address": { "fi": "Suomenlahdentie 1", "sv": "Finnviksvägen 1", "en": "Suomenlahdentie 1" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "description": null, "name": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66by", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.052436Z", "last_modified_time": "2023-12-13T11:20:12.052454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1532, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Matinkylä", "sv": "Mattby", "en": "Matinkylä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz675q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.530825Z", "last_modified_time": "2023-12-13T11:20:12.530842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 889, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Niittykumpu", "sv": "Ängskulla", "en": "Niittykumpu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1808", "has_user_editable_resources": false, "alt_labels": [ "säveltaide", "musikkonst", "tonkonst" ], "created_time": "2023-08-16T05:19:45.424900Z", "last_modified_time": "2023-08-16T05:19:45.425071Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2558, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikki", "sv": "musik", "en": "music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh4hxxwce/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-29T09:56:49.700968Z", "last_modified_time": "2024-05-29T09:56:49.700992Z", "date_published": null, "start_time": "2024-06-06T15:00:00Z", "end_time": "2024-06-06T15: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": "Flamencokitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin. Olisi hienoa, jos voisit tuoda oman kitarasi. Osallistuminen on maksutonta.", "en": "Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. The course will be held in English and Finnish. Course is free from of charge. " }, "info_url": null, "description": { "fi": "<p>Flamenco kitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin.<br>Olisi hienoa, jos voisit tuoda oman kitarasi, mutta jos et ole vielä ostanut kitaraa, ei hätää! Kirjastossa on joitakin kitaroita, joita voi lainata Helmet-kirjastokortilla. Kurssi pidetään suomeksi ja englanniksi. </p><p>Osallistuminen on maksutonta. </p><p><br>6.6 soittohuone klo 17.00-18.00<br>13.6 soittohuone klo 17.00-18.00<br>20.6 soittohuone klo 16.30-17.30</p><p></p><p>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p><br>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p><br>Session 3: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p>#kitara #musiikki #kurssi #musiikkiryhmä</p>", "en": "<p>Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. It would be great if you could bring your own guitar, but if you haven't bought one yet, don't worry! There are some guitars in the Library that can be borrowed with your Helmet Library card. The course will be held in English and Finnish.</p><p><br>The course is free from of charge!</p><p><br>6.6 Music room at 5pm to 6pm.<br>13.6 Music room at 5pm to 6pm.<br>20.6 Music room at 4.30pm to 5.30pm.</p><p></p><p>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p><br>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p><br>Session 3: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p></p><p>#guitar #music #course #playing</p>" }, "name": { "fi": "Flamencokitaran jatkokurssi", "en": "Flamenco Guitar Course" }, "provider_contact_info": null, "location_extra_info": { "fi": "soittohuone", "en": "music room" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh4hxxvvq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh4hxxv7a", "has_user_editable_resources": false, "location": { "id": "tprek:15395", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:16.199535Z", "last_modified_time": "2024-04-09T05:09:28.197140Z", "custom_data": null, "email": "kirjasto.omena@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02230", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1939, "image": 7942, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.740192, 60.160072 ] }, "telephone": { "fi": "+358 9 8165 7723" }, "street_address": { "fi": "Suomenlahdentie 1", "sv": "Finnviksvägen 1", "en": "Suomenlahdentie 1" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "description": null, "name": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66by", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.052436Z", "last_modified_time": "2023-12-13T11:20:12.052454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1532, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Matinkylä", "sv": "Mattby", "en": "Matinkylä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz675q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.530825Z", "last_modified_time": "2023-12-13T11:20:12.530842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 889, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Niittykumpu", "sv": "Ängskulla", "en": "Niittykumpu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1808", "has_user_editable_resources": false, "alt_labels": [ "säveltaide", "musikkonst", "tonkonst" ], "created_time": "2023-08-16T05:19:45.424900Z", "last_modified_time": "2023-08-16T05:19:45.425071Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2558, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikki", "sv": "musik", "en": "music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh4hxxwce/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-29T09:56:49.539876Z", "last_modified_time": "2024-05-29T09:56:49.539900Z", "date_published": null, "start_time": "2024-06-13T14:00:00Z", "end_time": "2024-06-13T15: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": "Flamencokitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin. Olisi hienoa, jos voisit tuoda oman kitarasi. Osallistuminen on maksutonta.", "en": "Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. The course will be held in English and Finnish. Course is free from of charge. " }, "info_url": null, "description": { "fi": "<p>Flamenco kitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin.<br>Olisi hienoa, jos voisit tuoda oman kitarasi, mutta jos et ole vielä ostanut kitaraa, ei hätää! Kirjastossa on joitakin kitaroita, joita voi lainata Helmet-kirjastokortilla. Kurssi pidetään suomeksi ja englanniksi. </p><p>Osallistuminen on maksutonta. </p><p><br>6.6 soittohuone klo 17.00-18.00<br>13.6 soittohuone klo 17.00-18.00<br>20.6 soittohuone klo 16.30-17.30</p><p></p><p>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p><br>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p><br>Session 3: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p>#kitara #musiikki #kurssi #musiikkiryhmä</p>", "en": "<p>Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. It would be great if you could bring your own guitar, but if you haven't bought one yet, don't worry! There are some guitars in the Library that can be borrowed with your Helmet Library card. The course will be held in English and Finnish.</p><p><br>The course is free from of charge!</p><p><br>6.6 Music room at 5pm to 6pm.<br>13.6 Music room at 5pm to 6pm.<br>20.6 Music room at 4.30pm to 5.30pm.</p><p></p><p>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p><br>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p><br>Session 3: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p></p><p>#guitar #music #course #playing</p>" }, "name": { "fi": "Flamencokitaran jatkokurssi", "en": "Flamenco Guitar Course" }, "provider_contact_info": null, "location_extra_info": { "fi": "soittohuone", "en": "music room" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh4hxxv7a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh4hxxwce", "has_user_editable_resources": false, "location": { "id": "tprek:15395", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:16.199535Z", "last_modified_time": "2024-04-09T05:09:28.197140Z", "custom_data": null, "email": "kirjasto.omena@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02230", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1939, "image": 7942, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.740192, 60.160072 ] }, "telephone": { "fi": "+358 9 8165 7723" }, "street_address": { "fi": "Suomenlahdentie 1", "sv": "Finnviksvägen 1", "en": "Suomenlahdentie 1" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "description": null, "name": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66by", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.052436Z", "last_modified_time": "2023-12-13T11:20:12.052454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1532, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Matinkylä", "sv": "Mattby", "en": "Matinkylä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz675q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.530825Z", "last_modified_time": "2023-12-13T11:20:12.530842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 889, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Niittykumpu", "sv": "Ängskulla", "en": "Niittykumpu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1808", "has_user_editable_resources": false, "alt_labels": [ "säveltaide", "musikkonst", "tonkonst" ], "created_time": "2023-08-16T05:19:45.424900Z", "last_modified_time": "2023-08-16T05:19:45.425071Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2558, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikki", "sv": "musik", "en": "music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh4hxxvvq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh4hxxv7a/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-29T09:56:48.642965Z", "last_modified_time": "2024-05-29T09:56:48.642990Z", "date_published": null, "start_time": "2024-06-06T15:00:00Z", "end_time": "2024-06-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "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": "Flamencokitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin. Olisi hienoa, jos voisit tuoda oman kitarasi. Osallistuminen on maksutonta.", "en": "Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. The course will be held in English and Finnish. Course is free from of charge. " }, "info_url": null, "description": { "fi": "<p>Flamenco kitaran alkeisjatkokurssi Iso Omenan kirjastossa torstaisin.<br>Olisi hienoa, jos voisit tuoda oman kitarasi, mutta jos et ole vielä ostanut kitaraa, ei hätää! Kirjastossa on joitakin kitaroita, joita voi lainata Helmet-kirjastokortilla. Kurssi pidetään suomeksi ja englanniksi. </p><p>Osallistuminen on maksutonta. </p><p><br>6.6 soittohuone klo 17.00-18.00<br>13.6 soittohuone klo 17.00-18.00<br>20.6 soittohuone klo 16.30-17.30</p><p></p><p>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p><br>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p><br>Session 3: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p>#kitara #musiikki #kurssi #musiikkiryhmä</p>", "en": "<p>Early Intermediate Flamenco Guitar Course at Iso Omena Library in Spring 2024. It would be great if you could bring your own guitar, but if you haven't bought one yet, don't worry! There are some guitars in the Library that can be borrowed with your Helmet Library card. The course will be held in English and Finnish.</p><p><br>The course is free from of charge!</p><p><br>6.6 Music room at 5pm to 6pm.<br>13.6 Music room at 5pm to 6pm.<br>20.6 Music room at 4.30pm to 5.30pm.</p><p></p><p>Session 1: Introduction to Flamenco Basics<br> - Overview of Flamenco: Origins and cultural context<br> - Introduction to Flamenco guitar techniques: Rasgueado, Golpe, Alzapúa<br> - Basic hand positioning and posture</p><p><br>Session 2: Palos (Flamenco Styles) - Soleá<br> - Understanding the Soleá rhythm and compás<br> - Basic Soleá chord progressions<br> - Introduction to simple Soleá falsetas (melodic phrases)</p><p><br>Session 3: Putting it All Together - Performance Preparation<br> - Review of previously learned palos and techniques<br> - Integration of different techniques into a mini-performance piece<br>- Tips on stage presence and connecting with the audience</p><p></p><p>#guitar #music #course #playing</p>" }, "name": { "fi": "Flamencokitaran jatkokurssi", "en": "Flamenco Guitar Course" }, "provider_contact_info": null, "location_extra_info": { "fi": "soittohuone", "en": "music room" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh4hxxwce/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63532", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1175, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2023-09-02T04:40:32.318089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1139, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta", "sv": "verkstadsverksamhet", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 150915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-30T14:13:11.478362Z", "last_modified_time": "2024-04-30T14:13:11.478375Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745654.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150915/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T14:13:11.464820Z", "last_modified_time": "2024-05-28T14:12:56.592872Z", "date_published": null, "start_time": "2024-06-10T07:00:00Z", "end_time": "2024-06-12T11: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": "Kesäkurssin aikana koristelemme ja tuunaamme ikioman T-paidan!", "sv": "Under sommarkursen dekorerar och trycker vi en egen t-shirt!", "en": "During the summer course, we will decorate and refine our very own T-shirt!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/00309C38EC4DD7BF151F2B3C08EC2954/Maailman_kaunein_T-paita", "sv": "http://www.vuotalo.fi/sv/evenemang/event/00309C38EC4DD7BF151F2B3C08EC2954/Varldens_vackraste_t-shirt_", "en": "http://www.vuotalo.fi/en/events/event/00309C38EC4DD7BF151F2B3C08EC2954/The_World_s_Prettiest_T_Shirt_" }, "description": { "fi": "<p>Kesäkurssin aikana koristelemme ja tuunaamme ikioman T-paidan!</p><p>Haemme innoitusta luonnosta, erityisesti hyönteisistä. Tutkimme ympäristöä sekä taiteilijan että luonnonystävän silmillä. Kurssin aikana pidämme evästauon joka päivä ulkona sään salliessa. Kolmen kurssipäivän jälkeen kaikilla osallistujilla on fantastinen ja uniikki paita!</p><p>Opetus on pääasiallisesti suomeksi, mutta onnistuu myös ranskaksi ja englanniksi tarvittaessa.<br> <br>Kurssilla jokainen saa uuden valkoisen T-paidan, mutta voit ottaa mukaan tuunattavaksi oman vaalean t-paidan tai vaalean kangaskassin. Mukaan voit tuoda myös pienen lasipurkin (alle 1 dl). Purkin tulee olla tyhjä, puhdas, kannellinen ja ilman etiketin jälkiä.</p><p><b>Muista ottaa mukaan:</b><br>- säähän sopivat vaatteet, joissa on mukava liikkua<br>- päähine ja aurinkorasva<br>- terveellinen ja ravitseva välipala (ei karkkia, sipsejä tai limua)</p><p>Kohderyhmä: 3–6-luokkalaisille<br>Ohjaaja: Chloé Mahy-Hulkko</p><p>Kurssi on osallistujille maksuton.</p><p>Ilmoittaudu mukaan tai kysy lisää: salla.fornaro@hel.fi tai 040 537 1520</p><p>Kesäkurssi kestää kolme päivää. Kokoonnumme 10.- 12.6.2024 klo 10-14 Vuotaloon.</p>", "sv": "<p>Under sommarkursen dekorerar och trycker vi en egen t-shirt!</p><p>Vi hämtar inspiration från naturen, särskilt från insekter. Vi utforskar miljön genom både konstnärens och naturälskarens ögon. Under kursen håller vi varje dag en paus för att äta matsäck utomhus, så länge vädret tillåter. Efter tre dagars kurs kommer alla deltagare att ha en fantastisk och unik t-shirt!</p><p>Undervisningen sker huvudsakligen på finska, men även franska och engelska går bra vid behov.</p><p>Målgrupp: 3–6-klassare<br>Kursen är avgiftsfri för deltagarna.<br>Handledare: Chloé Mahy-Hulkko</p><p>Anmäl dig eller be om mer information: salla.fornaro@hel.fi eller 040 537 1520.</p><p>På kursen får alla en ny vit t-shirt, men du kan ta med en egen ljus t-shirt eller en ljus tygkasse att dekorera. Du kan också ta med en liten glasburk (mindre än 1 dl). Burken ska vara tom, ren, försedd med lock och utan spår av etikett.</p><p><b>Kom ihåg att ta med dig:</b><br>- kläder som är lämpliga för vädret och bekväma att röra sig i<br>- en huvudbonad och solkräm<br>- ett hälsosamt och näringsrikt mellanmål (inget godis, chips eller läsk)</p>", "en": "<p>During the summer course, we will decorate and refine our very own T-shirt!</p><p>We seek inspiration from nature, especially from insects. We study the environment with the eyes of both an artist and a nature lover. During the course, we will take a snack break every day outside, weather permitting. After three course days, all participants will have a fantastic and unique shirt!</p><p>The teaching is mainly in Finnish, but can also be done in French and English if necessary.</p><p>Target group: Grades 3–6<br>The course is free of charge for participants.<br>Instructor: Chloé Mahy-Hulkko</p><p>Sign up or ask for more information: salla.fornaro@hel.fi or +358 40 537 1520.</p><p>In the course, everyone gets a new white T-shirt, but you can bring your own light-coloured T-shirt or tote bag. You can also bring a small glass jar (less than 1 dl). The jar should be empty, clean, with a lid and without any marks of the label.</p><p><b>Remember to bring:</b><br>- Weather-friendly clothing that is comfortable to move around in<br>- Headgear and sunscreen<br>- Healthy and nutritious snack (no candy, crisps or soda)</p>" }, "name": { "fi": "Maailman kaunein T-paita – Kesäkurssi 3–6-luokkalaisille", "sv": "Världens vackraste t-shirt! – Sommarkurs för elever i årskurs 3–6", "en": "The World’s Prettiest T Shirt! – Summer course for grades 3–6" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63532/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63526", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1175, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2023-09-02T04:40:32.318089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1139, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta", "sv": "verkstadsverksamhet", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 150900, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-30T08:13:53.803253Z", "last_modified_time": "2024-04-30T08:13:53.803268Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745678.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150900/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T08:13:53.778286Z", "last_modified_time": "2024-05-28T14:12:55.753318Z", "date_published": null, "start_time": "2024-06-06T10:00:00Z", "end_time": "2024-06-14T12: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 tekemään ihania taidejuttuja Vuotalon pihalle! Kesäpihan taidepajat ovat kaikille avoimia ja maksuttomia, eikä niihin tarvitse ilmoittautua ennakkoon.", "sv": "Kom och gör härliga konstaktiviteter på Nordhusets gård! Sommarträdgårdens konstworkshoppar är öppna för alla och avgiftsfria, och du behöver inte anmäla dig i förväg.", "en": "Come and make wonderful artsy things in Vuotalo’s yard! Art workshops at the summer yard are open to everyone and free of charge, and there is no need to register in advance." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/206B15E9072D5C7FB8AE21CDD34D896E/Kesapihan_taidepajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/206B15E9072D5C7FB8AE21CDD34D896E/Sommartradgardens_konstworkshoppar", "en": "http://www.vuotalo.fi/en/events/event/206B15E9072D5C7FB8AE21CDD34D896E/Art_workshops_at_the_summer_yard" }, "description": { "fi": "<p>Tule tekemään ihania taidejuttuja Vuotalon pihalle! Kesäpihan taidepajat ovat kaikille avoimia ja maksuttomia, eikä niihin tarvitse ilmoittautua ennakkoon.</p><p>Tehdään yhdessä taidetta eri teemoilla ja tekniikoilla. Jos sataa ja myrskyää, työpaja siirtyy Vuotalon aulaan. Työpajoja ohjaa Chloé Mahy-Hulkko.</p><p><b>Taidepajojen aikataulut ja ohjelma</b></p><p><b>torstai 6.6. klo 13–15 <br>Hetkellinen kuva suolalla</b><br>Suolateokset ovat haihtuvia, mutta niistä voi ottaa kuvia omalla kameralla ennen kuin suola sekoittuu ja kuva tuhoutuu. Ei sovi alle 3-vuotiaille.</p><p><b>perjantai 7.6. klo 13–15<br>Lentoon!</b> <br>Taitellaan ja lennätetään paperilennokkeja kierrätyspaperista. Kenen lennokki lentää pisimmän matkan?</p><p><b>torstai 13.6. klo 13–15 <br>Kalliomaalaus portaille</b> <br>Mistä luonnonaineista esivanhemmat saivat maalausväriä?</p><p><b>perjantai 14.6. klo 13–15<br>Makrameen alkeet</b><br>Opetellaan yhdessä punomaan makramee-solmuja.</p>", "sv": "<p>Kom och gör härliga konstaktiviteter på Nordhusets gård! Sommarträdgårdens konstworkshoppar är öppna för alla och avgiftsfria, och du behöver inte anmäla dig i förväg.</p><p>Vi skapar konst tillsammans med hjälp av olika teman och tekniker. Om det regnar och stormar flyttar workshoppen in i Nordhusets foajé. Workshopparna dras av Chloé Mahy-Hulkko.</p><p><b>Konstworkshopparnas program</p><p>torsdag 6.6. kl. 13–15 <br>En ögonblicksbild med salt</b><br>Saltverk är flyktiga, men man kan ta bilder av dem med sin egen kamera innan saltet blandar sig och bilden förstörs. Lämpar sig inte för barn under 3 år.</p><p><b>fredag 7.6. kl. 13–15<br>Vi flyger!</b> <br>Vi viker och flyger med pappersflygplan av återvunnet papper. Vems flygplan når längst?</p><p><b>torsdag 13.6. kl. 13–15 <br>Klippmålning på trappan</b><br> Vi gör en klippmålning på trappan och funderar på vilka naturmaterial våra förfäder använde för att få färg?</p><p><b>fredag 14.6. kl. 13–15<br>Grunderna i makramé</b><br>Tillsammans lär vi oss fläta makraméknutar.</p>", "en": "<p>Come and make wonderful artsy things in Vuotalo’s yard! Art workshops at the summer yard are open to everyone and free of charge, and there is no need to register in advance.</p><p>Let’s make art together with different themes and techniques. If it rains and storms, the workshop moves to the Vuotalo lobby. The workshops are led by Chloé Mahy-Hulkko.</p><p><b>Art workshop programme</p><p>Thursday, 6 June from 1 pm to 3 pm <br>Snapshot with salt</b><br>Salt works are volatile, but you can take pictures of them with your own camera before the salt mixes and the image is destroyed. Not suitable for children under three years of age.</p><p><b>Friday, 7 June from 1 pm to 3 pm<br>To the skies!</b> <br>Folding and flying paper aeroplanes from recycled paper. Whose aeroplane will fly the longest distance?</p><p><b>Thursday, 13 June from 1 pm to 3 pm <br>Rock painting for stairs</b> <br>We will make a rock painting for stairs and talk about what natural materials the ancestors got paint colour from.</p><p><b>Friday, 14 June from 1 pm to 3 pm<br>Macramé basics</b><br>Let’s learn together how to weave macramé nodes.</p>" }, "name": { "fi": "Kesäpihan taidepajat", "sv": "Sommarträdgårdens konstworkshoppar", "en": "Art workshops at the summer yard" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63526/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63525", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:105", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.060968Z", "last_modified_time": "2024-02-06T13:19:14.616316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1318, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Lastentapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1175, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2023-09-02T04:40:32.318089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1139, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta", "sv": "verkstadsverksamhet", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 151024, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-07T12:13:31.300158Z", "last_modified_time": "2024-05-07T12:13:31.300178Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745650.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151024/?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": "2024-05-07T12:13:31.231491Z", "last_modified_time": "2024-05-28T14:12:55.266306Z", "date_published": null, "start_time": "2024-06-04T11: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": "Tule mukaan etsimään ja löytämään aarteita lähiluonnosta! Aarre voi olla melkein mitä tahansa, jokaiselle omanlainen.", "sv": "Kom med och leta efter och hitta skatter i närnaturen! En skatt kan vara nästan vad som helst, det är olika för alla.", "en": "Come along and find treasures from the nearby nature! A treasure can be almost anything, it is unique to everyone." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/95FD486B50C87FFDB7D77753759C1B54/Aarteitani_Suomesta_-loytoretki", "sv": "http://www.vuotalo.fi/sv/evenemang/event/95FD486B50C87FFDB7D77753759C1B54/Mina_skatter_fran_Finland_en_upptacktsresa", "en": "http://www.vuotalo.fi/en/events/event/95FD486B50C87FFDB7D77753759C1B54/My_favourite_Finnish_things_discovery_tour" }, "description": { "fi": "<p>Tule mukaan etsimään ja löytämään aarteita lähiluonnosta! Aarre voi olla melkein mitä tahansa, jokaiselle omanlainen.</p><p>Aarre voi olla käsinkosketeltava. Se voi olla ihan pieni tai suuren suuri. Ehkä löydät maailman hienoimman kepin, näet värikkään sateenkaaren tai kuulet iloista linnunlaulua. Jos maltat lahjoittaa löytösi tai tarinasi, se voi päästä osaksi Aarteitani Suomesta -näyttelyä, joka avautuu Vuotalossa elokuussa.</p><p>Aarteitani Suomesta on lukemiseen innostava taidenäyttely- ja työpajakokonaisuus, joka perustuu <b>Satu Kettusen</b> samannimiseen kuvakirjaan. Kirjan ydinviesti on luontoa arvostava ja moninaisuutta syleilevä. Se kutsuu kaikki äänet mukaan pohtimaan erilaisia näkökulmia liittyen Suomeen, kotiin, ja paikkaan, jossa on hyvä olla. Mikä on sinun aarteesi Suomesta?</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Lähtöpaikka: Vuotalon etupiha<br>Kesto: 1 tunti.</p><p>Löytöretkiä järjestetään myös varhaiskasvatuksen ryhmille:<br>to 23.5. klo 09.15–10.00 <br>ma 27.5. klo 09.15–10.00</p><p>Varhaiskasvatusten ryhmät voivat ilmoittautua mukaan osoitteessa: https://kultus.fi/</p>", "sv": "<p>Kom med och leta efter och hitta skatter i närnaturen! En skatt kan vara nästan vad som helst, det är olika för alla.</p><p>Skatten kan vara något man kan röra vid. Den kan vara liten eller jättestor. Kanske hittar du världens finaste pinne, ser en färgsprakande regnbåge eller hör glad fågelsång. Om du nänns donera ditt fynd eller din berättelse kan den bli en del av utställningen Mina skatter från Finland, som öppnas i Nordhuset i augusti.</p><p>Mina skatter från Finland är en konstutställnings- och workshophelhet som inspirerar till att läsa och som bygger på <b>Satu Kettunens</b> bilderbok med samma namn. Det centrala budskapet i boken är uppskattning av naturen och välkomnande av mångfald. Den bjuder in alla röster att reflektera över olika perspektiv i anknytning till Finland, hemmet och den plats där det är bra att vara. Vilken är din skatt från Finland?</p><p>Fritt inträde, ingen förhandsanmälan.</p><p>Startpunkt: Gården framför Nordhuset <br>Längd: 1 timme</p>", "en": "<p>Come along and find treasures from the nearby nature! A treasure can be almost anything, it is unique to everyone.</p><p>The treasure can be tangible. It can be teeny-tiny or very large. Maybe you’ll find the world’s finest stick, see a colourful rainbow, or hear a joyful bird song. If you can donate your discovery or story, it could become part of the Aarteitani Suomesta exhibition, which opens in Vuotalo in August.</p><p>Aarteitani Suomesta is an art exhibition and workshop ensemble inspiring visitors to read, and it is based on <b>Satu Kettunen’s</b> picture book of the same name. The core message of the book is to appreciate nature and embrace diversity. It invites all voices to reflect on different points of view related to Finland, home, and a good place to be. What is your treasure from Finland?</p><p>Free admission, no advance registration<br>Place of departure: Vuotalo’s front yard</p><p>Duration: 1 hour</p>" }, "name": { "fi": "Aarteitani Suomesta -löytöretki", "sv": "Mina skatter från Finland – en upptäcktsresa", "en": "My favourite Finnish things discovery tour" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63525/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63522", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1175, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2023-09-02T04:40:32.318089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1139, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta", "sv": "verkstadsverksamhet", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 150899, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-30T08:13:53.024477Z", "last_modified_time": "2024-04-30T08:13:53.024499Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745651.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T08:13:52.984025Z", "last_modified_time": "2024-05-28T14:12:54.862990Z", "date_published": null, "start_time": "2024-06-03T07:00:00Z", "end_time": "2024-06-05T11: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": "Kesäkurssin aikana koristelemme ja tuunaamme ikioman T-paidan!", "sv": "Under sommarkursen dekorerar och trycker vi en egen t-shirt!", "en": "During the summer course, we will decorate and refine our very own T-shirt!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A345F99E7B41AD7106609D34D89030D4/Maailman_kaunein_T-paita", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A345F99E7B41AD7106609D34D89030D4/Varldens_vackraste_t-shirt_", "en": "http://www.vuotalo.fi/en/events/event/A345F99E7B41AD7106609D34D89030D4/The_World_s_Prettiest_T_Shirt_" }, "description": { "fi": "<p>Kesäkurssin aikana koristelemme ja tuunaamme ikioman T-paidan!</p><p>Haemme innoitusta luonnosta, erityisesti hyönteisistä. Tutkimme ympäristöä sekä taiteilijan että luonnonystävän silmillä. Kurssin aikana pidämme evästauon joka päivä ulkona sään salliessa. Kolmen kurssipäivän jälkeen kaikilla osallistujilla on fantastinen ja uniikki paita!</p><p>Opetus on pääasiallisesti suomeksi, mutta onnistuu myös ranskaksi ja englanniksi tarvittaessa.</p><p>Kohderyhmä: 1–3-luokkalaisille<br>Ohjaaja: Chloé Mahy-Hulkko<br>Kurssi on osallistujille maksuton.</p><p>Kurssilla jokainen saa uuden valkoisen T-paidan, mutta voit ottaa mukaan tuunattavaksi oman vaalean t-paidan tai vaalean kangaskassin. Mukaan voit tuoda myös pienen lasipurkin (alle 1 dl). Purkin tulee olla tyhjä, puhdas, kannellinen ja ilman etiketin jälkiä.</p><p><b>Muista ottaa mukaan:</b><br>- säähän sopivat vaatteet, joissa on mukava liikkua<br>- päähine ja aurinkorasva<br>- terveellinen ja ravitseva välipala (ei karkkia, sipsejä tai limua)</p><p>Ilmoittaudu mukaan tai kysy lisää: salla.fornaro@hel.fi tai 040 537 1520</p><p>Kesäkurssi kestää kolme päivää. Kokoonnumme 3.- 5.6.2024 klo 10-14 Vuotaloon.</p>", "sv": "<p>Under sommarkursen dekorerar och trycker vi en egen t-shirt!</p><p>Vi hämtar inspiration från naturen, särskilt från insekter. Vi utforskar miljön genom både konstnärens och naturälskarens ögon. Under kursen håller vi varje dag en paus för att äta matsäck utomhus, så länge vädret tillåter. Efter tre dagars kurs kommer alla deltagare att ha en fantastisk och unik t-shirt!</p><p>Undervisningen sker huvudsakligen på finska, men även franska och engelska går bra vid behov.</p><p>Målgrupp: 1–3-klassare<br>Kursen är avgiftsfri för deltagarna.<br>Handledare: Chloé Mahy-Hulkko</p><p>Anmäl dig eller be om mer information: salla.fornaro@hel.fi eller 040 537 1520.</p><p>På kursen får alla en ny vit t-shirt, men du kan ta med en egen ljus t-shirt eller en ljus tygkasse att dekorera. Du kan också ta med en liten glasburk (mindre än 1 dl). Burken ska vara tom, ren, försedd med lock och utan spår av etikett.</p><p><b>Kom ihåg att ta med dig:</b><br>- kläder som är lämpliga för vädret och bekväma att röra sig i<br>- en huvudbonad och solkräm<br>- ett hälsosamt och näringsrikt mellanmål (inget godis, chips eller läsk)</p>", "en": "<p>During the summer course, we will decorate and refine our very own T-shirt!</p><p>We seek inspiration from nature, especially from insects. We study the environment with the eyes of both an artist and a nature lover. During the course, we will take a snack break every day outside, weather permitting. After three course days, all participants will have a fantastic and unique shirt!</p><p>The teaching is mainly in Finnish, but can also be done in French and English if necessary.</p><p>Target group: Grades 1–3<br>The course is free of charge for participants.</p><p>Instructor: Chloé Mahy-Hulkko</p><p>Sign up or ask for more information: salla.fornaro@hel.fi or +358 40 537 1520.</p><p>In the course, everyone gets a new white T-shirt, but you can bring your own light-coloured T-shirt or tote bag. You can also bring a small glass jar (less than 1 dl). The jar should be empty, clean, with a lid and without any marks of the label.</p><p><b>Remember to bring:</b><br>- Weather-friendly clothing that is comfortable to move around in<br>- Headgear and sunscreen<br>- Healthy and nutritious snack (no candy, crisps or soda)</p>" }, "name": { "fi": "Maailman kaunein T-paita – Kesäkurssi 1–3-luokkalaisille", "sv": "Världens vackraste t-shirt! – Sommarkurs för elever i årskurs 1–3", "en": "The World’s Prettiest T Shirt! – Summer course for grades 1–3" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63522/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63551", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 795, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 984, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:52", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.738883Z", "last_modified_time": "2024-02-06T13:19:14.199532Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 618, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39492", "has_user_editable_resources": false, "alt_labels": [ "LAN-events", "local area network parties", "LAN-tapahtumat", "lanit", "verkkopelitapahtumat", "LAN-evenemang" ], "created_time": "2023-08-16T05:11:48.242998Z", "last_modified_time": "2023-08-16T05:11:48.243015Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 673, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lähiverkkotapahtumat", "sv": "LAN-partyn", "en": "LAN parties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 150923, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-02T15:13:44.132228Z", "last_modified_time": "2024-05-02T15:13:44.132246Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749034.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150923/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-02T15:13:44.079763Z", "last_modified_time": "2024-05-28T13:12:40.641164Z", "date_published": null, "start_time": "2024-06-08T10:00:00Z", "end_time": "2024-06-08T15: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": "Stoa täyttyy musiikista, graffititaiteesta ja katutanssista lauantain ilmaistapahtumassa. Mukana huippuluokan breikkareita ja esiintymässä mm. Isaac Sene!", "sv": "Stoa fylls av musik, graffitikonst och streetdance under lördagens gratisevenemang. Breakare i toppklass deltar och bland annat Isaac Sene uppträder!", "en": "Stoa will be buzzing with music, graffiti art and street dance at Saturday’s free event." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7BBF72773CEFB2BCEC181DF72018C919/URB_X_FLOW_MO_ANNIVERSARY", "sv": "http://www.stoa.fi/sv/evenemang/event/7BBF72773CEFB2BCEC181DF72018C919/URB_X_FLOW_MO_ANNIVERSARY_X_STOA", "en": "http://www.stoa.fi/en/events/event/7BBF72773CEFB2BCEC181DF72018C919/URB_X_FLOW_MO_ANNIVERSARY_X_STOA" }, "description": { "fi": "<p>Stoa täyttyy musiikista, graffititaiteesta ja katutanssista lauantain ilmaistapahtumassa. Mukana huippuluokan breikkareita ja esiintymässä mm. Isaac Sene!</p><p>Nyt on aihetta juhlaan! URB festivaali täyttää 25 vuotta ja legendaarinen breikkiryhmä Flow Mo Crew saavuttaa 22 vuoden iän. Tämän kunniaksi yhdistimme voimamme, ja järjestämme ilmaisen tapahtumapäivän Stoassa.</p><p><b>klo 13-18<br>Flow Mo Anniversary Battle Stoan teatterisalissa </b></p><p>Vuosittainen hip hop -kulttuuria juhlistava tapahtumakokonaisuus, Flow Mo Anniversary, kokoaa yhteen 22 vuotta täyttävän breikki crew Flow Mo:n ystävät ja kannattajat kaikkialta maailmasta.</p><p>Flow Mo 22nd Year Anniversary Jam sisältää NHB™ breaking 1VS1:n maailman finaalin.<br>(No Holdin Back -battlekonsepti). Avoin 1vs1 battle, jossa on mukana maailman huippubreikkareita.</p><p><b>klo 14–16<br>Isaac Sene, Ikenna Anyabuike, Out of Sync & Yalla-kollektiivi Stoan aukiolla</b><br> <br>Artistien lisäksi Stoan aukiolla on graffitikolmio-performanssi ja graffitityöpaja sekä nähtävillä Haliz Yosefin taideteos. Tsekkaa myös Itä-Helsingistä kertovat videoteokset Stoan sisätiloissa!</p><p><b>Viikonlopun DJ:t:</b><br>- Skeme Richards (Nostalgia King / Flow Mo) Philadelphia, USA</p><p><b>Kilpailijavieraat:</b><br>- YNOT (USA)<br>- USA-karsinnan voittaja</p><p><b>Tuomarit:</b> <br>- Flow Mo Crew</p><p>Tapahtuma on avoin kaikille katutanssista ja breikkauksesta kiinnostuneille. Ohjelma tarkentuu lähempänä tapahtumapäivää.</p><p>Liput: 0 € katsojat / kilpailijat 10 €</p><p>Lisätietoa aukion ohjelmasta osoitteessa https://kiasma.fi/festivaalit/urb24/</p>", "sv": "<p>Stoa fylls av musik, graffitikonst och streetdance under lördagens gratisevenemang. Breakare i toppklass deltar och bland annat Isaac Sene uppträder!</p><p>Nu finns det anledning att fira! URB-festivalen fyller 25 år och den legendariska breakdancegruppen Flow Mo Crew fyller 22 år. För att fira detta förenade vi våra krafter och ordnar en gratis evenemangsdag i Stoa.</p><p><b>Schema</p><p>klo 13–18<br>Flow Mo Anniversary Battle i Stoas teatersal</b></p><p>Den årliga evenemangshelheten Flow Mo Anniversary firar hiphopkulturen och samlar den 22-åriga breakgruppen Flow Mo:s vänner och fans från hela världen.</p><p>Flow Mo 22nd Year Anniversary Jam inkluderar världsfinalen i NHB™ breaking 1VS1.<br>(battlekonceptet No Holdin Back). En öppen 1vs1 battle med världstoppen inom breakdance.</p><p><b>kl. 14–16<br>Isaac Sene, Ikenna Anyabuike, Out of Sync & Yalla-kollektivet på Stoaplatsen</b></p><p>Utöver artisterna är Stoaplatsen värd för en graffititriangelperformans och en graffitiworkshop samt ett konstverk av Haliz Yosef. Kolla också videoverken om östra Helsingfors inne i Stoa!</p><p><b>Veckoslutets DJ:r:</b><br>- Skeme Richards (Nostalgia King / Flow Mo) Philadelphia, USA</p><p><b>Gästande tävlingsdeltagare:</b><br>- YNOT (USA)<br>- Vinnare av USA-kvalet</p><p><b>Domare:</b><br>- Flow Mo Crew</p><p>Evenemanget är öppet för alla som är intresserade av streetdance och breakdance. Programmet preciseras närmare datumet för evenemanget.</p><p>Biljetter: 0 € åskådare / tävlande 10 €</p><p>Du hittar mer information om programmet på https://kiasma.fi/festivaalit/urb24/</p>", "en": "<p>Stoa will be buzzing with music, graffiti art and street dance at Saturday’s free event.</p><p>Now it is time to celebrate! URB festival turns 25 and the legendary break group Flow Mo Crew turns 22. In honor of this, we joined forces and are organizing a free event at Stoa.</p><p>From 14:00 to 16:30 at Stoa’s yard, the program includes a graffiti workshop and graffiti artists of different generations painting, the music is provided by the Yalla-collective, Ikenna Anyabuike, Out of Sync and Isaac Sene. Outdoors there is artwork by Haliz Yosef and Selma Mataich, and inside of Stoa, you can see Eastern Helsinki themed video works.</p><p>From 16:30 to 18:00, the program continues inside the Stoa theater hall with Flow Mo Crew’s jams, where, among other things, an open 1vs1 breaking competition will be held.</p>" }, "name": { "fi": "URB X FLOW MO ANNIVERSARY", "sv": "URB X FLOW MO ANNIVERSARY X STOA", "en": "URB X FLOW MO ANNIVERSARY X STOA" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63551/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63550", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 795, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 984, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/" }, "description": null, "price": { "fi": "15 € / 11 €", "sv": "15 € / 11 €", "en": "15 € / 11 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150922, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-02T14:12:49.065576Z", "last_modified_time": "2024-05-02T14:12:49.065589Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749149.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150922/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-02T14:12:49.052657Z", "last_modified_time": "2024-05-28T12:12:49.942467Z", "date_published": null, "start_time": "2024-06-06T16: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": "Mitä breakdancelle ja breikkarille tapahtuu, kun lajia lähestytään esitystaiteen keinoin?", "sv": "Vad händer med breakdance och breakaren när man närmar sig genren genom scenkonst?", "en": "What happens to breakdance and the breaker when the dance style is approached by means of performance art?" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5627C8C1372A5F096F01EB42F616906A/Post_Breakers_Revenge", "sv": "http://www.stoa.fi/sv/evenemang/event/5627C8C1372A5F096F01EB42F616906A/Post_Breakers_Revenge", "en": "http://www.stoa.fi/en/events/event/5627C8C1372A5F096F01EB42F616906A/Post_Breakers_Revenge" }, "description": { "fi": "<p>Mitä breakdancelle ja breikkarille tapahtuu, kun lajia lähestytään esitystaiteen keinoin?</p><p>Post Breakers’ Revenge on työryhmä, joka on tutkinut breakdancen liikekielen ja tanssijan identiteetin suhdetta ikääntymiseen. Lavalla esiintyvät työryhmän jäsenet <b>Anniina Sono-Tikka</b> ja <b>Antti Uimonen.</b></p><p>Esitysten jälkeen on keskustelutilaisuus, jossa mukana myös työryhmän kolmas jäsen <b>Dennis Nylund.</b></p><p>Esitykset ovat jatkumoa Post Breakers’ Revenge -ryhmän vuonna 2023 alkaneelle tutkimusprojektille, jonka pohjalta valmistui videohaastatteluiden sarja osana URB 23 -festivaalia.</p>", "sv": "<p>Vad händer med breakdance och breakaren när man närmar sig genren genom scenkonst?</p><p>Post Breakers' Revenge är en arbetsgrupp som har utforskat förhållandet mellan breakdancens rörelsespråk och dansarens identitet i relation till åldrande.</p><p>Medlemmarna i arbetsgruppen <b>Anniina Sono-Tikka</b> och <b>Antti Uimonen</b> uppträder på scenen.</p><p>Uppträdandena följs av ett diskussionsevenemang i vilken arbetsgruppens tredje medlem <b>Dennis Nylund</b> deltar.</p><p>Föreställningarna är en fortsättning på gruppen Post Breakers' Revenge:s forskningsprojekt, som inleddes 2023 och fungerade som grund för en serie videointervjuer inom ramen för URB 23-festivalen.</p>", "en": "<p>What happens to breakdance and the breaker when the dance style is approached by means of performance art?</p><p>Post Breakers’ Revenge is a working group that has studied the relationship of the movement language in breakdance and the dancer’s identity to aging.</p><p>The members of the working group <b>Anniina Sono-Tikka</b> and <b>Antti Uimonen</b> will perform on the stage.</p><p>After the presentations, there will be a discussion session, which will also be attended by the third member of the working group, <b>Dennis Nylund.</b></p><p>The presentations are a continuation of the Post Breakers’ Revenge research project started in 2023, on the basis of which a series of video interviews was completed as part of the URB 23 festival.</p>" }, "name": { "fi": "Post Breakers’ Revenge", "sv": "Post Breakers’ Revenge", "en": "Post Breakers’ Revenge" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63550/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63549", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 795, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 984, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/post-breakers-revenge-3631474/" }, "description": null, "price": { "fi": "15 € / 11 €", "sv": "15 € / 11 €", "en": "15 € / 11 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150921, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-02T14:12:48.885763Z", "last_modified_time": "2024-05-02T14:12:48.885802Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745624.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-02T14:12:48.854956Z", "last_modified_time": "2024-05-28T12:12:49.721184Z", "date_published": null, "start_time": "2024-06-05T16: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": "Mitä breakdancelle ja breikkarille tapahtuu, kun lajia lähestytään esitystaiteen keinoin?", "sv": "Vad händer med breakdance och breakaren när man närmar sig genren genom scenkonst?", "en": "What happens to breakdance and the breaker when the dance style is approached by means of performance art?" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/05683657120CC140899ED2674A41A151/Post_Breakers_Revenge", "sv": "http://www.stoa.fi/sv/evenemang/event/05683657120CC140899ED2674A41A151/Post_Breakers_Revenge", "en": "http://www.stoa.fi/en/events/event/05683657120CC140899ED2674A41A151/Post_Breakers_Revenge" }, "description": { "fi": "<p>Mitä breakdancelle ja breikkarille tapahtuu, kun lajia lähestytään esitystaiteen keinoin?</p><p>Post Breakers’ Revenge on työryhmä, joka on tutkinut breakdancen liikekielen ja tanssijan identiteetin suhdetta ikääntymiseen. Lavalla esiintyvät työryhmän jäsenet <b>Anniina Sono-Tikka</b> ja <b>Antti Uimonen.</b></p><p>Esitysten jälkeen on keskustelutilaisuus, jossa mukana myös työryhmän kolmas jäsen <b>Dennis Nylund.</b></p><p>Esitykset ovat jatkumoa Post Breakers’ Revenge -ryhmän vuonna 2023 alkaneelle tutkimusprojektille, jonka pohjalta valmistui videohaastatteluiden sarja osana URB 23 -festivaalia.</p>", "sv": "<p>Vad händer med breakdance och breakaren när man närmar sig genren genom scenkonst?</p><p>Post Breakers' Revenge är en arbetsgrupp som har utforskat förhållandet mellan breakdancens rörelsespråk och dansarens identitet i relation till åldrande. Medlemmarna i arbetsgruppen <b>Anniina Sono-Tikka</b> och </b>Antti Uimonen</b> uppträder på scenen.</p><p>Uppträdandena följs av ett diskussionsevenemang i vilken arbetsgruppens tredje medlem <b>Dennis Nylund</b> deltar.</p><p>Föreställningarna är en fortsättning på gruppen Post Breakers' Revenge:s forskningsprojekt, som inleddes 2023 och fungerade som grund för en serie videointervjuer inom ramen för URB 23-festivalen.</p>", "en": "<p>What happens to breakdance and the breaker when the dance style is approached by means of performance art?</p><p>Post Breakers’ Revenge is a working group that has studied the relationship of the movement language in breakdance and the dancer’s identity to aging.</p><p>The members of the working group <b>Anniina Sono-Tikka</b> and <b>Antti Uimonen</b> will perform on the stage.</p><p>After the presentations, there will be a discussion session, which will also be attended by the third member of the working group,<b>Dennis Nylund.</b></p><p>The presentations are a continuation of the Post Breakers’ Revenge research project started in 2023, on the basis of which a series of video interviews was completed as part of the URB 23 festival.</p>" }, "name": { "fi": "Post Breakers’ Revenge – Ensi-ilta", "sv": "Post Breakers’ Revenge – Premiär", "en": "Post Breakers’ Revenge – Premier" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63549/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh36jrypu", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p10727", "has_user_editable_resources": false, "alt_labels": [ "kansalaisaktivismi", "kansalaisosallistuminen", "kansalaisten osallistuminen", "medborgaraktivism", "medborgardeltagande", "engagemang", "medborgarinflytande" ], "created_time": "2023-08-16T05:18:07.639076Z", "last_modified_time": "2023-08-16T05:18:07.639094Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1714, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "osallistuminen", "sv": "deltagande", "en": "participation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1810", "has_user_editable_resources": false, "alt_labels": [ "työnteko" ], "created_time": "2023-08-16T05:19:48.526591Z", "last_modified_time": "2023-08-16T05:19:48.526612Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 61, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työ", "sv": "arbete", "en": "work" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api" } ], "created_time": "2024-05-23T13:03:41.317969Z", "last_modified_time": "2024-05-28T11:19:29.162382Z", "date_published": null, "start_time": "2024-06-06T09:00:00Z", "end_time": "2024-06-06T12: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 testaamaan uusia digipalveluja: suomen kielen taitotaso -testiä sekä kiinteistönhoitajan tehtäviin perehdyttävää VR-peliä!", "en": "Welcome to test our new digital services: the Finnish language proficiency test and the VR game that introduces you to the tasks of a property manager! " }, "info_url": { "fi": "https://espoo.fi/digiagenda", "en": "https://www.espoo.fi/en/city-and-decision-making/innovative-espoo/ongoing-development/digital-agenda" }, "description": { "fi": "<p><br>Haluamme Espoossa luoda entistä sujuvampia ja monipuolisempia palveluja. Siksi kokeilemme muun muassa, miten eri tavoin digitaalisuutta voidaan hyödyntää.</p><p>Kaupungin Digiagenda-ohjelman viimeisimmät kokeilut saapuvat tutustuttaviksi ja testattaviksi eri puolille Espoota, kun elämysbussi Välkky lähtee kiertueelle.</p><p>Torstaina 6. kesäkuuta Välkky saapuu Leppävaaraan ja parkkeeraa Sellon kirjaston edustalle klo 12-15. Kokeiluihin voi tutustua myös kirjaston kokoustila Elinassa.</p><p>Testattavana<br>- kiinteistöhoitajan tehtäviin perehdyttävä VR-peli<br>- suomen kielen taitotaso -testi</p><p>Samalla näet, millaista katsomuskasvatusta tukevaa materiaalia syntyi Katso-kokeilussa.</p><p>Tervetuloa!</p><p>Kiertue jatkuu syksyllä.</p>", "en": "<p>We want to create smoother and more diverse services in Espoo. That's why we're experimenting with different ways to use digitalisation. </p><p>The latest experiments from the city's Digital Agenda programme will be presented and tested in different parts of Espoo when the Activity bus Välkky goes on tour. </p><p>On Thursday, 6 June, Välkky will arrive in Leppävaara and park in front of Sello Library from 12.00 to 15.00. The experiments can also be viewed in the library's Elina meeting room. </p><p>You can try out<br>- a VR game that introduces you to the work of a property manager<br>- a language proficiency test</p><p>At the same time, you can see what kind of worldview education materials was created in the Katso experiment.</p><p>Welcome to the tour!</p><p>The tour will continue in the autumn.</p>" }, "name": { "fi": "Digiagendan kokeilut esittäytyvät - tervetuloa testaamaan", "en": "Welcome to test new digital services" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elämysbussi Välkky parkkeeraa Sellon kirjaston edustalle.", "en": "Activity bus Välkky parks in front of Sello Library." }, "provider": { "fi": "Espoon kaupunki", "en": "City of Espoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh36jrypu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63904", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:205", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.162709Z", "last_modified_time": "2024-02-06T13:19:14.678169Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 654, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuva ja media" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:29", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.424657Z", "last_modified_time": "2024-02-06T13:19:13.738407Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1153, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuvat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16327", "has_user_editable_resources": false, "alt_labels": [ "elokuva (taiteet)", "film (konstarter)", "spelfilm" ], "created_time": "2023-08-16T05:17:37.994244Z", "last_modified_time": "2023-08-16T05:17:37.994289Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 351, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvataide", "sv": "filmkonst", "en": "cinema (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:u48040010", "sub_events": [], "images": [ { "id": 151306, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-27T17:12:45.469447Z", "last_modified_time": "2024-05-27T17:12:45.469461Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744063.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151306/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-27T17:12:45.437399Z", "last_modified_time": "2024-05-27T17:12:45.552386Z", "date_published": null, "start_time": "2024-05-29T15: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": "Viimeinen startti on tähtiä täynnä elokuva, jossa vauhtia ja kovia kierroksia riittää halki Ruotsin. Suomenkielinen tekstitys.", "sv": "Den stjärnspäckade komedin ETT SISTA RACE tar oss med fart, fläkt och höga varvtal genom Sverige.", "en": "A street racing legend Dennis who neglected his marriage and 16 year old daughter Hanna. One day he finds out that his daughter will participate in a race with her new boyfriend. To stop Hanna, Dennis and his ex-wife Tove go on a trip." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/093A8F3B33859A9F580E13F17A94DB90/Ett_sista_race_Viimeinen_startti_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/093A8F3B33859A9F580E13F17A94DB90/Ett_sista_race", "en": "http://www.vuotalo.fi/en/events/event/093A8F3B33859A9F580E13F17A94DB90/Ett_sista_race" }, "description": { "fi": "<p>Viimeinen startti on tähtiä täynnä elokuva, jossa vauhtia ja kovia kierroksia riittää halki Ruotsin. Suomenkielinen tekstitys.</p><p>Koko elämänsä lain väärällä puolella elänyt Street racing -legenda Dennis on päättänyt aloittaa vastuullisen ja rauhallisen elämän. Suunnitelmat keskeytyvät pian Dennisin saadessa tietää, että hänen tyttärensä Hanna aikoo osallistua ajokilpailuun uuden poikaystävänsä Charlien kanssa. Pysäyttääkseen Hannan Dennis ja hänen ex-vaimonsa Tove starttaavat takaa-ajoon saadakseen tyttärensä kotiin. Siitä alkaa henkeäsalpaava kisa,</p><p>Ohjaaja on Edward af Sillén ja päärooleissa nähdään David Hellenius, Malin Åkerman, Jonas Karlsson, Johan Glans, Peter Dalle, Johan Ulveson, Ola Forssmed, Elsa Öhrn, Malte Gardinger sekä Sara Soulié. Kesto on 115 min. ja ääniraita on ruotsiksi ja tekstitys suomeksi. Ikäraja on K7 ja pääsy on vapaa.<br>Järjestäjänä Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Den stjärnspäckade komedin ETT SISTA RACE tar oss med fart, fläkt och höga varvtal genom Sverige.</p><p>Filmen berättar historien om streetracing-legenden Dennis, som levt hela sitt liv på fel sida om lagen. Han har nu bestämt sig för att börja leva det ansvarsfulla och stilla livet. Något som snart bryts upp när Dennis får reda på att hans dotter Hanna ska delta i ett race med sin nya kille Charlie. För att stoppa Hanna beger sig Dennis och hans ex-fru Tove ut på en resa för att hämta hem dottern. Det är början på ett hisnande sista race.</p><p>För regin står Edward af Sillén och i huvudrollerna ser vi David Hellenius, Malin Åkerman, Jonas Karlsson, Johan Glans, Peter Dalle, Johan Ulveson, Ola Forssmed, Elsa Öhrn, Malte Gardinger och finlandssvenska Sara Soulié. Filmen är 115 min. lång med svenskt tal och finsk text. Åldersgränsen är 7 och inträdet är fritt.<br>Arrangör är Finlandssvenskt filmcentrum i samarbete med Nordhuset.</p>", "en": "<p>A street racing legend Dennis who neglected his marriage and 16 year old daughter Hanna. One day he finds out that his daughter will participate in a race with her new boyfriend. To stop Hanna, Dennis and his ex-wife Tove go on a trip.</p>" }, "name": { "fi": "Ett sista race (Viimeinen startti) – Onsdagsbio", "sv": "Ett sista race – Onsdagsbio", "en": "Ett sista race – Onsdagsbio" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63904/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh3535gv4", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535hl4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-05-27T10:29:48.445825Z", "last_modified_time": "2024-05-27T10:29:48.445850Z", "date_published": "2024-05-28T10:15:00Z", "start_time": "2024-06-04T12:00:00Z", "end_time": "2024-06-04T14: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 perhepajaan oppimaan virkkausta ja ompelua sekä tutustumaan kirjaston tarjoamiin välineisiin", "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda", "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers" }, "info_url": null, "description": { "fi": "<p>Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan. </p>", "sv": "<p>Välkommen till våra familjeverkstäder för pyssla och lära dig sy, samt bekanta dig med de redskap som biblioteket har att erbjuda, såsom symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Det kostar ingenting att delta. Du kan också ta med dig ditt barn. </p>", "en": "<p>Welcome to our family workshops where you can make crafts, learn to sew, and to learn about our appliences for example sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic, and is free of charge. Children are welcome to join together with their parents. </p>" }, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535gv4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh3535g3u", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535hl4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-05-27T10:29:48.166502Z", "last_modified_time": "2024-05-27T10:29:48.166528Z", "date_published": "2024-05-28T10:15:00Z", "start_time": "2024-08-06T12:00:00Z", "end_time": "2024-08-06T14: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 perhepajaan oppimaan virkkausta ja ompelua sekä tutustumaan kirjaston tarjoamiin välineisiin", "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda", "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers" }, "info_url": null, "description": { "fi": "<p>Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan. </p>", "sv": "<p>Välkommen till våra familjeverkstäder för pyssla och lära dig sy, samt bekanta dig med de redskap som biblioteket har att erbjuda, såsom symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Det kostar ingenting att delta. Du kan också ta med dig ditt barn. </p>", "en": "<p>Welcome to our family workshops where you can make crafts, learn to sew, and to learn about our appliences for example sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic, and is free of charge. Children are welcome to join together with their parents. </p>" }, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535g3u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }