Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=698®istration__remaining_waiting_list_capacity__isnull=true
{ "meta": { "count": 32740, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=699®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=697®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "espoo_le:agjchunhba", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "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-09-24T11:13:58.196765Z", "last_modified_time": "2024-09-24T11:13:58.196785Z", "date_published": "2024-09-24T11:07:00Z", "start_time": "2024-10-16T10:00:00Z", "end_time": "2024-10-16T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mario Kart -turnaus", "sv": "Mario Kart-turnering", "en": "Mario Kart tournament" }, "info_url": null, "description": { "fi": "<p>Oletko sinä Sellon kirjaston Martio Kart mestari? Tervetuloa mukaan kaikille avoimeen pelitapahtumaan.</p>", "sv": "<p>Är du mästare i Martio Kart på Sellobiblioteket? Välkommen till detta öppna spelevenemang.</p>", "en": "<p>Are you the Martio Kart champion of the Sello library? Welcome to this open gaming event.</p>" }, "name": { "fi": "Mario Kart -turnaus", "sv": "Mario Kart-turnering", "en": "Mario Kart tournament" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Lastenmaa", "en": "Lastenmaa" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjchunhba/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64254", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/rno-marco-lundberg-suuri-suomalainen-tangolaulukirja-vol-5-taisto-tammi-3729790/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/rno-marco-lundberg-suuri-suomalainen-tangolaulukirja-vol-5-taisto-tammi-3729790/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/rno-marco-lundberg-suuri-suomalainen-tangolaulukirja-vol-5-taisto-tammi-3729790/" }, "description": null, "price": { "fi": "23 €", "sv": "23 €", "en": "23 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151823, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T14:14:56.216566Z", "last_modified_time": "2024-07-24T14:14:56.216581Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755071.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151823/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T14:14:56.184303Z", "last_modified_time": "2024-09-24T10:15:09.819473Z", "date_published": null, "start_time": "2024-10-18T15: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": "Juonnetussa konsertissa kuullaan Taisto Tammen levyttämää ja tunnetuksi tekemää musiikkia alkuperäissovituksina. RNO Tango johtajanaan Riku Niemi ja solistinaan Marco Lundberg.", "sv": "På den här värdledda konserten får vi höra originalarrangemang av musik som spelats in och gjorts känd av Taisto Tammi. RNO Tango leds av Riku Niemi, solist Marco Lundberg.", "en": "The hosted concert will feature music recorded and made famous by Taisto Tammi in original arrangements. RNO Tango led by Riku Niemi, with Marco Lundberg as lead vocalist." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D97E31C9345F764172925E62B84D32EA/RNO_Marco_Lundberg_Suuri_Suomalainen_tangolaulukirja_vol_5_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D97E31C9345F764172925E62B84D32EA/RNO_Marco_Lundberg_Den_stora_finska_tangosangboken_vol_5_", "en": "http://www.vuotalo.fi/en/events/event/D97E31C9345F764172925E62B84D32EA/RNO_Marco_Lundberg_The_Great_Finnish_Tango_Songbook_Vol_5" }, "description": { "fi": "<p>Juonnetussa konsertissa kuullaan Taisto Tammen levyttämää ja tunnetuksi tekemää musiikkia alkuperäissovituksina. RNO Tango johtajanaan Riku Niemi ja solistinaan Marco Lundberg.</p><p>Taisto Tammi (oik. Taisto Lundberg) ehti lyhyeksi jääneen elämänsä aikana jättää lähtemättömän jäljen suomalaiseen musiikkiin. Taisto Tammen lämmin ääni ja sydämeen käyvät tulkinnat ovat useiden levytysten ansiosta edelleen merkittävä ja elävä osa suomalaista iskelmämusiikkia ja tangokulttuuria. RNO Tango on kutsunut solistikseen Marco Lundbergin, jonka kanssa orkesteri on aiemmin levyttänytkin Taisto Tammen musiikkia. Marco Lundbergin suhde Taisto Tammen musiikkin on poikkeuksellisen läheinen: Lundberg on Taisto Tammen veljenpoika.</p><p>Marco Lundberg tunnetaan monipuolisena laulajana. Suomalaisen tangon esittäjänä hän nousi suuren yleisön tietoisuuteen voitettuaan Tangomarkkinoiden tangokuninkuuden kesällä 2016. Lundberg tunnetaan myös hienostuneista ja sävykkäistä perinteisen viihdemusiikin tulkinnoistaan.</p><p>RNO Tango on vuonna 2005 perustetun Riku Niemi Orchestran (RNO) kymmenhenkinen kokoonpano, jonka toiminta-ajatus perustuu suomalaisen tangon tyylien tutkimiseen ja esittämiseen alkuperäissovituksina ja niitä kunnioittavina orkestraatioina. Useimmissa tapauksissa tämä tarkoittaa sovitusten transkriptointia äänilevyiltä ja muilta historiallisilta taltioinneilta. Kokoonpanon repertuaari on laaja ja kattaa suomalaisia tangoja 1930-luvulta tähän päivään.</p><p>RNO Tango joht. Riku Niemi, solistinaan Marco Lundberg.</p><p>Kesto: 2 t, sis. väliajan</p>", "sv": "<p>På den här värdledda konserten får vi höra originalarrangemang av musik som spelats in och gjorts känd av Taisto Tammi. RNO Tango leds av Riku Niemi, solist Marco Lundberg.</p><p>Under sitt korta liv hann Taisto Tammi (egentligen Taisto Lundberg) lämna sin outplånliga prägel på den finländska musiken. Tack vare hans många inspelningar är Taisto Tammis varma röst och innerliga tolkningar fortfarande en viktig och levande del av den finländska schlagermusiken och tangokulturen. Som solist har RNO Tango bjudit in Marco Lundberg som även tidigare har spelat in Taisto Tammis musik tillsammans med orkestern. Marco Lundbergs relation till Taisto Tammis musik är exceptionellt nära: Lundberg är brorson till Taisto Tammi.</p><p>Marco Lundberg är känd som en mångsidig sångare. Den stora publiken blev medveten om honom som tolkare av finländsk tango efter att han kröntes till tangokung på Tangomarknaden sommaren 2016. Lundberg är också känd för sina sofistikerade och nyanserade tolkningar av traditionell underhållningsmusik.</p><p>RNO Tango är Riku Niemi Orchestras (RNO) tiomannaensemble som grundades år 2005. RNO Tangos verksamhetsidé är att utforska stilriktningar inom finsk tango och framföra dem i originalarrangemang och orkestreringar som högaktar dem. I de flesta fall innebär detta transkribering av arrangemang från skivor och andra historiska inspelningar. Ensemblens repertoar är omfattande och omfattar finsk tango från 1930-talet fram till i dag.</p><p>RNO Tango leds av Riku Niemi, solist Marco Lundberg.</p>", "en": "<p>The hosted concert will feature music recorded and made famous by Taisto Tammi in original arrangements. RNO Tango led by Riku Niemi, with Marco Lundberg as lead vocalist.</p><p>Taisto Tammi (born Taisto Lundberg) left an indelible mark on Finnish music during his short life. Thanks to several records, Taisto Tammi's warm voice and heartfelt performances are still a significant and lively part of Finnish pop music and tango culture. RNO Tango has invited Marco Lundberg, with whom the orchestra has previously recorded Taisto Tammi's music to be the vocalist. Marco Lundberg has an exceptionally close relationship with Taisto Tammi's music: Lundberg is Taisto Tammi’s nephew.</p><p>Marco Lundberg is known for his versatile singing. As a performer of Finnish tango, he rose to the attention of the general public after winning the prize of the tango king at the Tangomarkkinat festival in the summer of 2016. Lundberg is also known for his sophisticated and tonal interpretations of traditional entertainment music.</p><p>RNO Tango is a ten-piece ensemble of the Riku Niemi Orchestra (RNO), founded in 2005, whose mission is based on studying and presenting the styles of Finnish tango as original arrangements and respectful orchestrations. In most cases, this means transcribing the arrangements from records and other historical recordings. The repertoire of the ensemble is extensive and covers Finnish tango from the 1930s to the present day.</p><p>RNO Tango led by Riku Niemi, with Marco Lundberg as lead vocalist.</p>" }, "name": { "fi": "RNO & Marco Lundberg: Suuri Suomalainen tangolaulukirja vol. 5 – Taisto Tammi", "sv": "RNO & Marco Lundberg: Den stora finska tangosångboken vol. 5 – Taisto Tammi", "en": "RNO & Marco Lundberg: The Great Finnish Tango Songbook Vol. 5 – Taisto Tammi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64254/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:07430782-1090-485a-823d-4aab19e4a564", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=MKtest_23092024_no3_TPR-kokonaisuus_ja_LE-tapahtuman_uudet_tiedot_user_story_564245956443" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 152588, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-24T10:14:49.448255Z", "last_modified_time": "2024-09-24T10:14:49.448277Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e477da3e-2609-ef11-9f8a-000d3ab363c5", "name": "Tämä on kuvatekstiä", "cropping": "", "photographer_name": "Leif Linssi", "alt_text": "Tämä on alt-tekstiä", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152588/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-09-24T10:14:50.906377Z", "last_modified_time": "2024-09-24T10:14:50.906401Z", "date_published": "2024-09-24T10:11:29Z", "start_time": "2024-09-26T22:30:00Z", "end_time": "2024-09-26T23:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-09-01T08:00:00+03:00", "enrolment_end_time": "2024-09-18T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Tämä on tosi lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Tämä on tosi pitkä kuvaus</p></div>" }, "name": { "fi": "MKtest 24092024 no:1 TPR-kokonaisuus ja LE-tapahtuman uudet tiedot (user story 564" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Business Helsinfors" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:07430782-1090-485a-823d-4aab19e4a564/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjchg5uee", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "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" } ], "created_time": "2024-09-24T09:21:24.108986Z", "last_modified_time": "2024-09-24T09:21:24.109010Z", "date_published": null, "start_time": "2024-10-14T13:00:00Z", "end_time": "2024-10-14T13:45: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": "Jooja on 16-vuotias artisti, lauluntekijä, ja muusikko.", "sv": "Jooja är en 16-årig artist, låtskrivare och musiker.", "en": "Jooja is a 16-year-old artist, songwriter, and musician" }, "info_url": null, "description": { "fi": "<p>Jooja on 16-vuotias artisti, lauluntekijä, ja muusikko. Hän hallitsee niin kitaran, koskettimet, rummut kuin kirkkourutkin. Hän sekoittelee biiseissään poppia, räppiä ja discodancea. Ja käsittelee biiseissään mm. erilaisuutta ja tulevaisuutta. Debyyttisingle ”Hyvää Sunnuntaita” on soinut muutaman vuoden. Aktiivinen biisien teko ja keikkailu jatkuu edelleen. </p>", "sv": "<p>Jooja är en 16-årig artist, låtskrivare och musiker. Han är en mästare på gitarr, keyboards, trummor och kyrkorglar. Han blandar pop, rap och discodans i sina låtar. Och hans låtar handlar om frågor som mångfald och framtid.</p>", "en": "<p>Jooja is a 16-year-old artist, songwriter, and musician. He is a master of guitar, keyboards, drums and church organs. He mixes pop, rap and disco dance in his songs. And his songs deal with issues such as diversity and the future.</p>" }, "name": { "fi": "Jooja - konsertti", "sv": "Jooja - konsert", "en": "Jooja - concert" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjchg5uee/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4o5cq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o4ya/?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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-22T10:55:43.412704Z", "last_modified_time": "2024-09-24T09:13:10.006540Z", "date_published": null, "start_time": "2024-10-09T15:30:00Z", "end_time": "2024-10-09T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa \"Svenskt Språkcafé i Esboviken\" -ruotsin kielen kielikahvilaan, jossa ruotsinkieltä opiskelevat voivat harjoitella kieltä yhdessä.", "sv": "Välkommen till \"Svenskt Språkcafé i Esboviken\", ett språkcafé där svenska studenter kan öva tillsammans i Espoonlahti.", "en": "Välkommen till \"Svenskt Språkcafé i Esboviken\", a language café where Swedish students can practice together in Espoonlahti. " }, "info_url": null, "description": { "fi": "<p>Tervetuloa \"Svenskt Språkcafé i Esboviken\"-ruotsin kielen kielikahvilaan, jossa ruotsinkieltä voi harjoitella yhdessä.</p><p>Tapahtuman järjestää svenska.fi ja se on suunnattu kaikille, jotka haluavat oppia ruotsin kieltä.</p><p> </p><p>Hyvä tapa aloittaa uuden kielen opiskelu on tutustua muihin opiskelijoihin ja testata kuullun ymmärtämistä ja puhetaitoja.</p><p> </p><p>Kaikki ruotsinkielen tasot ovat tervetulleita, sillä pyrimme tarjoamaan avoimen ja rentouttavan oppimiskokemuksen kaikille.</p><p>Ei ennakkoilmoittautumista. Tilaisuus on kaikille avoin ja maksuton.</p><p>Kerrat ja aiheet:</p><p>11.9. Musiikki, elokuvat ja kirjallisuus </p><p>9.10. Terveys ja hyvinvointi</p><p>13.11. Perhe ja ihmissuhteet</p><p>11.12. Urheilu ja ulkoilu</p>", "sv": "<p>Välkommen till \"Svenskt Språkcafé i Esboviken\", ett språkcafé där svenska studenter kan öva tillsammans i Espoonlahti.</p><p> </p><p>Har du funderat på att lära dig svenska? Ett bra sätt att börja är att lära känna medstudenter och testa dina lyssnings- och tal skills.</p><p> </p><p>Evenemanget arrangeras av svenska.fi, en ideell organisation för allt som vill lära sig svenska språket i Finland.</p><p> </p><p>Alla nivåer är välkomna, eftersom vi strävar efter att ha en öppen och avslappnad, lärande upplevelse. Det behövs ingen anmälan, bara kom och njut!</p><p>Månad Datum\tTopics</p><p>September 11.9. Music, movies, and literature </p><p>Oktober 9.10.\tHealth and wellness</p><p>Novembe 13.11. Family and relationships</p><p>December 11.12.\tSports and outdoor activities</p>", "en": "<p>Välkommen till \"Svenskt Språkcafé i Esboviken\", a language café where Swedish students can practice together in Espoonlahti. </p><p> </p><p>Have you considered learning Swedish? A good way to start is getting to know fellow students and test your listening and speaking skills.</p><p> </p><p>The event is organized by svenska.fi, a non-profit organisation for anyone who wants to learn the Swedish language in Finland. </p><p> </p><p>All levels are welcome, as we strive to have an open and relaxed learning experience. There is no need to sign up, just come along and enjoy!</p><p>Dates and topics</p><p>Månad Datum\tTopics</p><p>September 11.9. Music, movies, and literature </p><p>Oktober 9.10.\tHealth and wellness</p><p>Novembe 13.11. Family and relationships</p><p>December 11.12.\tSports and outdoor activities</p>" }, "name": { "fi": "Ruotsin kielen kielikahvila Espoonlahdessa - PERUTTU", "sv": "Svenskt språkcafé i Esboviken -AVBRUTEN", "en": "Swedish Language Café at Espoonlahti - CANCELLED" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Svenska.fi", "sv": "Svenska.fi", "en": "Svenska.fi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o5cq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4o47a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o4ya/?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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-22T10:55:43.610705Z", "last_modified_time": "2024-09-24T09:13:09.929174Z", "date_published": null, "start_time": "2024-11-13T16:30:00Z", "end_time": "2024-11-13T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa \"Svenskt Språkcafé i Esboviken\" -ruotsin kielen kielikahvilaan, jossa ruotsinkieltä opiskelevat voivat harjoitella kieltä yhdessä.", "sv": "Välkommen till \"Svenskt Språkcafé i Esboviken\", ett språkcafé där svenska studenter kan öva tillsammans i Espoonlahti.", "en": "Välkommen till \"Svenskt Språkcafé i Esboviken\", a language café where Swedish students can practice together in Espoonlahti. " }, "info_url": null, "description": { "fi": "<p>Tervetuloa \"Svenskt Språkcafé i Esboviken\"-ruotsin kielen kielikahvilaan, jossa ruotsinkieltä voi harjoitella yhdessä.</p><p>Tapahtuman järjestää svenska.fi ja se on suunnattu kaikille, jotka haluavat oppia ruotsin kieltä.</p><p> </p><p>Hyvä tapa aloittaa uuden kielen opiskelu on tutustua muihin opiskelijoihin ja testata kuullun ymmärtämistä ja puhetaitoja.</p><p> </p><p>Kaikki ruotsinkielen tasot ovat tervetulleita, sillä pyrimme tarjoamaan avoimen ja rentouttavan oppimiskokemuksen kaikille.</p><p>Ei ennakkoilmoittautumista. Tilaisuus on kaikille avoin ja maksuton.</p><p>Kerrat ja aiheet:</p><p>11.9. Musiikki, elokuvat ja kirjallisuus </p><p>9.10. Terveys ja hyvinvointi</p><p>13.11. Perhe ja ihmissuhteet</p><p>11.12. Urheilu ja ulkoilu</p>", "sv": "<p>Välkommen till \"Svenskt Språkcafé i Esboviken\", ett språkcafé där svenska studenter kan öva tillsammans i Espoonlahti.</p><p> </p><p>Har du funderat på att lära dig svenska? Ett bra sätt att börja är att lära känna medstudenter och testa dina lyssnings- och tal skills.</p><p> </p><p>Evenemanget arrangeras av svenska.fi, en ideell organisation för allt som vill lära sig svenska språket i Finland.</p><p> </p><p>Alla nivåer är välkomna, eftersom vi strävar efter att ha en öppen och avslappnad, lärande upplevelse. Det behövs ingen anmälan, bara kom och njut!</p><p>Månad Datum\tTopics</p><p>September 11.9. Music, movies, and literature </p><p>Oktober 9.10.\tHealth and wellness</p><p>Novembe 13.11. Family and relationships</p><p>December 11.12.\tSports and outdoor activities</p>", "en": "<p>Välkommen till \"Svenskt Språkcafé i Esboviken\", a language café where Swedish students can practice together in Espoonlahti. </p><p> </p><p>Have you considered learning Swedish? A good way to start is getting to know fellow students and test your listening and speaking skills.</p><p> </p><p>The event is organized by svenska.fi, a non-profit organisation for anyone who wants to learn the Swedish language in Finland. </p><p> </p><p>All levels are welcome, as we strive to have an open and relaxed learning experience. There is no need to sign up, just come along and enjoy!</p><p>Dates and topics</p><p>Månad Datum\tTopics</p><p>September 11.9. Music, movies, and literature </p><p>Oktober 9.10.\tHealth and wellness</p><p>Novembe 13.11. Family and relationships</p><p>December 11.12.\tSports and outdoor activities</p>" }, "name": { "fi": "Ruotsin kielen kielikahvila Espoonlahdessa - PERUTTU", "sv": "Svenskt språkcafé i Esboviken -AVBRUTEN", "en": "Swedish Language Café at Espoonlahti - CANCELLED" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Svenska.fi", "sv": "Svenska.fi", "en": "Svenska.fi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o47a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4o43u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o4ya/?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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-22T10:55:43.811644Z", "last_modified_time": "2024-09-24T09:13:09.825531Z", "date_published": null, "start_time": "2024-12-11T16:30:00Z", "end_time": "2024-12-11T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa \"Svenskt Språkcafé i Esboviken\" -ruotsin kielen kielikahvilaan, jossa ruotsinkieltä opiskelevat voivat harjoitella kieltä yhdessä.", "sv": "Välkommen till \"Svenskt Språkcafé i Esboviken\", ett språkcafé där svenska studenter kan öva tillsammans i Espoonlahti.", "en": "Välkommen till \"Svenskt Språkcafé i Esboviken\", a language café where Swedish students can practice together in Espoonlahti. " }, "info_url": null, "description": { "fi": "<p>Tervetuloa \"Svenskt Språkcafé i Esboviken\"-ruotsin kielen kielikahvilaan, jossa ruotsinkieltä voi harjoitella yhdessä.</p><p>Tapahtuman järjestää svenska.fi ja se on suunnattu kaikille, jotka haluavat oppia ruotsin kieltä.</p><p> </p><p>Hyvä tapa aloittaa uuden kielen opiskelu on tutustua muihin opiskelijoihin ja testata kuullun ymmärtämistä ja puhetaitoja.</p><p> </p><p>Kaikki ruotsinkielen tasot ovat tervetulleita, sillä pyrimme tarjoamaan avoimen ja rentouttavan oppimiskokemuksen kaikille.</p><p>Ei ennakkoilmoittautumista. Tilaisuus on kaikille avoin ja maksuton.</p><p>Kerrat ja aiheet:</p><p>11.9. Musiikki, elokuvat ja kirjallisuus </p><p>9.10. Terveys ja hyvinvointi</p><p>13.11. Perhe ja ihmissuhteet</p><p>11.12. Urheilu ja ulkoilu</p>", "sv": "<p>Välkommen till \"Svenskt Språkcafé i Esboviken\", ett språkcafé där svenska studenter kan öva tillsammans i Espoonlahti.</p><p> </p><p>Har du funderat på att lära dig svenska? Ett bra sätt att börja är att lära känna medstudenter och testa dina lyssnings- och tal skills.</p><p> </p><p>Evenemanget arrangeras av svenska.fi, en ideell organisation för allt som vill lära sig svenska språket i Finland.</p><p> </p><p>Alla nivåer är välkomna, eftersom vi strävar efter att ha en öppen och avslappnad, lärande upplevelse. Det behövs ingen anmälan, bara kom och njut!</p><p>Månad Datum\tTopics</p><p>September 11.9. Music, movies, and literature </p><p>Oktober 9.10.\tHealth and wellness</p><p>Novembe 13.11. Family and relationships</p><p>December 11.12.\tSports and outdoor activities</p>", "en": "<p>Välkommen till \"Svenskt Språkcafé i Esboviken\", a language café where Swedish students can practice together in Espoonlahti. </p><p> </p><p>Have you considered learning Swedish? A good way to start is getting to know fellow students and test your listening and speaking skills.</p><p> </p><p>The event is organized by svenska.fi, a non-profit organisation for anyone who wants to learn the Swedish language in Finland. </p><p> </p><p>All levels are welcome, as we strive to have an open and relaxed learning experience. There is no need to sign up, just come along and enjoy!</p><p>Dates and topics</p><p>Månad Datum\tTopics</p><p>September 11.9. Music, movies, and literature </p><p>Oktober 9.10.\tHealth and wellness</p><p>Novembe 13.11. Family and relationships</p><p>December 11.12.\tSports and outdoor activities</p>" }, "name": { "fi": "Ruotsin kielen kielikahvila Espoonlahdessa - PERUTTU", "sv": "Svenskt språkcafé i Esboviken -AVBRUTEN", "en": "Swedish Language Café at Espoonlahti - CANCELLED" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Svenska.fi", "sv": "Svenska.fi", "en": "Svenska.fi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o43u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4o4ya", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o43u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o47a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o5cq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o5ge/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o5ua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o5xm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-22T10:55:39.312592Z", "last_modified_time": "2024-09-24T09:13:08.948526Z", "date_published": null, "start_time": "2024-04-10T15:30:00Z", "end_time": "2024-12-11T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa \"Svenskt Språkcafé i Esboviken\" -ruotsin kielen kielikahvilaan, jossa ruotsinkieltä opiskelevat voivat harjoitella kieltä yhdessä.", "sv": "Välkommen till \"Svenskt Språkcafé i Esboviken\", ett språkcafé där svenska studenter kan öva tillsammans i Espoonlahti.", "en": "Välkommen till \"Svenskt Språkcafé i Esboviken\", a language café where Swedish students can practice together in Espoonlahti. " }, "info_url": null, "description": { "fi": "<p>Tervetuloa \"Svenskt Språkcafé i Esboviken\"-ruotsin kielen kielikahvilaan, jossa ruotsinkieltä voi harjoitella yhdessä.</p><p>Tapahtuman järjestää svenska.fi ja se on suunnattu kaikille, jotka haluavat oppia ruotsin kieltä.</p><p> </p><p>Hyvä tapa aloittaa uuden kielen opiskelu on tutustua muihin opiskelijoihin ja testata kuullun ymmärtämistä ja puhetaitoja.</p><p> </p><p>Kaikki ruotsinkielen tasot ovat tervetulleita, sillä pyrimme tarjoamaan avoimen ja rentouttavan oppimiskokemuksen kaikille.</p><p>Ei ennakkoilmoittautumista. Tilaisuus on kaikille avoin ja maksuton.</p><p>Kerrat ja aiheet:</p><p>11.9. Musiikki, elokuvat ja kirjallisuus </p><p>9.10. Terveys ja hyvinvointi</p><p>13.11. Perhe ja ihmissuhteet</p><p>11.12. Urheilu ja ulkoilu</p>", "sv": "<p>Välkommen till \"Svenskt Språkcafé i Esboviken\", ett språkcafé där svenska studenter kan öva tillsammans i Espoonlahti.</p><p> </p><p>Har du funderat på att lära dig svenska? Ett bra sätt att börja är att lära känna medstudenter och testa dina lyssnings- och tal skills.</p><p> </p><p>Evenemanget arrangeras av svenska.fi, en ideell organisation för allt som vill lära sig svenska språket i Finland.</p><p> </p><p>Alla nivåer är välkomna, eftersom vi strävar efter att ha en öppen och avslappnad, lärande upplevelse. Det behövs ingen anmälan, bara kom och njut!</p><p>Månad Datum\tTopics</p><p>September 11.9. Music, movies, and literature </p><p>Oktober 9.10.\tHealth and wellness</p><p>Novembe 13.11. Family and relationships</p><p>December 11.12.\tSports and outdoor activities</p>", "en": "<p>Välkommen till \"Svenskt Språkcafé i Esboviken\", a language café where Swedish students can practice together in Espoonlahti. </p><p> </p><p>Have you considered learning Swedish? A good way to start is getting to know fellow students and test your listening and speaking skills.</p><p> </p><p>The event is organized by svenska.fi, a non-profit organisation for anyone who wants to learn the Swedish language in Finland. </p><p> </p><p>All levels are welcome, as we strive to have an open and relaxed learning experience. There is no need to sign up, just come along and enjoy!</p><p>Dates and topics</p><p>Månad Datum\tTopics</p><p>September 11.9. Music, movies, and literature </p><p>Oktober 9.10.\tHealth and wellness</p><p>Novembe 13.11. Family and relationships</p><p>December 11.12.\tSports and outdoor activities</p>" }, "name": { "fi": "Ruotsin kielen kielikahvila Espoonlahdessa - PERUTTU", "sv": "Svenskt språkcafé i Esboviken -AVBRUTEN", "en": "Swedish Language Café at Espoonlahti - CANCELLED" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Svenska.fi", "sv": "Svenska.fi", "en": "Svenska.fi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4o4ya/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agjcgpa6tq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17354/?format=api" } ], "created_time": "2024-09-24T08:53:15.560447Z", "last_modified_time": "2024-09-24T08:53:45.237996Z", "date_published": null, "start_time": "2024-10-13T09:30:00Z", "end_time": "2024-10-13T11:45: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": "No enrolments test", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "<p>No enrolments test</p>\n", "sv": "", "en": "" }, "name": { "fi": "No enrolments test", "sv": "", "en": "" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agjcgpa6tq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agjcgoviku", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:54/?format=api" } ], "created_time": "2024-09-24T08:51:39.787004Z", "last_modified_time": "2024-09-24T08:52:27.539694Z", "date_published": null, "start_time": "2024-10-20T09: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": "External enrolments test", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "<p>External enrolments test</p>\n", "sv": "", "en": "" }, "name": { "fi": "External enrolments test", "sv": "", "en": "" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agjcgoviku/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiva4pdla", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiva4peny/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-08-14T09:37:14.929132Z", "last_modified_time": "2024-09-24T08:28:40.087183Z", "date_published": null, "start_time": "2024-10-09T13:00:00Z", "end_time": "2024-10-09T15: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 opettelemaan virkkausta tai neulomista Laurinlahden Marttojen opastuksella. Opastusta aloittelijoille tai kokeneemmillekin käsityötaitajille. ", "sv": "Kom och lär dig virka eller sticka under ledning av Laurinlahden Martat. Instruktioner för nybörjare och även mer erfarna hantverkare. ", "en": "Come and learn how to crochet or knit with the guidance of the Laurinlahden Martat. Instruction for beginners or even more experienced craftsmen." }, "info_url": null, "description": { "fi": "<p>Tule opettelemaan virkkausta tai neulomista Laurinlahden Marttojen opastuksella. Opastusta aloittelijoille tai kokeneemmillekin käsityötaitajille. </p><p>Voit tuoda mukanasi oman käsityösi. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och lär dig virka eller sticka under ledning av Laurinlahden Martat. Instruktioner för nybörjare och även mer erfarna hantverkare. </p><p>Du kan ta med ditt eget handarbete. Biblioteket står för det material som behövs.</p>", "en": "<p>Come and learn how to crochet or knit with the guidance of the Laurinlahden Martat. Instruction for beginners or even more experienced craftsmen.</p><p>You can bring your own handicraft. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä Laurinlahden Marttojen kanssa", "sv": "Pysseleftermiddag med Laurinlahden Martat", "en": "Arts and crafts afternoon with Laurinlahden Martat in the library’s Makerspace" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiva4pdla/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjcf5xmle", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiva4peny/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-08-14T09:37:14.732305Z", "last_modified_time": "2024-09-24T08:25:50.657366Z", "date_published": null, "start_time": "2024-10-02T13:00:00Z", "end_time": "2024-10-02T15: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 opettelemaan virkkausta tai neulomista Laurinlahden Marttojen opastuksella. Opastusta aloittelijoille tai kokeneemmillekin käsityötaitajille. ", "sv": "Kom och lär dig virka eller sticka under ledning av Laurinlahden Martat. Instruktioner för nybörjare och även mer erfarna hantverkare. ", "en": "Come and learn how to crochet or knit with the guidance of the Laurinlahden Martat. Instruction for beginners or even more experienced craftsmen." }, "info_url": null, "description": { "fi": "<p>Tule opettelemaan virkkausta tai neulomista Laurinlahden Marttojen opastuksella. Opastusta aloittelijoille tai kokeneemmillekin käsityötaitajille. </p><p>Voit tuoda mukanasi oman käsityösi. Kirjasto tarjoaa tarvittavat materiaalit.</p>", "sv": "<p>Kom och lär dig virka eller sticka under ledning av Laurinlahden Martat. Instruktioner för nybörjare och även mer erfarna hantverkare. </p><p>Du kan ta med ditt eget handarbete. Biblioteket står för det material som behövs.</p>", "en": "<p>Come and learn how to crochet or knit with the guidance of the Laurinlahden Martat. Instruction for beginners or even more experienced craftsmen.</p><p>You can bring your own handicraft. The library will provide the necessary materials.</p>" }, "name": { "fi": "Pajailtapäivä Laurinlahden Marttojen kanssa", "sv": "Pysseleftermiddag med Laurinlahden Martat", "en": "Arts and crafts afternoon with Laurinlahden Martat in the library’s Makerspace" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcf5xmle/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjcfqexnq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T12:36:28.849386Z", "last_modified_time": "2024-09-24T05:57:58.535612Z", "date_published": "2024-09-23T04:59:00Z", "start_time": "2024-09-23T05:00:00Z", "end_time": "2024-10-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Roosa Laamasen valokuvanäyttely \"Tagged tales: Exploring the language of street art\" Entressen kirjaston Valatori-seinällä 23.9.-13.10.2024.", "sv": "Roosa Laamanens utställning \"Tagged tales: Exploring the language of street art\" i Entressebiblioteket under tiden 23.9.-13.10.2024.", "en": "Art exhibition \"Tagged tales: Exploring the language of street art\" by Roosa Laamanen in Entresse Library during 23.9.-13.10.2024." }, "info_url": null, "description": { "fi": "<p>Tagged Tales: Exploring the language of street art on valokuvaaja Roosa Laamasen dokumentaarinen valokuvaprojekti, joka koostuu vuosien 2023-2024 aikana kuvatuista tägeistä Espoon alueelta.</p><p><br></p><p>Tägit asetetaan katsojan eteen uudessa valossa valokuvataiteen keinoin, tekemällä näkyväksi niiden kiistanalaista ja vakiintunutta jalansijaa suomalaisessa katukuvassa, sekä historiaa graffitin ja katutaiteen alkumetreiltä nykypäivään.</p><p><br></p><p>Teoskokonaisuus käsittelee alati muuttuvaa kaupunkimiljöötä ja tägien vaikutusta katukuvaan realistisessa ympäristössään ja herättää katsojan pohtimaan niiden taiteellista arvoa, hetkellisyyttä, sekä laittomuuden näkökulmaa tekijöitä unohtamatta.</p>", "sv": "<p>Välkommen att besöka Roosa Laamanens utställning \"Tagged tales: Exploring the language of street art\" i Entressebiblioteket under tiden 23.9.-13105.2024. Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Art exhibition \"Tagged tales: Exploring the language of street art\" by Roosa Laamanen in Entresse Library during 23.9.-13.10.2024. Welcome!</p>" }, "name": { "fi": "Roosa Laamanen: Tagged tales 23.9.-13.10.2024", "sv": "Roosa Laamanen: Tagged tales 23.9.-13.10.2024", "en": "Roosa Laamanen: Tagged tales 23.9.-13.10.2024" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcfqexnq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64603", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152581, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T14:15:35.021244Z", "last_modified_time": "2024-09-23T14:15:35.021266Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745746.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152581/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T14:15:35.000044Z", "last_modified_time": "2024-09-23T14:15:35.070901Z", "date_published": null, "start_time": "2024-10-18T15: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": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0D48B6FDF0D8C5573A5C54E6EB4E7047/Mielensapahoittajan_rakkaustarina_S_" }, "description": { "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>" }, "name": { "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64603/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64602", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T14:15:32.559503Z", "last_modified_time": "2024-09-23T14:15:32.559524Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745740.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T14:15:32.542750Z", "last_modified_time": "2024-09-23T14:15:32.605584Z", "date_published": null, "start_time": "2024-10-12T15: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": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DB2CF5F1F305016CEDBA454F151A32E7/Mielensapahoittajan_rakkaustarina_S_" }, "description": { "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>" }, "name": { "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64602/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64601", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152575, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T14:15:32.018061Z", "last_modified_time": "2024-09-23T14:15:32.018080Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745736.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152575/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T14:15:31.996219Z", "last_modified_time": "2024-09-23T14:15:32.073964Z", "date_published": null, "start_time": "2024-10-11T12: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": "Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BB1933E69A2010F6FF4ECF9D3619C18D/Mielensapahoittajan_rakkaustarina_S_" }, "description": { "fi": "<p>Mielensäpahoittaja haistaa kauppareissullaan Saimin, naisen, joka tuoksuu juuri oikealta ja saa koko miehen sekaisin.</p><p>Ei olisi Mielensäpahoittaja uskonut, että rinnassa voi vielä tuntua kuin ihastuneella pojanklopilla. Mielensäpahoittaja joutuu myöntämään, että viihtyy Saimin seurassa. Toisen sanat, katseet ja kosketus herättävät kauan unohduksissa olleita tuntemuksia.</p><p>Mielensäpahoittajan pojat ovat epäuskoisia ja suorastaan mustasukkaisia isästään, eivätkä tahdo luottaa Saimin vilpittömyyteen…ettei vaan olisi perinnön perässä? Perhepalavereja, väärinkäsityksiä, kuutamouintia ja unettomia öitä.</p><p>Kyllä voi rakkauden nuoli lävistää vanhemmankin flanellipaidan.</p><p>Kesto: 98 min<br>Ikäraja: Sallittu kaikenikäisille<br>Liput: 7 €<br>Elokuva on tekstitetty suomeksi.</p>" }, "name": { "fi": "Mielensäpahoittajan rakkaustarina (S) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64601/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64578", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152569, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-23T14:15:28.991003Z", "last_modified_time": "2024-09-23T14:15:28.991024Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758152.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152569/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-23T14:15:28.932309Z", "last_modified_time": "2024-09-23T14:15:29.077361Z", "date_published": null, "start_time": "2024-10-02", "end_time": "2024-10-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Marika Halosen valokuvissa ruma ja rikkinäinen todellisuus kohtaa taiteilijan rakentamat pilvilinnat. Kuvissa näkyy romua ja roskia ja kaiken yllä leijailee ihana värisavu, joka on kuin liikkuva ajatus, jota ei voi ennakoida.", "en": "\"In the pictures, you can see scrap and garbage, and above everything floats a wonderful colored smoke, which is like a moving thought that cannot be predicted\" artist Marika Halonen tells." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7E5D6A7E83A21CF4DD6476A2E1A9F328/Marika_Halonen_Ou_Topos_2", "en": "http://www.malmitalo.fi/en/events/event/7E5D6A7E83A21CF4DD6476A2E1A9F328/Marika_Halonen_Ou_Topos_2" }, "description": { "fi": "<p>Marika Halosen valokuvissa ruma ja rikkinäinen todellisuus kohtaa taiteilijan rakentamat pilvilinnat. Kuvissa näkyy romua ja roskia ja kaiken yllä leijailee ihana värisavu, joka on kuin liikkuva ajatus, jota ei voi ennakoida.</p><p>“Punainen värisavu purkautuu ulos pienestä metallisesta purkista muodostaen pilven kaltaisen alati muuttuvan muodon. Katson sitä kameran etsimen läpi ja yritän tallentaa näkemääni nopeasti ennen kuin se katoaa. Parin minuutin ajan se tanssii silmieni edessä, liikkuen yhä laajemmalle alueelle. Samalla tumma punainen liukuu kohti vaaleampia värisävyjä. Suurimman osan aikaa se on ihanan vaaleanpunainen. Tuuli näyttää sille suunnan, sitä ei voi kontrolloida. Voin vain laittaa alulle tämän tapahtumaketjun mutten määrätä sen lopullisesta koreografiasta.</p><p>Näistä katoavista hetkistä syntyy valokuvia, joihin tallentuu sekä savu että maisema. Kuvissani on käynnissä spektaakkeli, mutta yleisö ei ole paikalla. Ne ovat kameralle rakennettuja esityksiä, hetkellisiä utopioita, pilvilinnoja. Valokuvani paikantuvat asutuksien reuna-alueille, moderneille raunioille tai hylättyihin rakennuksiin. Näistä tyhjistä tiloista käsin työstän utopiaani. Esitykseni avulla performoin nykyhetkeen katkoksen ja sen avulla maisema muuttuu toiseksi, paikaksi, jota ei ole.</p><p>Olen käyttänyt savupommeja valokuvateoksissani vuodesta 2014 lähtien. Aluksi kuvasin niitä metsissä, kallioilla ja rannoilla, sittemmin joutomaa-alueet ja hylättyjen rakennusten rauniot löysivät tiensä savuperformanssieni näyttämöiksi. Ne tuntuivat kuuluvan yhteen ja tuntuvat siltä yhä. Valokuvissani ruma ja rikkinäinen todellisuus kohtaa rakentamani pilvilinnat. Kuvissa näkyy romua ja roskia ja kaiken yllä leijailee ihana värisavu, joka on kuin liikkuva ajatus, jota ei voi ennakoida\", Marika kertoo.</p><p><b>Marika Halonen</b> on Turun Taideakatemiasta valmistunut Helsinkiläinen kuvataiteilija. Halosen työskentelyssä intuitiolla ja sattumalla on suuri rooli. Prosessiin kuuluu olennaisesti myös seikkailu: etsiminen ja löytäminen. Se on jatkuvaa kokeilemista, improvisointia, sään armoilla olemista ja epävarmuuden sietämistä.</p><p>Marika Halosen \"Ou Topos #2\" -näyttelyn avajaiset Malmitalon galleriassa keskiviikkona 2.10. klo 17, tervetuloa!</p><p>Vapaa pääsy</p>", "en": "<p>\"In the pictures, you can see scrap and garbage, and above everything floats a wonderful colored smoke, which is like a moving thought that cannot be predicted\" artist Marika Halonen tells.</p><p>“The red colored smoke escapes out of a small metal jar, forming an ever-changing shape like a cloud. I follow it through the camera and try to record what I see quickly before it disappears. For a couple of minutes, it dances in front of my eyes, moving into an ever-widening area. At the same time, dark red slides toward lighter shades of color. Most of the time it is amazingly pink. With a smoke bomb, you can never know how it behaves. It flies with the wind, it cannot be controlled.<br> <br>I use my camera to capture these vanishing moments. When I shoot smoke bombs, I create an illusion in a real physical place. They are performances built for the camera, momentary utopias, cloud castles. Color smoke transforms landscape for a moment into another reality where something incomprehensible is going on. But it only takes a moment and is gone in a couple of minutes. My photos are located on forgotten places, in modern ruins or in an abandoned buildings. With my performance, I perform a break into the present moment and it transforms the landscape into another place, a place that does not exist.</p><p>I have been using smoke bombs in my photo works since 2014. At first I photographed them in forests, cliffs and beaches, then wasteland areas and the ruins of abandoned buildings found their way into the stages of my smoke performances. They seemed to belong together and still still feel that way. In my photos, ugly and broken reality meets the cloud castles I build. In the pictures, you can see scrap and garbage, and above everything floats a wonderful colored smoke, which is like a moving thought that cannot be predicted”, the artist tells.</p><p>Marika Halonen is a visual artist from Helsinki who graduated from the Turku Academy of Arts. Intuition play a big role in Halonen's work. The process also essentially includes adventure: searching and finding. It is constant experimentation, improvisation, being at the mercy of the weather, tolerating uncertainty.</p><p>Free entry. The exhibition opening will be held on October 2nd at 5 PM. Snacks available, and the artist will be present. Welcome!</p>" }, "name": { "fi": "Marika Halonen – Ou Topos #2", "en": "Marika Halonen – Ou Topos #2" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64578/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63431", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151569, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T15:13:42.958793Z", "last_modified_time": "2024-06-27T15:13:42.958808Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749893.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151569/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T15:13:42.932489Z", "last_modified_time": "2024-09-23T14:15:28.613743Z", "date_published": null, "start_time": "2024-09-30T07:15:00Z", "end_time": "2024-09-30T07:45: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": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/13E9E7537DCA484538A0AE1306DB31AD/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/13E9E7537DCA484538A0AE1306DB31AD/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/13E9E7537DCA484538A0AE1306DB31AD/Musical_Art_Adventure" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 30 min <br>Ikäryhmä: 3–12 kk<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä on noin 12 osallistujaa, 6 lasta ja 6 aikuista.</p><p>Varaa yksi paikka per lapsi + aikuinen.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ<b>ma 30.9.2024 klo 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ<b>ma 14.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ<b>ma 11.11.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ<b>ma 25.11. klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama. Konstäventyren ordnas två måndagar i månaden.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 3–12 mån.<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har ca 12 deltagare, 6 barn och 6 vuxna.<br>Boka en plats per barn + vuxen.</p><p><b>Anmälningslänkar:</b></p><p><b>Mån 2 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">anmäl dig här</u></a></p><p><b>Mån 19 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">anmäl dig här</u></a></p><p><b>Mån 30 september 2024 kl 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">anmäl dig här</u></a></p><p><b>Mån 14 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">anmäl dig här</u></a></p><p><b>Mån 28 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">anmäl dig här</u></a></p><p><b>Mån 11 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">anmäl dig här</u></a></p><p><b>Mån 25 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">anmäl dig här</u></a></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: https://link.webropol.com/s/Taideseikkailunjono</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 30 min <br>Age group: 3–12 months<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p>Mon 2 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">Register here</u></a></p><p>Mon 16 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">Register here</u></a></p><p>Mon 30 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">Register here</u></a></p><p>Mon 14 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">Register here</u></a></p><p>Mon 28 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">Register here</u></a></p><p>Mon 11 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">Register here</u></a></p><p>Mon 25 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">Register her</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "name": { "fi": "Musiikillinen taideseikkailu – vauvoille", "sv": "Musikaliskt konstäventyr – för bebisar", "en": "Musical Art Adventure – for babies" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63431/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63424", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T14:13:40.605801Z", "last_modified_time": "2024-06-27T14:13:40.605814Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749879.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T14:13:40.565113Z", "last_modified_time": "2024-09-23T14:15:28.503212Z", "date_published": null, "start_time": "2024-09-30T06:00:00Z", "end_time": "2024-09-30T06:45: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": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BF41624C16C5C975180C90A5001F5F58/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/BF41624C16C5C975180C90A5001F5F58/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/BF41624C16C5C975180C90A5001F5F58/Musical_Art_Adventure" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 45 min <br>Ikäryhmä: 3–5-vuotiaat<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ <b>ma 30.9.2024 klo 9–9.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ <b>ma 14.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ <b>ma 28.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Konstäventyren ordnas två måndagar i månaden.<br>Sessionens längd är ca 45 min <br>Åldersgrupp: 3–5-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p><b>Anmälningslänkar:</b><br>Mån 2 september, anmäl dig här: <u>https://link.webropol.com/ep/Musiikillinentaideseikkailu1</u><br>Mån 19 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/698DC8FF0E0DF334</u><br>Mån 30 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/391AFEC18D9C9840</u><br>Mån 14 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/0170408FEA72C33A</u><br>Mån 28 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/F00843A72BA8396A</u><br>Mån 11 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/D2F49BEB81810254</u><br>Mån 25 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE</u></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: <u>https://link.webropol.com/s/Taideseikkailunjono</u></p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 45 min <br>Age group: Ages 3–5<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p><b>Mon 2 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">Register here</u></a></p><p><b>Mon 16 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">Register here </u></a></p><p><b>Mon 30 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">Register here</u></a></p><p><b>Mon 14 October at 9 am to 9:45 am</b> <br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">Register here</u></a></p><p><b>Mon 28 October at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">Register here</u></a></p><p><b>Mon 11 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">Register here</u></a></p><p><b>Mon 25 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">Register here</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "name": { "fi": "Musiikillinen taideseikkailu – 3–5-vuotiaille", "sv": "Musikaliskt konstäventyr – för 3–5-åringar", "en": "Musical Art Adventure – for 3–5-year-olds" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63424/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64356", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152282, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-04T10:14:55.077993Z", "last_modified_time": "2024-09-04T10:14:55.078014Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756876.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152282/?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-09-04T10:14:55.051213Z", "last_modified_time": "2024-09-23T13:14:56.058199Z", "date_published": null, "start_time": "2024-10-05T11: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": "Kuoppa siellä, kuoppa täällä, kuopat hoituu joka säällä. Missä maa on tasainen ja kuoppaa kaivataan, ilolla ja ylpeydellä hommat hoitaa kuopankaivajat!", "sv": "En grop här, en grop där, gropar tas om hand i alla väder. Där marken är plan och i behov av en grop, kommer gropgrävarna och gör jobbet med glädje och stolthet!", "en": "A hole here, another there. We dig holes in any weather. If the ground is flat and you need a hole, it’s our pride and joy to be your mole!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E566C274730C9851A9FB36DC620128B6/Teatteri_Rollo_Kuopankaivajat", "sv": "http://www.annantalo.fi/sv/evenemang/event/E566C274730C9851A9FB36DC620128B6/Teater_Rollo_Kuopankaivajat", "en": "http://www.annantalo.fi/en/events/event/E566C274730C9851A9FB36DC620128B6/Theatre_Company_Rollo_Kuopankaivajat_Diggers_" }, "description": { "fi": "<p>Kuoppa siellä, kuoppa täällä, kuopat hoituu joka säällä. Missä maa on tasainen ja kuoppaa kaivataan, ilolla ja ylpeydellä hommat hoitaa kuopankaivajat!</p><p>Oy Kuoppa Ab:n kuopankaivaja Hiekkanen, Kivinen ja Tasanen saapuvat työmaalle kaivamaan kuopan. Ennen kuin päästään lapiohommiin, on kaivajilla monenlaista puuhaa: pitää etsiä kuopalle paikka; pitää merkitä työmaa; pitää päättää tehdäänkö peruskuoppa, vai kuinka olisi juhlakuoppa? Vai sittenkin ilmakuoppa? Työmaan valmisteluun tarvitaan monenlaista merkkiä, tolppaa ja kylttiä, hanskoja, mittoja ja muutama työlaulukin!<br> <br>Tämä musiikkipitoinen työmaa innostaa niin päiväkoti-ikäisiä kuin alakoulun pienimpiä oppilaita puhumattakaan perheen työmiehistä ja -naisista!<br> <br>Ohjaus: Sanna Monto <br>Käsikirjoitus ja esiintyjät: Wisa Heinonen, Janne Immonen, Sanna Monto <br>Musiikki: Janne Immonen <br>Laulujen sanat: Wisa Heinonen <br>Lavastus: Kati Lamppu <br>Puvustus: Niina Huovinen <br>Tekniikka: Juha Skukin <br> <br>Ikäsuositus: 3-7 vuotiaat <br>Esityksen kesto: noin 40 minuuttia <br>Kieli: suomi</p><p>Liput: ryhmälippu 6 € (väh. 5 hlöä). Opettajat ja ohjaajat maksutta.<br>Muut liput: 10 € <br>Lippuvaraukset: rollo@rollo.fi</p>", "sv": "<p>En grop här, en grop där, gropar tas om hand i alla väder. Där marken är plan och i behov av en grop, kommer gropgrävarna och gör jobbet med glädje och stolthet!</p><p>Gropgrävarna Hiekkanen, Kivinen och Tasanen från Oy Kuoppa Ab kommer till en byggarbetsplats för att gräva en grop. Innan de kan sätta igång med spaden är det mycket som ska göras: de måste hitta en plats att gräva gropen på, markera platsen, bestämma om det ska vara en vanlig grop eller kanske en festlig grop? Eller hur skulle det vara med en luftgrop? För att förbereda arbetsplatsen krävs en mängd olika märken, stolpar och skyltar, handskar, mått och till och med några arbetsramsor!</p><p>Den här musikfyllda arbetsplatsen passar både förskolebarn och lågstadiets minsta, för att inte tala om de arbetsföra männen och kvinnorna i familjen!</p><p>Regi: Sanna Monto<br>Manus och skådespelare: Wisa Heinonen, Janne Immonen, Sanna Monto<br>Musik: Janne Immonen<br>Sångtexter: Wisa Heinonen<br>Scenografi: Kati Lamppu<br>Kostymer: Niina Huovinen<br>Teknik: Juha Skukin</p><p>Åldersrekommendation: 3–7-åringar<br>Föreställningens längd: ca 40 minuter<br>Språk: finska</p><p>Biljetter: gruppbiljett 6 € (minst 5 personer). Lärare och handledare utan kostnad.<br>Övriga biljetter: 10 €<br>Biljettreservationer: rollo@rollo.fi</p>", "en": "<p>A hole here, another there. We dig holes in any weather. If the ground is flat and you need a hole, it’s our pride and joy to be your mole!</p><p>Oy Kuoppa Ab's hole diggers Hiekkanen, Kivinen and Tasanen arrive at a construction site to dig a hole. Before the shovelling can begin, the diggers have a lot do: find a place for the hole; mark the construction site; decide whether to create a basic hole or whole hole? Or should it be a holy hole? After the construction site is ready, you lots of signs, posts and placards, gloves, measurements and a few work songs!</p><p>This music-rich construction yard is an inspiration for both daycare-aged children and younger primary school pupils, not to mention the family’s working men and women!</p><p>Director: Sanna Monto<br>Script and cast: Wisa Heinonen, Janne Immonen, Sanna Monto<br>Music: Janne Immonen<br>Song lyrics: Wisa Heinonen<br>Stage design: Kati Lamp<br>Costumes: Niina Huovinen<br>Technique: Juha Skukin</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 40 minutes<br>Language: Finnish</p><p>Tickets: group ticket €6 (min. 5 persons). Teachers and instructors free of charge.<br>Other tickets: €10<br>Ticket reservations: rollo@rollo.fi</p>" }, "name": { "fi": "Teatteri Rollo: Kuopankaivajat", "sv": "Teater Rollo: Kuopankaivajat", "en": "Theatre Company Rollo: Kuopankaivajat (Diggers)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64356/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }