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=677
{ "meta": { "count": 32755, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=678", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=676" }, "data": [ { "id": "kulke:64721", "has_user_editable_resources": false, "location": { "id": "tprek:8740", "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:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:54.264692Z", "last_modified_time": "2025-03-27T09:09:27.443498Z", "custom_data": null, "email": "malmitalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "telephone": { "fi": "+358 9 310 80831" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "description": { "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.", "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.", "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services." }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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:42", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.601092Z", "last_modified_time": "2024-02-06T13:19:13.998256Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1336, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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": "yso:p16919", "has_user_editable_resources": false, "alt_labels": [ "road movies", "tie-elokuvat" ], "created_time": "2023-08-16T05:05:45.968615Z", "last_modified_time": "2023-08-16T05:05:45.968632Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 803, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "road moviet", "sv": "roadmovies", "en": "road films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/event/kino-helios-perhoset-malmitalo-19299291/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152823, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-15T14:14:10.959908Z", "last_modified_time": "2024-10-15T14:14:10.959924Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745751.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152823/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-15T14:14:10.909331Z", "last_modified_time": "2024-10-16T16:15:06.350198Z", "date_published": null, "start_time": "2024-10-23T12: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": "Perhoset on Anna Brotkinin (Aikuiset-sarja) käsikirjoittama moderni ja äkkiväärä komedia ylisuorittavasta milleniaalityttärestä Siiristä (Aksa Korttila) ja tämän yltiöoptimistisesta isästä Petristä (Jani Volanen)." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/027AC75B3C0742D8790DAA090CDA21F3/Perhoset_7_" }, "description": { "fi": "<p>Perhoset on Anna Brotkinin (Aikuiset-sarja) käsikirjoittama moderni ja äkkiväärä komedia ylisuorittavasta milleniaalityttärestä Siiristä (Aksa Korttila) ja tämän yltiöoptimistisesta isästä Petristä (Jani Volanen).</p><p>Kovan paineen alla omaa suuntaansa etsivä tytär ja todellisuutta erittäin tehokkaasti välttelevä isä kohtaavat toisensa pitkästä aikaa kesäyössä Seinäjoen Tangomarkkinoilla. Kotikaupunkiinsa palannut Siiri ei ole enää isän pieni perhonen, vaan uranainen.</p><p>Hän työskentelee äkkipikaisen elinkeinoministerin (Leea Klemola) erityisavustajana yhdessä kaikessa onnistuvan avustajakollegansa (Alex Anton) kanssa. Isä, takavuosien tangoprinssi, etsii edelleen elämänsä kiinnekohtia. Molemmilla menee lujaa, mutta eri tavoin – ja vääjäämättä päin seinää.</p><p>Yhdessä kesäviikonlopussa hommat lähtevät lapasesta. Lopulta kulissit kaatuvat tangon soidessa keskiyön auringossa.<br>Viikonlopun kujanjuoksussa karaokesta aurinkopaneelipuiston kautta broileritehtaalle kohdataan lisäksi herkkähipiäinen liittymämyyjä (Miro Lopperi), itsevaltainen autokauppias (Hannu-Pekka Björkman), hurmaavan ujo terveyskeskuslääkäri (Samuli Niittymäki) ja elämän tähtihetkiä metsästävä tangopariskunta (Jarkko Pajunen ja Katja Küttner).</p><p>Jenni Toivoniemen (Seurapeli) ohjaama Perhoset nähdään elokuvateattereissa kautta maan perjantaina 27. syyskuuta.</p><p>Ikäraja 7<br>Kesto 98 min<br>Ensi-ilta 27.9.<br>Elokuva on tekstitetty suomeksi</p>" }, "name": { "fi": "Perhoset (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64721/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64715", "has_user_editable_resources": false, "location": { "id": "tprek:8740", "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:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:54.264692Z", "last_modified_time": "2025-03-27T09:09:27.443498Z", "custom_data": null, "email": "malmitalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "telephone": { "fi": "+358 9 310 80831" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "description": { "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.", "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.", "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services." }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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:42", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.601092Z", "last_modified_time": "2024-02-06T13:19:13.998256Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1336, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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": "yso:p16919", "has_user_editable_resources": false, "alt_labels": [ "road movies", "tie-elokuvat" ], "created_time": "2023-08-16T05:05:45.968615Z", "last_modified_time": "2023-08-16T05:05:45.968632Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 803, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "road moviet", "sv": "roadmovies", "en": "road films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/event/kino-helios-we-live-in-time-malmitalo-19298283/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152817, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-14T14:15:54.853597Z", "last_modified_time": "2024-10-14T14:15:54.853615Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745781.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152817/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-14T14:15:54.839260Z", "last_modified_time": "2024-10-16T15:15:06.099648Z", "date_published": null, "start_time": "2024-11-15T13:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Brooklyn-elokuvan ohjaajan John Crowleyn uusi elokuva We Live in Time on koskettava draama, joka kertoo sattumanvaraisesti alkaneesta ja vuosikymmenien ajan kestäneestä rakkaustarinasta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0FAF2D7154CB5FA3BC2978A179BB468/We_Live_in_Time_12_" }, "description": { "fi": "<p>Brooklyn-elokuvan ohjaajan John Crowleyn uusi elokuva We Live in Time on koskettava draama, joka kertoo sattumanvaraisesti alkaneesta ja vuosikymmenien ajan kestäneestä rakkaustarinasta.</p><p>Elämänmakuinen tarina seuraa nosteessa olevaa kokkia, Almutia (Florence Pugh), ja hiljattain eronnutta Tobiasta (Andrew Garfield), joiden odottamaton kohtaaminen muuttaa heidän elämänsä suunnan.</p><p>Elokuva kuvaa välähdyksinä Almutin ja Tobiaksen yhteisen elämän merkittävimpiä hetkiä: rakastumista, kodin rakentamista ja perheen perustamista. Se myös käsittelee herkällä otteella suhdetta koettelevaa suurta kriisiä, joka horjuttaa heidän liittonsa perustaa.</p><p>Ajan rajallisuuden keskellä pariskunta oppii arvostamaan jokaista hetkeä, jonka heidän epätavallinen rakkaustarinansa tarjoaa.</p><p>Ikäraja: 12<br>Kesto: 107 min.<br>Ensi-ilta: 25.10.2024<br>Elokuva on tekstitetty suomeksi.</p>" }, "name": { "fi": "We Live in Time (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64715/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64714", "has_user_editable_resources": false, "location": { "id": "tprek:8740", "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:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:54.264692Z", "last_modified_time": "2025-03-27T09:09:27.443498Z", "custom_data": null, "email": "malmitalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "telephone": { "fi": "+358 9 310 80831" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "description": { "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.", "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.", "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services." }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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:42", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.601092Z", "last_modified_time": "2024-02-06T13:19:13.998256Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1336, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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": "yso:p16919", "has_user_editable_resources": false, "alt_labels": [ "road movies", "tie-elokuvat" ], "created_time": "2023-08-16T05:05:45.968615Z", "last_modified_time": "2023-08-16T05:05:45.968632Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 803, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "road moviet", "sv": "roadmovies", "en": "road films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/event/kino-helios-we-live-in-time-malmitalo-19298282/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152815, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-14T14:15:54.105188Z", "last_modified_time": "2024-10-14T14:15:54.105206Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745778.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152815/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-14T14:15:54.084833Z", "last_modified_time": "2024-10-16T15:15:05.105338Z", "date_published": null, "start_time": "2024-11-13T13: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": "Brooklyn-elokuvan ohjaajan John Crowleyn uusi elokuva We Live in Time on koskettava draama, joka kertoo sattumanvaraisesti alkaneesta ja vuosikymmenien ajan kestäneestä rakkaustarinasta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/921C1C5A0166A1921A4ECC3ABF0C9F29/We_Live_in_Time_12_" }, "description": { "fi": "<p>Brooklyn-elokuvan ohjaajan John Crowleyn uusi elokuva We Live in Time on koskettava draama, joka kertoo sattumanvaraisesti alkaneesta ja vuosikymmenien ajan kestäneestä rakkaustarinasta.</p><p>Elämänmakuinen tarina seuraa nosteessa olevaa kokkia, Almutia (Florence Pugh), ja hiljattain eronnutta Tobiasta (Andrew Garfield), joiden odottamaton kohtaaminen muuttaa heidän elämänsä suunnan.</p><p>Elokuva kuvaa välähdyksinä Almutin ja Tobiaksen yhteisen elämän merkittävimpiä hetkiä: rakastumista, kodin rakentamista ja perheen perustamista. Se myös käsittelee herkällä otteella suhdetta koettelevaa suurta kriisiä, joka horjuttaa heidän liittonsa perustaa.</p><p>Ajan rajallisuuden keskellä pariskunta oppii arvostamaan jokaista hetkeä, jonka heidän epätavallinen rakkaustarinansa tarjoaa.</p><p>Ikäraja: 12<br>Kesto: 107 min.<br>Ensi-ilta: 25.10.2024<br>Elokuva on tekstitetty suomeksi.</p>" }, "name": { "fi": "We Live in Time (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64714/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64713", "has_user_editable_resources": false, "location": { "id": "tprek:8740", "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:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:54.264692Z", "last_modified_time": "2025-03-27T09:09:27.443498Z", "custom_data": null, "email": "malmitalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "telephone": { "fi": "+358 9 310 80831" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "description": { "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.", "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.", "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services." }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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:42", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.601092Z", "last_modified_time": "2024-02-06T13:19:13.998256Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1336, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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": "yso:p16919", "has_user_editable_resources": false, "alt_labels": [ "road movies", "tie-elokuvat" ], "created_time": "2023-08-16T05:05:45.968615Z", "last_modified_time": "2023-08-16T05:05:45.968632Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 803, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "road moviet", "sv": "roadmovies", "en": "road films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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/event/kino-helios-we-live-in-time-malmitalo-19298281/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152812, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-14T14:15:52.104570Z", "last_modified_time": "2024-10-14T14:15:52.104591Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745770.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152812/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-14T14:15:52.081731Z", "last_modified_time": "2024-10-16T15:15:02.339162Z", "date_published": null, "start_time": "2024-11-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": "Brooklyn-elokuvan ohjaajan John Crowleyn uusi elokuva We Live in Time on koskettava draama, joka kertoo sattumanvaraisesti alkaneesta ja vuosikymmenien ajan kestäneestä rakkaustarinasta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F19D27281D6C886E7C8B3DE55F5A969B/We_Live_in_Time_12_" }, "description": { "fi": "<p>Brooklyn-elokuvan ohjaajan John Crowleyn uusi elokuva We Live in Time on koskettava draama, joka kertoo sattumanvaraisesti alkaneesta ja vuosikymmenien ajan kestäneestä rakkaustarinasta.</p><p>Elämänmakuinen tarina seuraa nosteessa olevaa kokkia, Almutia (Florence Pugh), ja hiljattain eronnutta Tobiasta (Andrew Garfield), joiden odottamaton kohtaaminen muuttaa heidän elämänsä suunnan.</p><p>Elokuva kuvaa välähdyksinä Almutin ja Tobiaksen yhteisen elämän merkittävimpiä hetkiä: rakastumista, kodin rakentamista ja perheen perustamista. Se myös käsittelee herkällä otteella suhdetta koettelevaa suurta kriisiä, joka horjuttaa heidän liittonsa perustaa.</p><p>Ajan rajallisuuden keskellä pariskunta oppii arvostamaan jokaista hetkeä, jonka heidän epätavallinen rakkaustarinansa tarjoaa.</p><p>Ikäraja: 12<br>Kesto: 107 min.<br>Ensi-ilta: 25.10.2024<br>Elokuva on tekstitetty suomeksi.</p>" }, "name": { "fi": "We Live in Time (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64713/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64726", "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: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:668", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.216840Z", "last_modified_time": "2024-02-06T13:19:17.518130Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 102, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Design ja käsityö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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:p1377", "has_user_editable_resources": false, "alt_labels": [ "design", "planning" ], "created_time": "2023-08-16T05:19:46.752636Z", "last_modified_time": "2023-08-16T05:19:46.752653Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 102, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "suunnittelu", "sv": "planering", "en": "planning and design" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p38064", "has_user_editable_resources": false, "alt_labels": [ "mönster", "kaavat (käsityö)", "kaavoitus (käsityöt)", "mönster (sömnad)", "sömnadsmönster" ], "created_time": "2023-08-16T05:17:06.922446Z", "last_modified_time": "2023-08-16T05:17:06.922466Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 71, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ompelukaavat", "sv": "symönster", "en": "sewing patterns" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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" }, { "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:p40387", "has_user_editable_resources": false, "alt_labels": [ "Pekka Puupää -elokuvat", "Träskalle och Stumpen-filmer", "Pekka and Pätkä films", "Pekka ja Pätkä movies", "Pete and Runt films" ], "created_time": "2024-06-13T04:40:25.922251Z", "last_modified_time": "2024-08-24T04:41:34.223997Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 163, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "Pekka ja Pätkä -elokuvat", "sv": "Kalle Träskalle och Stumpen-filmer", "en": "Pekka ja Pätkä films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6455", "has_user_editable_resources": false, "alt_labels": [ "design", "design", "design" ], "created_time": "2023-08-16T05:18:25.621979Z", "last_modified_time": "2023-08-16T05:18:25.621998Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 158, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "muotoilu", "sv": "formgivning", "en": "design (artistic creation)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152828, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-16T13:16:57.507219Z", "last_modified_time": "2024-10-16T13:16:57.507249Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759356.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152828/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-16T13:16:57.452689Z", "last_modified_time": "2024-10-16T13:16:57.634130Z", "date_published": null, "start_time": "2024-10-27T10:00:00Z", "end_time": "2024-10-27T16: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": "Tarvitseeko yhteisösi penkkiä? Oletko kyllästynyt siihen, että missään ulkona ei pysty istumaan? Tule tekemään penkki kanssamme!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/ED37E5D1807031620119F2FB34E19D5D/Penkkityopaja" }, "description": { "fi": "<p>Tarvitseeko yhteisösi penkkiä? Oletko kyllästynyt siihen, että missään ulkona ei pysty istumaan? Tule tekemään penkki kanssamme!</p><p>Tarvitseeko yhteisösi penkkiä? Oletko kyllästynyt siihen, että missään ulkona ei pysty istumaan? Tule tekemään penkki kanssamme!</p><p>Arkkitehtuurimuseon ja Designmuseon Arkkitehtuuria laatikon ulkopuolella -työryhmä kutsuu sinut Penkkipajaan lauantaina 26.10. sekä sunnuntaina 27.10. Stoan aukiolle Itäkeskukseen.</p><p>Penkkipaja on turvallinen tila kokeiluun, hauskanpitoon, rakenteluun sekä maalaamiseen yhdessä. Viikonlopun aikana tapaamme Stoassa ja nikkaroimme yhteisiä penkkejä Arkkitehtuuria laatikon ulkopuolella -työryhmän opastuksella.</p><p>Tarjoamme muutaman mallipenkin, josta voit valita, tai voit kokeilla rakentaa itse vaikka pöydän tai kirjahyllyn. Työpajan lopussa osallistujat vievät yhteisiä penkkejä haluamiinsa paikkoihin.</p><p>Työpaja on avoinna lauantaina 26.10. klo 10–16 sekä sunnuntaina 27.10. klo 12–18. Olet tervetullut osallistumaan niin pitkään kuin haluat.</p><p>Penkkipaja on Arkkitehtuurimuseon ja Designmuseon Arkkitehtuuria laatikon ulkopuolella -hankkeen huipentuma. Hankkeen tavoitteena on oppia tapoja, joilla museot voisivat tehdä yhteistyötä yhteisöjen kanssa museon seinien ulkopuolella. Museot järjestivät avoimen haun, jonka kautta valitsivat työryhmän johtamaan hanketta. Hanketta rahoittaa Museovirasto.</p><p>Paikka: Stoan Musiikkisali</p>" }, "name": { "fi": "Penkkityöpaja – Stoa 40! Arkkitehtuuria laatikon ulkopuolella" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64726/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi4nk4cka", "has_user_editable_resources": false, "location": { "id": "tprek:72384", "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-15T18:15:26.587023Z", "last_modified_time": "2024-02-06T14:10:46.784110Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 1, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.656307, 60.149048 ] }, "telephone": null, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://lippulaiva.fi/", "sv": "https://lippulaiva.fi/hem/", "en": "https://lippulaiva.fi/home/" }, "description": { "fi": "Lippulaiva on Espoonlahdessa sijaitseva kauppakeskus. Lähes100 liikettä, kahvilaa, ravintolaa ja palvelua.", "sv": "Lippulaiva är ett köpcentrum i Esboviken. I köpcentret finns ett ca 100 butiker, restauranger, kaféer och övriga tjänster.", "en": "Lippulaiva is a shopping centre located in Espoonlahti in Espoo. Nearly 100 shops, restaurants, cafés and a variety of services." }, "name": { "fi": "Lippulaiva", "sv": "Lippulaiva", "en": "Lippulaiva" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:72384/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9505, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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" } ], "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:sito", "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-09-06T08:53:44.265010Z", "last_modified_time": "2024-10-16T11:49:01.308089Z", "date_published": null, "start_time": "2024-10-17T11:00:00Z", "end_time": "2024-10-17T14: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": "Rekrytointitapahtuma kauppakeskus Lippulaivassa", "sv": "Rekryteringevenemang i Lippulaiva", "en": "Recruitment event in Lippulaiva Mall" }, "info_url": null, "description": { "fi": "<p>Lämpimästi tervetuloa nuorten rekrytointitapahtumaan!</p><p>Tapahtuma on tarkoitettu alle 30-vuotiaille nuorille. Tapahtumassa on mahdollisuus tavata työnantajia, joilla on tarjota töitä nuorille.</p><p>Tapahtumaan osallistuu useiden toimialojen työnantajia ja voit kierrellä tapahtumassa vapaasti ja jutella työnantajien kanssa, joilla on sinua kiinnostavia työpaikkoja.</p><p>Tapahtumaan osallistuu työnantajia useilta eri aloilta: kaupanala, turvallisuusala, myyntityö, horeca, rakennusala, kiinteistöhuolto ja logistiikka. Työnantajat:</p><p>- Aldeko</p><p>- Alko</p><p>- Attendo</p><p>- Barona Rakennus Oy</p><p>- Chitir Chicken</p><p>- Espoon kaupunki</p><p>- Espresso House</p><p>- Fitness24Seven</p><p>- Henkilöstöpalvelu Heimo</p><p>- JobNord</p><p>- Kaveriontti</p><p>- Mehiläinen</p><p>- Menevä</p><p>- Nordjobb</p><p>- Raflarekry / Pancho Villa</p><p>- Ramudden</p><p>- Reila</p><p>- Sodexo</p><p>- Staffpoint</p><p>- TalentFlow</p><p>- Tapiolan Lämpö</p><p>- Trainers' House</p><p>- Vireko</p><p>- Worker.</p><p>Lista päivittyy.</p><p>Voit ottaa CV:n mukaan, mutta se ei ole välttämätön. Tapahtuma on maksuton ja siihen ei tarvitse ilmoittautua.</p><p>Tilaisuus järjestetään yhteistyössä CityConin, Ohjaamotalon ja Työllisyys Espoon kanssa.</p><p>Tapahtumassa arvotaan palautteen antaneiden kesken JBL Bluetooth-kaiutin. Arvonta ja palkinnon luovutus tapahtuu paikan päällä tilaisuuden päätyttyä. Arvonnan säännöt nähtävillä tapahtumassa.</p><p><br></p><p>Tervetuloa löytämään työmahdollisuuksia!</p><p><strong>Paikka: Lippulaivan tapahtuma-aukio, 2. kerros S-pankin ja Lindexin välissä.</strong></p><p>#SinunTyösiPuolella</p>", "sv": "<p>Evenemanget är på finska. Läs mer om evenemanget på finska.</p><p>#FörDittArbete</p>", "en": "<p>The event is intended for people under 30 years of age. At the event, there is an opportunity to meet employers who have jobs available for young people. Event is mainly in Finnish.</p><p>Employers from various sectors will participate in the event, and you can freely explore the event and talk to employers offering jobs that interest you.</p><p>Employers from a variety of fields will be present: retail, security, sales, the hotel and catering industry, construction, property maintenance, and logistics. Employers include:</p><ul><li>Aldeko</li><li>Alko</li><li>Barona Rakennus Oy</li><li>Chitir Chicken</li><li>City of Espoo</li><li>Espresso House</li><li>Fitness24Seven</li><li>Henkilöstöpalvelu Heimo</li><li>Kaveriontti</li><li>Mehiläinen</li><li>Menevä</li><li>Raflarekry / Pancho Villa</li><li>Ramudden</li><li>Reila</li><li>Sodexo</li><li>Staffpoint</li><li>TalentFlow</li><li>Tapiolan Lämpö</li><li>Trainers' House</li><li>Vireko</li><li>Worker.</li></ul><p>The list is being updated.</p><p>You can bring your CV, but it is not required. The event is free, and no registration is needed.</p><p>The event is organized in collaboration with CityCon, Ohjaamotalo, and Työllisyys Espoo.</p><p>Welcome to explore job opportunities!</p><p><strong>Location: Lippulaiva event square, 2nd floor, between Prisma and Lindex.</strong></p><p>#YourWorkIsOurWork</p>" }, "name": { "fi": "Nuorten rekrytapahtuma", "sv": "Työnantajatreffit rekryteringevenemang", "en": "Recruitment event for youth and young adults" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lippulaivan tapahtuma-aukio, 2. kerros S-pankin ja Lindexin välissä.", "sv": "Lippulaiva, 2. våningen.", "en": "Lippulaiva 2. floor." }, "provider": { "fi": "Ohjaamotalo, CityCon, Työllisyys Espoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4nk4cka/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjivuuk7m", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "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-15T16:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "telephone": { "fi": "+358 9 8163 5097" }, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "description": null, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ky", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.123308Z", "last_modified_time": "2023-12-13T11:20:12.123326Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2428, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Soukka", "sv": "Sökö", "en": "Soukka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66mq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.137750Z", "last_modified_time": "2023-12-13T11:20:12.137771Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3078, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Finnoo", "sv": "Finno", "en": "Finnoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.364884Z", "last_modified_time": "2023-12-13T11:20:12.364908Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2667, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaitaa", "sv": "Kaitans", "en": "Kaitaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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" }, { "id": "yso:p5121", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:37.715031Z", "last_modified_time": "2023-08-16T05:19:37.715048Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 777, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "näyttelyt", "sv": "utställningar", "en": "exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-14T10:53:09.603046Z", "last_modified_time": "2024-10-16T10:05:27.025811Z", "date_published": null, "start_time": "2024-11-06T06:00:00Z", "end_time": "2024-11-17T18: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 katsomaan \"Hello World\"-taidenäyttelyä Salonkiin 6.-17.11.24", "sv": "Välkommen till konstutställningen ”Hello World” i Salonki 6.-17.11.24", "en": "Welcome to the \"Hello World\" art exhibition in Salonki 6.-17.11.24" }, "info_url": null, "description": { "fi": "<p>Hei! Olen Rasvan ja tämä on ensimmäinen näyttelyni ”Hello World”.</p><p><br></p><p>Työni vievät sinut matkalle havaitsemisen syvyyksiin ja ne heijastavat sekä nähtyä että näkymätöntä maailmaa. Piirrosteni ja maalausteni kautta kutsun sinut kyseenalaistamaan sen, mitä näet ja mihin uskot.</p><p><br></p><p>Voit ajatella tätä henkilökohtaisena ”Hello, Kitty” -hetkenäni - toivottavasti ilman söpöyden ylikuormitusta. Joten sukelletaanpa mukaan ja katsotaan, saanko sinut ihastumaan.</p><p><br></p><p>Olen kiitollinen tästä mahdollisuudesta Espoon kaupungille ja Lippulaivan kirjastolle.</p><p><br></p><p>Kurkkaa tästä joitakin töitäni: <a href=\"https://rasvan.carrd.co/\">https://rasvan.carrd.co/</a></p><p><br></p><p>Kiitos.</p>", "sv": "<p>Hej på er! Jag heter Rasvan och det här är min första utställning, ”Hello World”.</p><p><br></p><p>Mitt konstnärskap är en resa in i perceptionens djup, som speglar både den synliga och den osynliga världen. Genom mina teckningar och målningar inbjuder jag dig att ifrågasätta vad du ser och vad du tror.</p><p><br></p><p>Se det som mitt personliga ”Hello, Kitty”-ögonblick - förhoppningsvis utan att det blir för gulligt. Så låt oss dyka in och se om jag kan få dig att spinna av förtjusning.</p><p><br></p><p>Jag är tacksam för den här chansen till Esbo stad och Lippulaiva biblioteket.</p><p><br></p><p>Om du är nyfiken, här är några av mina arbeten: <a href=\"https://rasvan.carrd.co/\">https://rasvan.carrd.co/</a></p><p><br></p><p>Tack till er alla.</p>", "en": "<p>Hey there! I'm Rasvan and this is my first exhibition, \"Hello World\".</p><p>My work is a journey into the depths of perception, reflecting both the seen and the unseen world. Through my drawings and paintings, I invite you to question what you see and what you believe.</p><p>Think of it as my personal “Hello, Kitty” moment - hopefully without the cuteness overload. So let's dive in and see if I can make you purr with delight.</p><p>I am grateful for this chance to Espoo City and to Event coordinator Niina Bruun from Lippulaiva library.</p><p>If you're curious, here is some of my work: <a href=\"https://rasvan.carrd.co/\">https://rasvan.carrd.co/</a></p><p>Thank you.</p>" }, "name": { "fi": "”Hello World” - Rasvan Constantinescun taidenäyttely", "sv": "”Hello World” - konstutställning av Rasvan Constantinescu", "en": "\"Hello World\" - art exhibition by Rasvan Constantinescu" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjivuuk7m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agibyeqfz4", "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:p2630", "has_user_editable_resources": false, "alt_labels": [ "subject teaching", "aineenopetus", "aineopetus", "ämnesundervisning", "instruction", "teaching", "opettaminen" ], "created_time": "2023-08-16T05:19:46.234579Z", "last_modified_time": "2023-08-16T05:19:46.234597Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1529, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "opetus", "sv": "undervisning", "en": "teaching and instruction" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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:p556", "has_user_editable_resources": false, "alt_labels": [ "språk (språkvetenskap)", "kielet", "kieli (kielitiede)", "språk (typer)", "språket" ], "created_time": "2023-08-16T05:19:47.449652Z", "last_modified_time": "2023-08-16T05:19:47.449670Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3855, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kieli ja kielet", "sv": "språk", "en": "languages" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibyeqg44/?format=api" }, "event_status": "EventCancelled", "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": [ { "id": 151467, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-15T12:54:12.340662Z", "last_modified_time": "2024-06-15T12:54:12.340682Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielitupa.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kielitupa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151467/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-15T12:54:24.676140Z", "last_modified_time": "2024-10-15T14:28:54.534112Z", "date_published": null, "start_time": "2024-10-17T11:00:00Z", "end_time": "2024-10-17T13: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": "Kielituvassa voit saada opintoneuvontaa. Opettaja \nauttaa sinua löytämään sopivan suomen kielen kurssin.", "sv": "På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.", "en": "In Kielitupa you can get study counselling. The teacher will \nhelp you to find the right Finnish course." }, "info_url": null, "description": { "fi": "<p>Kielituvassa voit saada opintoneuvontaa. Opettaja <br>auttaa sinua löytämään sopivan suomen kielen kurssin.<br></p>", "sv": "<p>På Kielitupa kan du få studievägledning. Läraren hjälper dig att hitta en lämplig lämplig kurs i finska språket.<br></p>", "en": "<p>In Kielitupa you can get study counselling. The teacher will <br>help you to find the right Finnish course.<br></p>" }, "name": { "fi": "Kielitupa - ohjausta ja neuvontaa suomenkielen opiskeluun", "sv": "Kielitupa handledning och råd om hur man lär sig finska", "en": "Kielitupa - guidance and tips for Finnish studies" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider": { "fi": "Espoon työväenopisto", "en": "Espoo adult education centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agibyeqfz4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi32pxdt4", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "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-15T16:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "telephone": { "fi": "+358 9 8163 5097" }, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "description": null, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ky", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.123308Z", "last_modified_time": "2023-12-13T11:20:12.123326Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2428, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Soukka", "sv": "Sökö", "en": "Soukka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66mq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.137750Z", "last_modified_time": "2023-12-13T11:20:12.137771Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3078, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Finnoo", "sv": "Finno", "en": "Finnoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.364884Z", "last_modified_time": "2023-12-13T11:20:12.364908Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2667, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaitaa", "sv": "Kaitans", "en": "Kaitaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-04T12:35:02.564859Z", "last_modified_time": "2024-10-15T10:12:56.306978Z", "date_published": null, "start_time": "2024-10-21T15:00:00Z", "end_time": "2024-10-21T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kirjailija Johanna Venho haastattelee Anna-Riikka Carlsonia kirjan synnyn matkasta. Tervetuloa!" }, "info_url": null, "description": { "fi": "<p>Esikoiskirjailija Anna-Riikka Carlson</p><p>Haastattelijana kirjailija Johanna Venho</p><p><br></p><p><strong>Kolmen kirjailijan kohtaaminen</strong></p><p>Kohtaa ja koe ilta rakastetun kirjailijan Eevan Kilven arvokkaan ja merkityksellisen elämäntyön äärellä. ’Joskus käy niin, että kun ihmiset kohtaavat, he jäävät toisiinsa heti eivätkä katoa toisiltaan koskaan,’ kirjoittaa esikoiskirjailija Anna-Riikka Carlson, Rakas Eeva Kilpi – Nämä juhlat jatkuvat vielä, kirjan ensilehdellä. Kaunokirjalliseen muotoon kirjoitettu tietokirja kertoo 96-vuotiaan kirjailija Eeva Kilven elämästä, elämän rajallisuudesta, kirjallisuuden voimasta sekä rajat ylittävästä ystävyydestä. Kirjailija Johanna Venho haastattelee Anna-Riikka Carlsonia kirjan synnyn matkasta.</p><p> </p><p>Kirjailijat jakavat muistoja kohtaamisista suomalaisen kirjallisuuden klassikon Eeva Kilven ja hänen vuosikymmeniin ulottuvan tuotantonsa äärellä. Eeva Kilpi vaikutti kirjoittamalla. Miten edellä aikaansa Kilpi on ollut kirjoittaessaan naisen aseman ja seksuaalisuuden, luonnossuojelun, eläinten oikeuksien sekä evakkokokemusten vaikutusten teemoissa. Miten yhteen elämään voikaan mahtua niin paljon elämää, edistyksellistä näkemistä, mutta myös monia kipeitä ja kauniita kerroksia. Saamme kuulla tilaisuudessa myös Eeva Kilven runoja. </p><p><br></p><p>Tilaisuudessa on mahdollisuus ostaa kirjailijoiden uusimmat teokset.</p><p> </p><p><strong>Järjestäjinä: Espoon Kirjailijat ja Espoon kaupunginteatterin kannatusyhdistys.</strong></p><p><br></p><p>Rakas Eeva Kilpi – Nämä juhlat jatkuvat vielä (WSOY, 2024) teos on kirjailija Anna-Riikka Carlsonin esikoiteos. Kaikki alkaa siitä, kun kustantaja Anna-Riikka Carlson aloittaa säännölliset vierailut kirjailija Eeva Kilven luona. Alkaa kahden eri sukupolven naisen ystävyys, jonka ylläpitävänä voimana on rakkaus kirjallisuuteen ja elämään. Nämä juhlat jatkuvat vielä kertoo ystävysten sielukkaista kohtaamisista ja Eeva Kilven monivaiheisesta, pitkästä elämästä.</p><p>Anna-Riikka Carlson on WSOY:n kotimaisen kirjallisuuden kustantaja, joka on toiminut monissa kirja-alan luottamustehtävissä. Hän uskoo, että kirjallisuus vaikuttaa siihen, miten me puhumme toisillemme ja toisistamme.</p><p>Johanna Venho on palkittu kirjailija ja runoilija, joka kirjoittaa sekä aikuisille että lapsille. Sylvi Kekkosesta kertovalla romaanillaan Venho oli ehdolla Finlandia-palkinnon saajaksi (2019). Hän on kirjoittanut myös elämäkertateokset Anne Brunilasta ja Martti Suosalosta. Kotimatkoja Mari Leppäsen kanssa (2024) kertoo omannäköiseen naisen elämään kasvamisesta, ajan virroista ja vastavirroista, yhteisöstä ja sen merkityksestä. </p>", "sv": "<p>.</p>", "en": "<p>.</p>" }, "name": { "fi": "Rakas Eeva Kilpi. Nämä juhlat jatkuvat vielä- Kirjailijavieraana Anna-Riikka Carlson" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi32pxdt4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64681", "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: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:669", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.230765Z", "last_modified_time": "2024-02-06T13:19:17.537912Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 339, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut kulttuuritapahtumat (monitaide)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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: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" }, { "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": 152822, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-15T09:15:02.066913Z", "last_modified_time": "2024-10-15T09:15:02.066930Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759200.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152822/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-15T09:15:02.017355Z", "last_modified_time": "2024-10-15T09:15:02.173282Z", "date_published": null, "start_time": "2024-10-25T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa moniaistiseen työpajaan, joka vie hapanjuurileivonnan maailmaan ja sen rauhoittavaan prosessiin kehollisen työskentelyn ja leivonnan merkeissä." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/60A5B2FB4E1E7F7D815A7C79CCA7CD36/Taivu_kuin_taikina" }, "description": { "fi": "<p>Tervetuloa moniaistiseen työpajaan, joka vie hapanjuurileivonnan maailmaan ja sen rauhoittavaan prosessiin kehollisen työskentelyn ja leivonnan merkeissä.</p><p>Kolmetuntisen työpajan aikana valmistamme yhdessä paistovalmiit hapanjuuritaikinat. Leipomisen lomassa teemme oman parin kanssa leikkimielisiä kehollisia harjoitteita lattiatasossa. Harjoitteissa keskitymme olemiseen,<br>kuuntelemiseen, keholliseen tutkiskeluun ja venyttelyyn. Taikinaa muokatessa pyrimme asettumaan taikinamaiseen tilaan, jossa on mahdollista muodostaa sitkoa, laajeta, kohota ja kehittyä.</p><p>Lopuksi saatte mukaanne leipomanne leivän kotona paistettavaksi.</p><p>Osa työpajan leivistä paistetaan lauantaiaamuna 26.10. Stoan 40-vuotisjuhlabrunssille.</p><p>Pukeutukaa työpajaan mukaviin ja joustaviin vaatteisiin.</p><p>Maksuttomaan työpajaan ilmoittaudutaan ja osallistutaan pareittain.</p><p>Työpajan kesto on 3 tuntia.</p><p>Työpajat ovat suomenkielisiä, mutta käännämme tarvittaessa olennaisimman englanniksi. Pyydämme osallistujia pitämään puhelimet sivussa työpajan ajan.</p><p>Kanssataipujat Elina Rantasuo ja Sanna Ritvanen.</p><p>Ilmoittautumiset ja tiedustelut: arna.tulipaa@hel.fi</p><p>Paikka: Stoa, Itäkeskuksen kirjasto, Kanerva-kokoustila</p>" }, "name": { "fi": "Taivu kuin taikina – Stoa 40!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64681/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjhm4bro4", "has_user_editable_resources": false, "location": { "id": "tprek:15311", "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:05.278840Z", "last_modified_time": "2024-04-09T05:09:27.677777Z", "custom_data": null, "email": "kirjasto.tapiola@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1742, "image": 7887, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.804646, 60.178085 ] }, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84850" }, "description": null, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65fm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.825528Z", "last_modified_time": "2023-12-13T11:20:11.825556Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1356, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Tapiola", "sv": "Hagalund", "en": "Tapiola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9505, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p14710", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:05:27.253448Z", "last_modified_time": "2023-08-16T05:05:27.253465Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1102, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "satutunnit", "sv": "sagotimmar", "en": "story hours" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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" }, { "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" }, { "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": 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:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-10-10T12:05:40.987514Z", "last_modified_time": "2024-10-15T07:18:38.826802Z", "date_published": "2024-10-10T11:56:00Z", "start_time": "2024-10-28T12:00:00Z", "end_time": "2024-11-01T18: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 kuuntelemaan sopivan kauheita satuja!" }, "info_url": null, "description": { "fi": "<p>Tiesitkö, että Tapiolan kirjastossa on mystinen kokoushuone: <strong>Koivu</strong>, johon normaalisti vain henkilökunta pääsee?</p><p>Mitä siellä tapahtuu?</p><p>Miltä siellä näyttää?</p><p>Asuuko siellä kirjaston kummitus?</p><p><strong>SINÄ PÄÄTÄT!</strong></p><p>Tule koristelemaan kokoushuone Koivu Halloween-teemaiseksi!</p><p><strong>Koristelu tapahtuu maanantaina 28.10.2024 klo 14-18:00. Tervetuloa!</strong></p><p><br></p><p>Huone on avoinna kaikille kiinnostuneille koko halloween-viikon!</p><p>#halloween</p>" }, "name": { "fi": "Koivun kauhistus" }, "provider_contact_info": null, "location_extra_info": { "fi": "Koivu" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjhm4bro4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63137", "has_user_editable_resources": false, "location": { "id": "tprek:7258", "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:ullanlinna", "municipality": "Helsinki", "name": { "fi": "Ullanlinna", "sv": "Ulrikasborg" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } } ], "created_time": "2023-08-15T08:12:16.221655Z", "last_modified_time": "2024-02-06T13:09:51.033692Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00130", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 575, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.947306, 60.16663 ] }, "telephone": { "fi": "+358 9 310 36563" }, "street_address": { "fi": "Kasarmikatu 46-48", "sv": "Kaserngatan 46-48", "en": "Kasarmikatu 46-48" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.savoyteatteri.fi/", "sv": "http://www.savoyteatteri.fi/", "en": "http://www.savoyteatteri.fi/" }, "description": null, "name": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:348", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.541371Z", "last_modified_time": "2024-02-06T13:19:15.204233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1061, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:49", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.697675Z", "last_modified_time": "2024-02-06T13:19:14.132899Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 575, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Savoy-teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1406, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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.ticketmaster.fi/event/oneviolin-act-two-lippuja/338431", "sv": "https://www.ticketmaster.fi/event/oneviolin-act-two-lippuja/338431", "en": "https://www.ticketmaster.fi/event/oneviolin-act-two-lippuja/338431" }, "description": null, "price": { "fi": "32 €", "sv": "32 €", "en": "32 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11133, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-29T17:14:03.103108Z", "last_modified_time": "2024-02-29T17:14:03.103129Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744690.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11133/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-29T17:14:03.061432Z", "last_modified_time": "2024-10-15T07:15:28.534580Z", "date_published": null, "start_time": "2024-10-17T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "ONEVIOLIN jatkaa suomen valloitusta uudella livesetillään", "sv": "ONEVIOLIN fortsätter att erövra Finland med sitt nya liveset", "en": "ONEVIOLIN continues its conquest of Finland with a new live set" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/46D81079B03785D255497E3FF89C0C3E/ONEVIOLIN_-_Act_Two", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/46D81079B03785D255497E3FF89C0C3E/ONEVIOLIN_-_Act_Two", "en": "http://www.savoyteatteri.fi/en/events/event/46D81079B03785D255497E3FF89C0C3E/ONEVIOLIN_-_Act_Two" }, "description": { "fi": "<p>ONEVIOLIN jatkaa suomen valloitusta uudella livesetillään</p><p>Lontoon Royal College of Musicista valmistunut <b>ONEVIOLIN</b>, oikealta nimeltään <b>Pekka Niemi</b>, on esiintynyt viime vuosina loppuunmyydyille saleille eri puolilla Suomea. Huippuviulisti jatkaa menestyksekkäiden rundiensa putkea syksyllä 2024, kun hän tuo ACT TWO -nimisen uudistetun livesetin perinteisten konserttisalien lisäksi myös Tavara-aseman ja Rytmikorjaamon kaltaisille klubeille!</p><p>Tunnin mittaiset ACT TWO -keikat tulevat keskittymään kansainvälisten hittien cover-versioihin. ONEVIOLINin maailmanlaajuisesti poikkeuksellinen konsepti perustuu siis siihen, että artisti uudelleenversioi tunnettuja kappaleita käyttäen vain yhdellä viululla tuotettuja ääniä. Kaikki rummuista melodiaan on tehty vain ja ainoastaan artistin viululla. Esiintymistä tukevat lavalle pystytettävät videoscreenit, joiden visuaalinen ilme on ACT TWO -setissä päivitetty aivan uudelle tasolle. Konsertit eivät sisällä väliaikaa.</p><p>ONEVIOLIN on ollut hurjassa nousukiidossa 2020-luvulla. Hänen some-hiteiksi nousseet cover-videonsa saattavat kerätä miljoonia katselukertoja jopa yksittäin, puhumattakaan paljonko ne ovat tavoittaneet ihmisiä maailmanlaajuisesti yhteensä. Omien konserttiensa lisäksi hän on tuttu näky niin TV-ruudusta kuin erilaisista kampanjoistakin.<br> <br>Pelkästään vuonna 2023 ONEVIOLIN teki kolme kiertuetta, esiintyi festivaaleilla, firmatilaisuuksissa ja lennätettiin eri mantereille myös ulkomaan yksityiskeikoille. Keikkailun ja viraalivideoiden ohella artisti on julkaissut \"ONE\"-nimisen albumin sekä vieraillut Uniikin ja TUULIn kultaa striimanneella singlellä <i>Karuselli</i>.</p>", "sv": "<p>ONEVIOLIN fortsätter att erövra Finland med sitt nya liveset</p><p>ONEVIOLIN, vars riktiga namn är Pekka Niemi, har utexaminerats från Royal College of Music i London och har under de senaste åren uppträtt för utsålda salar på olika håll i Finland. Under hösten 2024 fortsätter toppviolinisten med de framgångsrika rundorna i och med ett förnyat liveset under namnet ACT TWO. Utöver i traditionella konsertsalar får vi även se showen på klubbar som Tavara-asema och Rytmikorjaamo!</p><p>De en timme långa ACT TWO-spelningarna fokuserar på coverversioner av internationella hittar. Därmed grundar sig ONEVIOLINs internationellt exceptionella koncept på artistens förnyade versioner av välkända låtar, som han åstadkommer endast med ljudet av en violin. Allt från trummor till melodi uppstår uteslutande med artistens violin. Uppträdandet stöds av videoskärmar som ställs upp på scenen, och vars visuella utseende har uppgraderats till en helt ny nivå i setet ACT TWO. Konserterna har ingen paus.</p><p>ONEVIOLIN har haft ett otroligt uppsving på 2020-talet. Hans covervideor har blivit hittar på sociala medier och enskilda låtar kan få miljontals visningar, för att inte tala om hur många människor de har nått internationellt. Utöver sina egna konserter är han en välbekant syn både på TV och i olika kampanjer.</p><p>Enbart under år 2023 gav ONEVIOLIN tre turnéer, uppträdde på festivaler, företagsevenemang och flögs också till olika kontinenter för privata spelningar. Förutom spelningar och virala videor har artisten släppt ett albumet “ONE” samt gästat på Uniikkis och TUULIs singel Karuselli som streamat guld.</p>", "en": "<p>ONEVIOLIN continues its conquest of Finland with a new live set</p><p>A graduate of the Royal College of Music in London, ONEVIOLIN, whose real name is Pekka Niemi, has performed at sold-out auditoriums across Finland. The top violinist will continue his string of successful tours in autumn 2024, when he brings his revamped ACT TWO live set not only to traditional concert halls but also to clubs like Tavara Station and Rytmikorjaamo!</p><p>The one-hour ACT TWO gigs will focus on cover versions of international hits. ONEVIOLIN’s globally exceptional concept is based on the artist’s reproduction of well-known songs using sounds produced by a single violin. Everything from the drums to the melody is produced exclusively with the artist’s violin. The performance is enhanced by on-stage video screens, the visual look of which has been brought to a whole new level with ACT TWO. The concerts do not include an intermission.</p><p>ONEVIOLIN has been on a wild upswing during the 2020s. His cover videos, which have become viral hits on social media, can individually garner millions of views, not to mention the millions of people all the videos have reached globally. In addition to his own concerts, he’s a familiar face from TV and various campaigns.</p><p>In 2023 alone, ONEVIOLIN toured three times, performed at festivals and corporate events, and was also flown to other continents for private gigs abroad. In addition to touring and viral videos, the artist has released an album titled ‘ONE’, and was featured on the gold-streamed single Karuselli (Carousel) by Uniikki ja TUULI.</p>" }, "name": { "fi": "ONEVIOLIN - Act Two – Loppuunmyyty!", "sv": "ONEVIOLIN - Act Two – Slutsåld!", "en": "ONEVIOLIN - Act Two – Sold out!" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Live Nation Finland Oy", "sv": "Live Nation Finland Oy", "en": "Live Nation Finland Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi5omb4mu", "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: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:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi5omb4yu/?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-08-06T12:18:47.360209Z", "last_modified_time": "2024-10-15T06:14:55.252701Z", "date_published": null, "start_time": "2024-10-27T09:00:00Z", "end_time": "2024-10-27T11: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan. ", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland. ", "en": "Welcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": "Lukukoira Fila", "sv": "Läshund Fila", "en": "Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi5omb4mu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64632", "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: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: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": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1406, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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/event/helsingin-kulttuurikeskus-vuotalo-tarina-suuresta-rakkaudesta-vuotalo-19244696/" }, "description": null, "price": { "fi": "24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152628, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-30T10:16:26.244080Z", "last_modified_time": "2024-09-30T10:16:26.244094Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750054.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152628/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-30T10:16:26.217357Z", "last_modified_time": "2024-10-14T12:15:22.395781Z", "date_published": null, "start_time": "2024-11-15T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Suomen ukrainalaisen teatterin 10-vuotisjuhlakonserttiin!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3D8FFCE2337917721FAAB33425C67CE5/Tarina_suuresta_rakkaudesta" }, "description": { "fi": "<p>Tervetuloa Suomen ukrainalaisen teatterin 10-vuotisjuhlakonserttiin!</p><p>Konsertissa esiintyy teatterin näyttelijöitä sekä ukrainalainen Kalina-kuoro, Milanon Opera La Scalan solisti Svetlana Kalinichenko, jazzlaulaja Hanna Salko, ukrainalainen kuoro Perespiv, viulisti Sebastian Silen, tanssiryhmä Ethno contemporary balet, Anastasia Snetko, Karina Shiro, Darina Skripka ja muita kuuluisia artisteja.</p><p>Konsertin juontaa suosittu ukrainalainen teatteri- ja elokuvanäyttelijä Rimma Zyubina.</p><p>Hyväntekeväisyyskonsertti Venäjän pommituksessa vaurioituneen ukrainalaisen lastensairaalan hyväksi.</p><p>Kieli: ukraina, suomi<br>Kesto: 2.5 tuntia, sis. väliaika<br>Liput 24,80 €, tulossa myyntiin lippu.fi-palveluun</p>" }, "name": { "fi": "Tarina suuresta rakkaudesta – Suomen ukrainalaisen teatterin 10-vuotisjuhlakonsertti" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64632/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64332", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "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:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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: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:350", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.556582Z", "last_modified_time": "2024-02-06T13:19:15.225361Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 430, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:46", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.650020Z", "last_modified_time": "2024-02-06T13:19:14.062702Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 712, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Annantalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2847, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1406, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": 151997, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T16:15:56.373498Z", "last_modified_time": "2024-07-30T16:15:56.373518Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751345.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151997/?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-07-30T16:15:56.344949Z", "last_modified_time": "2024-10-14T12:15:13.727644Z", "date_published": null, "start_time": "2024-10-18T13:30:00Z", "end_time": "2024-10-18T16: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": "AnnanHouse -disko valtaa Annantalon juhlasalin! Tervetuloa koko perheen elektronisen tanssimusiikin ja diskokulttuurin erikoistapahtumaan.", "sv": "AnnanHouse-diskot tar över Annantalo! Välkommen till ett speciellt familjevänligt evenemang som firar elektronisk dansmusik och diskokultur.", "en": "AnnanHouse Disco takes over Annantalo! Welcome to a special family-friendly event celebrating electronic dance music and disco culture." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0F0C1E443A91EB68680E152D564B8CDC/AnnanHouse_Tanssivat_satuhahmot", "sv": "http://www.annantalo.fi/sv/evenemang/event/0F0C1E443A91EB68680E152D564B8CDC/AnnanHouse_Dansande_sagofigurer", "en": "http://www.annantalo.fi/en/events/event/0F0C1E443A91EB68680E152D564B8CDC/AnnanHouse_Dancing_fairy_tale_characters" }, "description": { "fi": "<p>AnnanHouse -disko valtaa Annantalon juhlasalin! Tervetuloa koko perheen elektronisen tanssimusiikin ja diskokulttuurin erikoistapahtumaan.</p><p>Tämänkertaista diskoa vietetään valtakunnallisena Satupäivänä, jonka kunniaksi teemana on tanssivat satuhahmot. Pukeudu suosikkisatuhahmoksesi tai piipahda Annantalon pukulainaamossa lainaamassa itsellesi satumaiset diskovaatteet. <br> <br>Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit myös hypätä tanssituokioihin, piipahtaa avoimissa taidetyöpajoissa, tavata prinsessoja ja osallistua näyttelyopastukselle. <br> <br>Klo 16.30 Pukulainaamo SATUMAA avaa ovensa. Työpajat käynnistyvät: valmista satumainen naamio, uppoudu tunnelmalliseen satuhetkeen, tanssita varjohahmoa ja tapaa prinsessoja. <br>Klo 17.00 Diskon ovet aukeavat <br>Klo 17.15 ja 18.00 ohjatut tanssituokiot diskossa<br>Klo 17.30 Koko perheen näyttelyopastus, mukana robotti-vahtimestari B-Ö <br>Klo 19.00 Diskon ovet sulkeutuvat ja työpajat päättyvät. Prinsessat hyvästelevät diskovieraat etupihalla (säävaraus). <br> <br>Vapaa pääsy, ei ennakkoilmoittautumista. <br>Viimeiset osallistujat otetaan sisälle työpajoihin klo 18.45!<br> <br>-- <br> <br>Työpajat: <br> <br>Tiitiäisen tarinatupa, klo 16.30-19 <br>Uppoudu hetkeksi tunnelmalliseen satuhetkeen. Tiitiäisen tarinatuvassa Kirsi Kunnaksen tarinat piirtyvät liikkuviksi hahmoiksi ja kuviksi kankaalle. Tunnelmallinen musiikki, hämärä valaistus ja pehmeät pötköttelypaikat kutsuvat sinut rentoutumaan ja sukeltamaan satujen maailmaan.</p><p>Prinsessojen Meet&Greet, klo 16.30-18.30 <br>Juhlaprinsessan Lumikuningatar ja Pieni Merenneito ovat mukana diskotunnelmassa. Tervetuloa tapaamaan kuninkaallisia, ottamaan yhteiskuva ja heittäytymään tanssin pyörteisiin! Kaikki vierailijat saavat myös prinsessojen fanikortin. <br> <br>Satumaiset naamiot, klo 16.30-19 <br>Nonstop-työpajassa osallistujat suunnittelevat itselleen tanssilattialle sopivan kasvonaamion. Softis-arkeista rakennettua naamiota pääsee koristelemaan timanteilla ja pimeässä hohtavilla väreillä, sekä muilla dekoratiivisilla materiaaleilla.</p><p>Varjohahmojen tanssi, klo 16.30-19 <br>Tutustu varjojen maailmaan ja luo oma varjohahmosi! Työpajassa rakennat oman hahmosi pahvista, tikuista ja värikalvoista. Kun hahmosi on valmis, pääset tanssittamaan sitä varjokankaalla osana Onni on olla -näyttelyn maailmaa.</p><p>Seikkailu satumetsässä, klo 16.30-19 <br>Seikkaile taianomaisessa satumetsässä tuoksujen, värien, metsämusiikin ja muiden elämysten maailmassa. Tutki keitä siellä asuu, miltä siellä näyttää, tuntuu, kuulostaa ja tuoksuu. Kurkista satumetsään, osallistu ja ylläty! Satumetsä on toteutettu yhteistyönä Helsingin yliopiston kanssa.</p><p>Tervetuloa viettämään satumaista iltaa!</p>", "sv": "<p>AnnanHouse-diskot tar över Annantalo! Välkommen till ett speciellt familjevänligt evenemang som firar elektronisk dansmusik och diskokultur.</p><p>Denna gång är discots tema sagofigurer som dansar till sagodagens ära. Klä ut dig till din favoritsagofigur eller besök Annegårdens kostymutlåning för att låna sagolika discokläder.</p><p>För musiken står Annegårdens egen dj Nicolas Sebastien, som bjuder på toppmusik från house till disco. Under discokvällen kan du också delta i dansstunder, öppna konstverkstäder, träffa prinsessor och följa med på en guidad utställningstur.</p><p>Program:</p><p>16.30 Kostymuthyrningen Sagoland öppnar. Verkstäderna startar: skapa en sagolik mask, fördjupa dig i en stämningsfull sagostund, dansa med skuggfigurer och träffa prinsessor.<br>17.00 Diskodörrarna öppnar<br>17.15 & 18.00 Guidad danssession på discogolvet<br>17.30 Familjevisning av utställningen med robot-vaktmästaren B-Ö<br>19.00 Diskot avslutas och verkstäderna stänger. Prinsessorna vinkar hejdå till gästerna vid gården (vid fint väder).</p><p>Fritt inträde, ingen förhandsanmälan.</p><p>--</p><p>Verkstäder:</p><p>Tiitiäinens Sagostuga, 16.30–19.00<br>Ta en paus och förlora dig själv i en magisk sagostund. I Tiitiäinens Sagostuga får Kirsi Kunnas sagor liv genom rörliga figurer och bilder projicerade på duk. Stämningsfull musik, dämpad belysning och mjuka viloplatser inbjuder dig att koppla av och fördjupa dig i sagornas värld.</p><p>Prinsessornas Meet & Greet, 16.30–18.30<br>Festprinsessorna Isdrottningen och Den lilla sjöjungfrun är på plats och redo för diskostämning. Kom och träffa kungligheterna och ta ett foto tillsammans! Alla besökare får dessutom ett prinsess-fankort.</p><p>Sagolika masker, 16.30–19.00<br>I den här nonstop-verkstaden får deltagarna designa sina egna dansgolvsmasker. Maskerna skapas av mjuka skumark och kan dekoreras med diamanter, självlysande färger och andra dekorativa material.</p><p>Skuggfigurernas dans, 16.30–19.00<br>Upptäck skuggornas värld och skapa din egen skuggfigur! I denna verkstad bygger du din egen figur av kartong, pinnar och färgfilmer. När din figur är klar får du dansa med den på en skuggduk som en del av utställningen Onni on olla.</p><p>Välkommen till en magisk kväll!</p>", "en": "<p>AnnanHouse Disco takes over Annantalo! Welcome to a special family-friendly event celebrating electronic dance music and disco culture.</p><p>This time, the disco coincides with National Fairy Tale Day, and the theme is \"Dancing fairy tale characters.\" Come dressed as your favorite storybook character or pop by Annantalo’s costume corner to borrow a magical disco outfit.</p><p>Annantalo’s own DJ, Nicolas Sebastien is in charge of the music, ranging from house to disco. Throughout the evening, you can join guided dance sessions, take part in open art workshops, meet princesses, and enjoy a guided tour of our exhibition.</p><p>Schedule:</p><p>16:30 Costume Corner Fairyland opens its doors. The workshops begin: make a fairy tale mask, immerse yourself in a cozy story time, dance with shadow characters, and meet princesses.<br>17:00 Disco doors open<br>17:15 & 18:00 Guided dance sessions at the disco<br>17:30 Family-friendly exhibition tour featuring our robot caretaker, B-Ö<br>19:00 Disco ends, workshops close. The princesses will bid farewell to guests at the front yard (weather permitting).</p><p>Free entry, no pre-registration required.<br>The last participants will be admitted to the workshops at 18:45.</p><p>--</p><p>Workshops:</p><p>Tiitiäinen’s Storytime Hut, 16:30–19:00<br>Take a moment to relax in an enchanting storytime session. In Tiitiäinen’s Storytime Hut, the stories of Kirsi Kunnas will come to life through moving characters and images projected onto a screen. The gentle music, dim lighting, and soft lounge areas invite you to unwind and dive into the world of fairy tales.</p><p>Princess Meet & Greet, 16:30–18:30<br>Special guest princesses, the Icequeen and The Little Mermaid, will join in the disco fun. Come meet the royals and snap a photo! All visitors will also receive a princess fan card.</p><p>Magical Masks, 16:30–19:00<br>In this nonstop workshop, participants can design their own dance floor-ready face masks. The foam sheet masks can be decorated with gems, glow-in-the-dark paint, and other creative materials.</p><p>Shadow Character Dance, 16:30–19:00<br>Step into the world of shadows and create your own shadow character! In this workshop, you'll craft a figure using cardboard, sticks, and colored films. Once your character is complete, you can dance it on a shadow screen as part of the Onni On Olla exhibition.</p><p>Come join us for a magical evening!</p>" }, "name": { "fi": "AnnanHouse: Tanssivat satuhahmot – Koko perheen yhteinen disko", "sv": "AnnanHouse: Dansande sagofigurer – Ett disco för hela familjen", "en": "AnnanHouse: Dancing fairy tale characters – Family Disco" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64332/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjiuyx3a4", "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:p13084", "has_user_editable_resources": false, "alt_labels": [ "natur" ], "created_time": "2023-08-16T05:16:37.985735Z", "last_modified_time": "2023-08-16T05:16:37.985760Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 430, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "luonto", "sv": "naturen", "en": "nature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2739", "has_user_editable_resources": false, "alt_labels": [ "kuvaamataide", "kuvaamataiteet", "kuvataiteet" ], "created_time": "2023-08-16T05:18:38.321708Z", "last_modified_time": "2023-08-16T05:18:38.321728Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 870, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kuvataide", "sv": "bildkonst", "en": "fine arts" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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" }, { "id": "yso:p5121", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:37.715031Z", "last_modified_time": "2023-08-16T05:19:37.715048Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 777, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "näyttelyt", "sv": "utställningar", "en": "exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-08T09:10:13.832753Z", "last_modified_time": "2024-10-14T10:36:33.800303Z", "date_published": "2024-10-14T04:59:00Z", "start_time": "2024-10-14T05:00:00Z", "end_time": "2024-11-03T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tiiku Ruuskan taidenäyttely \"Sinivuokkoja ja simpukoita\" Entressen kirjaston Galleria Betonissa 14.10.-3.11.2024.", "sv": "Tiiku Ruuskas utställning \"Sinivuokkoja ja simpukoita\" i Entressebiblioteket under tiden 14.10.-3.11.2024.", "en": "Art exhibition \"Sinivuokkoja ja simpukoita\" by Tiiku Ruuska in Entresse Library during 14.10.-3.11.2024." }, "info_url": null, "description": { "fi": "<p>Sinivuokkoja ja simpukoita- näyttely leikittelee symboliikalla, tarinoilla ja taruilla sekä ihmisen ja luonnon symbioosilla. Näyttelyssä on nähtävillä useita eri tekniikoita ja materiaaleja öljymaalauksista keramiikkaan, grafiikkaan ja värikyniin. Taiteilija Tiiku Ruuska on 18-vuotias lukiolainen Espoosta. Tule tutkimaan teoksia ja tutustumaan niiden tarinoihin!</p>", "sv": "<p>Välkommen att besöka Tiiku Ruuskas utställning \"Sinivuokkoja ja simpukoita\" i Entressebiblioteket under tiden 14.10.-3.11.2024. Utställningen kan ses under bibliotekets öppettider.</p>", "en": "<p>Art exhibition \"Sinivuokkoja ja simpukoita\" by Tiiku Ruuska in Entresse Library during 14.10.-3.11.2024. Welcome!</p>" }, "name": { "fi": "Tiiku Ruuska: Sinivuokkoja ja simpukoita 14.10.-3.11.2024", "sv": "Tiiku Ruuska: Sinivuokkoja ja simpukoita 14.10.-3.11.2024", "en": "Tiiku Ruuska: Sinivuokkoja ja simpukoita 14.10.-3.11.2024" }, "provider_contact_info": null, "location_extra_info": { "fi": "Galleria Betoni" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjiuyx3a4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjiuyxx7e", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "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-15T16:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "telephone": { "fi": "+358 9 8163 5097" }, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "description": null, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ky", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.123308Z", "last_modified_time": "2023-12-13T11:20:12.123326Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2428, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Soukka", "sv": "Sökö", "en": "Soukka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66mq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.137750Z", "last_modified_time": "2023-12-13T11:20:12.137771Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3078, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Finnoo", "sv": "Finno", "en": "Finnoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.364884Z", "last_modified_time": "2023-12-13T11:20:12.364908Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2667, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaitaa", "sv": "Kaitans", "en": "Kaitaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9505, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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" }, { "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" }, { "id": "yso:p556", "has_user_editable_resources": false, "alt_labels": [ "språk (språkvetenskap)", "kielet", "kieli (kielitiede)", "språk (typer)", "språket" ], "created_time": "2023-08-16T05:19:47.449652Z", "last_modified_time": "2023-08-16T05:19:47.449670Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3855, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kieli ja kielet", "sv": "språk", "en": "languages" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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": 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: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-10-14T09:13:30.082689Z", "last_modified_time": "2024-10-14T09:13:30.082711Z", "date_published": null, "start_time": "2024-11-01T15:00:00Z", "end_time": "2024-11-01T17: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 viihtymään ja tutustumaan alueen muihin perheisiin! Ohjelmassa mm. Kahoot!-peli, keksin koristelua, kasvomaalausta, maalausta pajassa, satutunti. ", "sv": "Välkommen att ha trevligt och träffa andra familjer i området! I programmet ingår Kahoot! spel, kakdekoration, ansiktsmålning, målning i verkstaden, sagostund.", "en": "Come and meet other families in the area! The programme includes Kahoot! games, cake decorating, face painting, painting in the workshop, story time." }, "info_url": null, "description": { "fi": "<p>Tervetuloa viihtymään ja tutustumaan alueen muihin perheisiin!</p><p>Monikulttuurinen perheilta tulossa Lippulaivaan yhteistyössä Mokulat ry: n kanssa (Monikulttuuriset lapset ja nuoret ry). </p><p><br></p><p>Tapahtuma on suunnattu kaikille perheille. </p><p> </p><p>Ohjelmassa mm. Kahoot!-peli, keksin koristelua, kasvomaalausta, maalausta pajassa, satutunti. </p><p> </p><p>Kenelle: perheille</p><p>Milloin: pe 1.11. klo 17-19</p><p>Missä: Lippulaivan kirjasto, Salonki ja paja</p>", "sv": "<p>Välkommen att ha trevligt och träffa andra familjer i området!</p><p><br></p><p>En mångkulturell familjekväll ordnas i Lippulaiva i samarbete med Mokulat ry (Mångkulturella barn- och ungdomsföreningen). </p><p><br></p><p>Evenemanget riktar sig till alla familjer. </p><p><br></p><p>På programmet står Kahoot! -spel, kakdekorering, ansiktsmålning, målning i verkstaden, sagostund. </p>", "en": "<p>Welcome to enjoy yourself and meet other families in the area!</p><p><br></p><p>A multicultural family evening is coming to Lippulaiva in cooperation with Mokulat ry (Multicultural Children and Youth Association). </p><p><br></p><p>The event is aimed at all families. </p><p><br></p><p>The programme includes Kahoot! game, cookie decorating, face painting, painting in the workshop, story time. </p><p>For: families</p><p><br></p><p>When: friday 1.11. from 17-19</p><p>Where: Lippulaiva library, Salonki and Paja</p>" }, "name": { "fi": "Monikulttuurinen ilta perheille", "sv": "Mångkulturell kväll", "en": "Multicultural evening" }, "provider_contact_info": null, "location_extra_info": { "fi": " Salonki ja Paja", "sv": " Salonki ja Paja", "en": " Salonki ja Paja" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjiuyxx7e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjiuyxyja", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "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-15T16:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "telephone": { "fi": "+358 9 8163 5097" }, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "description": null, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ky", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.123308Z", "last_modified_time": "2023-12-13T11:20:12.123326Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2428, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Soukka", "sv": "Sökö", "en": "Soukka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66mq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.137750Z", "last_modified_time": "2023-12-13T11:20:12.137771Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3078, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Finnoo", "sv": "Finno", "en": "Finnoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.364884Z", "last_modified_time": "2023-12-13T11:20:12.364908Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2667, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaitaa", "sv": "Kaitans", "en": "Kaitaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9505, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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: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" }, { "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" }, { "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": 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:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-14T08:59:11.469202Z", "last_modified_time": "2024-10-14T08:59:11.469230Z", "date_published": null, "start_time": "2024-11-08T14:00:00Z", "end_time": "2024-11-08T17: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 viettämään Kuolleiden päivää Lippulaivan kirjastoon. Ohjelmassa on paljon hauskaa tekemistä lapsille,nuorille ja perheille!", "sv": "Välkommen till De dödas dag på Lippulaiva bibliotek. Massor av roliga aktiviteter för barn, ungdomar och familjer!", "en": "Welcome to celebrate the Day of the Dead at Lippulaiva Library. There will be lots of fun activities for children, young people and families!" }, "info_url": null, "description": { "fi": "<p>Päivän ohjelma:</p><p>Satuhetki espanjaksi ja suomeksi klo 16-16.30, Salongissa</p><p>Dia De Muertos -sokeripääkallomaskeja klo 16.30-17.30, Salongissa</p><p>Dia De Muertos-teemaista askartelua klo 16.30-19.00, Salongissa</p><p>Lasten elokuva \"Coco\" klo 17-18.30, Kajuutassa</p><p> </p><p>Tapahtuma on kaikille avoin ja maksuton.</p><p> </p><p>Tapahtuma järjestetään yhteistyönä Meksikon Suomen-suurlähetystön kanssa.</p>", "sv": "<p>Program för dagen:</p><p><br></p><p>Sagoberättande på spanska och finska kl. 16.00-16.30, Salonki</p><p><br></p><p>Sockerdödskallemasker kl. 16.30-17.30, Salonki</p><p><br></p><p>Mexikanska hantverk kl. 16.30-19.00, Salonki</p><p><br></p><p>”Coco\"-film för barn kl. 17-18.30, Kajuutta</p><p> </p><p>Evenemanget är öppet för alla och kostnadsfritt.</p><p>Evenemanget ordnas i samarbete med Mexikos ambassad i Finland.</p>", "en": "<p>Program:</p><p>Storytelling in Spanish and Finnish at 16.00-16.30, Salonki</p><p>Sugar Skull masks at 16.30-17.30, Salonki</p><p>Mexican handycrafts at 16.30-19.00, Salonki</p><p>\"Coco\" film for kids at 17-18.30, Kajuutta</p><p> </p><p>The event is open to everyone and free of charge.</p><p>The event is organized in collaboration with Embassy of Mexico in Finland.</p>" }, "name": { "fi": "Kuolleiden päivä/ Día de Muertos", "sv": "De dödas dag /Dia de Muertos", "en": "Day of the Dead/ Día de Muertos" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki & Kajuutta", "sv": "Salonki & Kajuutta", "en": "Salonki & Kajuutta" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjiuyxyja/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64645", "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: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": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2847, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1406, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": 152795, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-14T08:15:04.351260Z", "last_modified_time": "2024-10-14T08:15:04.351277Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758474.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152795/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-14T08:15:04.304111Z", "last_modified_time": "2024-10-14T08:15:04.434199Z", "date_published": null, "start_time": "2024-10-29T11:00:00Z", "end_time": "2024-10-29T13: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 Stoan 40-vuotisjuhlaviikolla diskoilemaan ja pitämään hauskaa hyvässä seurassa!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/75E81CD96E6B8083FB2FF9F346501E01/50_paivadisko" }, "description": { "fi": "<p>Tervetuloa Stoan 40-vuotisjuhlaviikolla diskoilemaan ja pitämään hauskaa hyvässä seurassa!</p><p>DJ Tauko soittaaa juhlakansalle polvea nostattavaa rytmimusiikkia. Diskossa mukana myös kokenut tanssiopettaja ja esiintyjä Lasse Muuronen. Tule mukaan tanssimaan omalla tyylillä tai oppimaan yhdessä Lassen kanssa! <br> <br>DJ Tauko on Montrealissa syntynyt ja ensimmäiseltä ammatiltaan b-boy eli breaktanssija. Hänen rakkautensa musiikkiin syntyi jo nuorena tanssin kautta.<br> <br>Lasse Muuronen on pitkän linjan StepUpilainen ja supersuosittu ohjaaja, jonka tunneilla yhdistyvät mukaansa tempaavat biisit, helpot askelkuviot ja iloisen välitön meininki. Tällä kertaa pääsemme diskoilemaan Lassen johdolla niin perinteisten diskobiisien, viime vuosien hittien kuin vauhdikkaiden funk-kappaleidenkin tahtiin.</p>" }, "name": { "fi": "50+ päivädisko – Stoa 40!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64645/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiw4rrkci", "has_user_editable_resources": false, "location": { "id": "tprek:15311", "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:05.278840Z", "last_modified_time": "2024-04-09T05:09:27.677777Z", "custom_data": null, "email": "kirjasto.tapiola@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1742, "image": 7887, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.804646, 60.178085 ] }, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84850" }, "description": null, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65fm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.825528Z", "last_modified_time": "2023-12-13T11:20:11.825556Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1356, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Tapiola", "sv": "Hagalund", "en": "Tapiola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?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:agilne2ipq/?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": [], "created_time": "2024-08-20T05:15:47.185462Z", "last_modified_time": "2024-10-14T05:16:14.716857Z", "date_published": "2024-07-15T11:57:49.815000Z", "start_time": "2024-10-21T14:00:00Z", "end_time": "2024-10-21T15:15: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": "Tässä ryhmässä soitamme rennossa tunnelmassa tuttuja ja tuntemattomiakin suomen- ja englanninkielisiä lauluja.", "en": "Welcome to the Espoo City Library Advanced Ukulele Group. " }, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan soittamaan ukulelea iloiseen joukkoomme! Tässä ryhmässä soitetaan rennossa tunnelmassa tuttuja ja tuntemattomiakin suomen- ja englanninkielisiä lauluja. Opettelemme myös mm. melodiansoittoa ja erilaisia komppeja. Rento ote ja yhteisöllisyys ovat ryhmälle tärkeitä asioita. Kirjastolla on ukuleleja, joita voit lainata tunnin ajaksi. Aikaisempi soittotausta on suotavaa. Opetusta saa suomeksi ja englanniksi.</p><p>Ryhmä järjestetään joka maanantai välillä 2.9. - 9.12. 4.11. olemme keikalla, joten silloin ei ole tuntia.</p><p>Osallistuminen on maksutonta.</p><p>#musiikki #tapiola #ukulele</p>", "en": "<p>Welcome to the Espoo City Library Advanced Ukulele Group. We play popular and unknown Finnish and English tunes. We challenge ourselves by learning new chords, melody playing and strumming patterns. Relaxing atmosphere and communality are important values of the group. The library has ukuleles which you can borrow for the lesson. Participation is free of charge and no pre-registration is required.</p><p>On the 4th of Nov, there is no class.</p><p>#music #tapiola #ukulele</p><p>The group is led by Sakari Heikka</p><p>sakari.heikka@espoo.fi</p>" }, "name": { "fi": "Ukulele edistyneiden ryhmä", "en": "Ukulele advanced group" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumatila Heikki", "en": "Event Space Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiw4rrkci/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }