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=696®istration__remaining_waiting_list_capacity__isnull=true
{ "meta": { "count": 32740, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=697®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=695®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "espoo_le:agijfbflze", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-08T12:11:36.262408Z", "last_modified_time": "2024-09-26T10:32:01.388636Z", "date_published": "2024-07-08T11:54:00Z", "start_time": "2024-11-21T16:00:00Z", "end_time": "2024-11-21T17: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": "Alexandra Salmela ja Riika Kotka keskustelevat Salmelan romaanista \"Puu\", jossa reaalimaailma ja fantasia kohtaavat. ", "sv": "Litteraturevenemanget presenterar ett samtal mellan Alexandra Salmela och Riika Kotka om Salmelas roman \"Puu\", där verklighet och fantasi möts.", "en": "The literary event features a conversation between Alexandra Salmela and Riika Kotka about Salmela's novel \"Puu,\" where reality and fantasy intersect." }, "info_url": null, "description": { "fi": "<p>HUOM! Uusi päivämäärä! Tämä tapahtuma järjestetään torstaina 21.11.2024 klo 18:00. (Aiemmin oli ilmoitettu 31.10.2024.)</p><p>Jos J. R. R. Tolkien saagan sijoittaisi reaalimaailmaan, se voisi toteutua <strong>Alexandra Salmelan</strong> allegorisessa romaanissa <a href=\"https://helmet.finna.fi/Record/helmet.2549685?sid=4748049784\">Puu</a>. Siinä hirviöhahmo, jonka nimi kuulostaa oksennukselta vartioi maailman viimeistä puuta. Mitä ajatuksia Salmelan kirjan sisältö meille tarjoaa? Entä miten kirjailija työskentelee, kuinka romaani syntyy?</p><p>Haastattelijana kirjailija Riika Kotka.</p><p>Kaikille avoimet kirjallisuustapahtumat järjestetään Espoon kirjailijat ry:n ja Tapiolan kirjaston yhteistyönä. Tervetuloa!</p>", "sv": "<p>OBS! Nytt datum! Detta event kommer att äga rum torsdagen den 21.11.2024 kl. 18:00. (Tidigare meddelat 31.10.2024.)</p><p>Litteraturevenemanget presenterar ett samtal mellan Alexandra Salmela och Riika Kotka om Salmelas roman \"Puu\", där verklighet och fantasi möts. Under evenemanget diskuteras bokens teman, karaktärer och Salmelas skrivprocess.</p>", "en": "<p>NOTE! New date! This event will take place on Thursday 21.11.2024 at 18:00. (Previously announced 31.10.2024.)</p><p>The literary event features a conversation between Alexandra Salmela and Riika Kotka about Salmela's novel \"Puu,\" where reality and fantasy intersect. The event will explore the book's themes, characters, and Salmela's writing process.</p>" }, "name": { "fi": "Kirjailijavieraana Alexandra Salmela", "sv": "Författargäst: Alexandra Salmela", "en": "Author Guest: Alexandra Salmela" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "provider": { "fi": "Espoon kirjailijat ry", "sv": "Espoon kirjailijat ry", "en": "Espoon kirjailijat ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agijfbflze/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjc327sku", "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: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": [], "created_time": "2024-09-26T09:49:54.323607Z", "last_modified_time": "2024-09-26T09:49:54.323628Z", "date_published": null, "start_time": "2024-12-13T15:00:00Z", "end_time": "2024-12-13T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule tutustumaan Afganistanin hazaroiden kulttuuriin ja nauttimaan hazaragi-musiikista ja runoista. ", "sv": "Kom och lär dig mer om den afghanska hazarakulturen och njut av hazaragimusik och poesi. ", "en": "Come and learn about Afghan Hazara culture and enjoy Hazaragi music and poetry. " }, "info_url": null, "description": { "fi": "<p>Tule tutustumaan Afganistanin hazaroiden (=etninen ryhmä) kulttuuriin ja nauttimaan hazaragi-musiikista ja runoista. </p><p>Dambura on hazaroiden perinteinen soitin, jota kuulemme myös yhdessä viulun kanssa. Samalla juhlimme Yaldan yötä.</p>", "sv": "<p>Kom och lär dig mer om den afghanska hazarakulturen och njut av hazaragimusik och poesi. </p><p>Dambura är ett traditionellt instrument från hazara, som vi också hör tillsammans med violinen. Samtidigt firar vi Yaldas natt.</p>", "en": "<p>Come and learn about Afghan Hazara culture and enjoy Hazaragi music and poetry. </p><p>The dambura is a traditional instrument of the hazara, which we also hear together with the violin. At the same time we celebrate the Night of Yalda.</p>" }, "name": { "fi": "Hazaragi musiikkia ja runoja", "sv": "Hazaragimusik och poesi. ", "en": "Hazaragi music and poetry" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Suomen Hazaroiden Kulttuuriyhdistys ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjc327sku/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63761", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:755/?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": null, "description": null, "price": { "fi": "39,50 €", "sv": "39,50 €", "en": "39,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151863, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T14:14:05.362432Z", "last_modified_time": "2024-07-25T14:14:05.362448Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752499.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151863/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T14:14:05.315257Z", "last_modified_time": "2024-09-26T08:16:03.198861Z", "date_published": null, "start_time": "2024-10-03T16: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": "Bröderna Johansson – Jazz på Svenska -konsertti 3.10.2024 on valitettavasti jouduttu perumaan sairaustapauksen vuoksi.", "sv": "Anders och Jens Johansson tolkar jazz på svenska.", "en": "Anders and Jens Johansson interpret jazz in Swedish at Malmitalo. The gig is the only one in Finland for the band’s current tour." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/236F72694A69727AFE8184E071D4AA16/PERUTTU_Broderna_Johansson_Jazz_pa_Svenska", "sv": "http://www.malmitalo.fi/sv/evenemang/event/236F72694A69727AFE8184E071D4AA16/INSTALLT_Broderna_Johansson_Jazz_pa_Svenska", "en": "http://www.malmitalo.fi/en/events/event/236F72694A69727AFE8184E071D4AA16/CANCELLED_Broderna_Johansson_Jazz_pa_Svenska" }, "description": { "fi": "<p>Bröderna Johansson – Jazz på Svenska -konsertti 3.10.2024 on valitettavasti jouduttu perumaan sairaustapauksen vuoksi.</p><p>Lipun ostaneet voivat hakea rahansa takaisin Lippupisteeltä 3.11.2024 mennessä. Muistathan hakea palautuksen, mikäli olet ostanut lipun.</p><p>Lippurahojen palautuksia voi hakea tämän verkkolinkin kautta:<br>https://web.lippu.fi/palautus/</p><p>Liput voi palauttaa myös postitse osoitteeseen:<br>Lippupiste Oy / ”Bröderna Johansson – Jazz på Svenska” palautus<br>Kansikatu 5<br>33100 Tampere</p><p>Teemme parhaamme löytääksemme konsertille uuden ajankohdan heti, kun se vain on mahdollista</p><p>-</p><p>Anders ja Jens Johansson ovat kaksi ruotsalaisen rockmaailman lahjakkainta muusikkoa, legendoja lajissaan. He ovat soittaneet, ja soittavat, Yngwie Malmsteenin, Stratovariuksen, Hammerfallin, Ritchie Blackmoren Rainbow’n, Manowarin, Tungstenin, Raubtierin ja monen muun kanssa.</p><p>Andersin ja Jensin isä Jan Johansson tunnetaan yhtenä maansa parhaista säveltäjistä kautta aikojen, ja hän on luonut muun muassa nykypäivän klassikon ”Jazz på svenska”, joka on yksi Ruotsin eniten myytyjä jazz-levyjä ja korkealla kaikkien aikojen parhaiden albumien listalla.</p><p>Joitakin vuosia sitten veljekset alkoivat esittää kiertueilla isänsä musiikkia, painopisteenä ”Jazz på svenska” eli jazzia ruotsiksi. He nousivat nopeasti maailman hard rock -areenoille tunnelmallisilla esityksillään, joissa kuulija voi rentoutua ja antautua ajatustensa vietäväksi meditatiivisen folk-musiikin matkassa.</p><p>”Toisinaan lavalla me uppoamme niin syvälle musiikkiin, että tila ja aika katoavat. Se johtuu siitä, että musiikki juontaa juurensa syvältä kansan sielusta. Sitä uneksii itsensä taianomaisiin ruotsalaisiin metsiin”, sanoo Anders Johansson.</p><p>”Tätä musiikkia on niin hauskaa soittaa. Se ei itse asiassa ole puhtaaksiviljeltyä jazzia, vaan pikemminkin pohjoismaista bluesia. Tyystin erilaista kuin mitä yleensä soitamme. Yleisö on niin ikään hyvin monipuolinen ja ottaa osaa hyvin erilaisin tavoin. Jotkut kuuntelevat kyyneleet silmissä, toiset vain sulkevat silmänsä ja uneksivat surumielisinä, ja sitten on niitä, jotka lähinnä katsovat.”</p><p>MalmiJazz tarjoilee monipuolisesti jazz-musiikin eri tyylilajeja ensiluokkaisessa konserttisaliympäristössä. Nouseva, numeroitu katsomo tarjoaa jokaiselle konserttivieraalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Malmisalin erinomaiset akustiset, äänentoistolliset ja valaistukselliset puitteet takaavat laadukkaan keikkaelämyksen.</p>", "sv": "<p>Anders och Jens Johansson tolkar jazz på svenska.</p><p>Anders och Jens Johansson är två av den svenska rockvärldens mest begåvade musiker och legendarer inom genren. De har spelat, och spelar, med Yngwie Malmsteen, Stratovarius, Hammerfall, Ritchie Blackmore´s Rainbow, Manowar, Tungsten, Raubtier och många fler.</p><p>Anders och Jens far Jan Johansson räknas som en av landets genom tiderna bästa kompositörer och har bl a skapat den nutida klassikern ”Jazz på svenska”, som idag är en av Sveriges mest sålda jazzskivor och högt rankad på listor över tidernas bästa album.</p><p>För några år sedan började bröderna turnera och framföra sin fars musik, med tonvikt på “Jazz på svenska”. De ställde snabbt om från hårdrocksvärldens arenor och bjuder nu på stämningsfulla framträdanden, där man kan slappna av och låta sig färdas bort i tankarna med hjälp av den meditativa folkmusiken.</p><p>“Ibland på scen dras vi så djupt in i musiken att vi tappar bort tid och rum. Der beror nog på att musiken är djupt rotad i folksjälen. Man drömmer sig bort till de stora trolska, svenska skogarna”, säger Anders Johansson.</p><p>\"Det är så kul att spela den här musiken. Det är egentligen inte renodlad jazz utan mer nordisk blues. Det är så vitt skilt från vad vi normalt håller på med. Publiken är också så bred och deltar på så olika sätt. De som lyssnar och får tårar i ögonen, de som bara blundar och drömmer sig in i vemodet och de som främst tittar.\"</p>", "en": "<p>Anders and Jens Johansson interpret jazz in Swedish at Malmitalo. The gig is the only one in Finland for the band’s current tour.</p><p>Anders and Jens Johansson are two of the most talented musicians in Sweden’s world of rock, legends of their kind. They have played, and will play, with Yngwie Malmsteen, Stratovarius, Hammerfall, Ritchie Blackmore, Rainbow, Manowar, Tungsten, Raubtier and many more.</p><p>Anders and Jens' father, Jan Johansson, is known as one of the best composers of all time in his country and has created, among other things, modern classic “Jazz på svenska”, one of Sweden's best-selling jazz albums and high on the list of the best albums of all time.</p><p>Some years ago, the brothers began to perform their father's music on tours, focusing on \"Jazz på svenska\" (jazz in Swedish). They quickly rose to the world's hard rock arenas with atmospheric performances, where the listeners can relax and allow their thoughts to be carried away on a journey into meditative folk music.</p><p>“Sometimes on stage we sink so deep into the music that space and time disappear. That's because music is deeply rooted in the soul of the people. You see a dream of you in the magical Swedish forests,” says Anders Johansson.</p><p>“This music is so much fun to play. In fact, it's not pure jazz, but rather a kind of Nordic blues. Completely different from what we usually play. The audience is also very diverse and participates in very different ways. Some listen with tears in their eyes, others just close their eyes and dream sadly, and then there are those who mostly just watch.”</p><p>MalmiJazz provides a wide range of jazz music genres in a first-class concert hall environment. The ascending, numbered auditorium provides each concert guest with their own comfortable seat and a good view of the stage. The excellent acoustic, sound and lighting equipment of Malmisali guarantee a high-quality concert experience.</p>" }, "name": { "fi": "PERUTTU Bröderna Johansson – Jazz på Svenska – MalmiJazz", "sv": "INSTÄLLT Bröderna Johansson – Jazz på Svenska – MalmiJazz", "en": "CANCELLED Bröderna Johansson – Jazz på Svenska – MalmiJazz" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63761/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjc27bszq", "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: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": [], "created_time": "2024-09-26T07:57:24.241942Z", "last_modified_time": "2024-09-26T07:57:24.241972Z", "date_published": null, "start_time": "2024-12-21T10:00:00Z", "end_time": "2024-12-21T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa laulamaan yhdessä kauneimpia joululauluja! Lauluvihkon saa ottaa mukaansa tilaisuuden jälkeen.", "sv": "Välkommen att tillsammans sjunga de vackraste julsångerna! Du kan ta med dig sångboken hem efter evenemanget.", "en": "Welcome to sing together the most beautiful Christmas carols! You can take the songbook home after the event." }, "info_url": null, "description": { "fi": "<p>Tervetuloa laulamaan yhdessä kauneimpia joululauluja! Lauluvihkon saa ottaa mukaansa tilaisuuden jälkeen.</p><p>Järjestäjä: Espoonlahden seurakunta</p><p>Tapahtumaan on vapaa pääsy.</p>", "sv": "<p>Välkommen att tillsammans sjunga de vackraste julsångerna! Du kan ta med dig sångboken hem efter evenemanget.</p><p>Evenemanget ordnas av Esbovikens församling</p><p>Evenemanget är avgiftsfritt.</p>", "en": "<p>Welcome to sing together the most beautiful Christmas carols! You can take the songbook home after the event.</p><p>Organised by Espoonlahden seurakunta.</p><p>The event is free of charge.</p>" }, "name": { "fi": "Kauneimmat joululaulut -yhteislaulutilaisuus", "sv": "De vackraste julsångerna", "en": "The most beautiful Christmas carols - a community singing event" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Espoonlahden seurakunta", "sv": "Esbovikens församling", "en": "Espoonlahden seurakunta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjc27bszq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjc2r7lpq", "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:p11406/?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:p14710/?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:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?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": [], "created_time": "2024-09-26T07:17:52.926583Z", "last_modified_time": "2024-09-26T07:17:52.926603Z", "date_published": null, "start_time": "2024-10-01T11:00:00Z", "end_time": "2024-10-01T14: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": "Satutuokio ja askartelutyöpaja 1.10 klo 14–17 Entressen Kirjasto", "en": "Storytime and craft workshop 1.10 at 14-17 Entresse Library" }, "info_url": { "fi": "https://www.familiary.fi/kokonainen-minauml-lastenkirja.html", "en": "https://www.familiary.fi/kokonainen-minauml-childrens-book.html" }, "description": { "fi": "<p><strong>Satutuokio ja askartelutyöpaja 1.10 klo 14–17 Entressen Kirjasto</strong></p><p>Tulkaa mukaan Entressen kirjaston Estradille tapaamaan Wende Luvinga, Kokonainen minä - lasten kirjan kirjailijan, osallistumaan satutuokioon seikkailemaan Jabalin, Viiman ja Linhin, kolme monikielistä lasta. Tapaat myös KIssa-Oravan, Viiman uteliaan lempi lelun, joka kannustaa kaikkia pikkulukijoita jakamaa omia kieliään, kulttuurejaan ja kokemuksiaan. </p><p>Lisätietoja kirjasta löytyy täältä: </p><p>https://www.familiary.fi/kokonainen-minauml-lastenkirja.html</p><p> </p><p>Satutuokion jälkeen askartelemme yhdessä oma perhepotretit, jotka voitte ottaa mukaan ja ripustaa seinälle kotona. Kaikki perheet ovat tervetulleita, kirja on suunnattu kaikille yli 3-vuotiaille lapsille. Nähdään Entressessä! </p><p> </p><p>Missä: Entressen kirjasto, Siltakatu 11, 02770 Espoo</p><p>Milloin: Tiistai 1.10.24, klo 14 -17</p><p>Kieli: Suomi ja englanti </p><p>Lisätietoja tapahtumasta: laura.hytti@familiary.fi </p>", "en": "<p><strong>Storytime and craft workshop 1.10 at 14-17 Entresse Library</strong></p><p><br></p><p>Join us at the Entresse Library (Estradi) with Wende Luvinga, author of children's book Kokonainen minä, for a adventure with Jabal, Viiman and Linh, three multilingual children. You will also meet KIssa-Orava, Viima's favourite curious toy who encourages all little readers to share their own languages, cultures and experiences. </p><p>You can find more information about the book here:</p><p>https://www.familiary.fi/kokonainen-minauml-childrens-book.html</p><p>After the story time, we'll make our own family portraits to take home and hang on the wall. </p><p> All families are welcome, the book is aimed at all children over the age of 3. See you at Entresse! </p><p> </p><p> Where: Entresse Library, Siltakatu 11, 02770 Espoo, Finland.</p><p> When: Tuesday 1.10. @14-17</p><p> Language: English and Finnish </p><p>More information about the event: laura.hytti@familiary.fi </p>" }, "name": { "fi": "Kokonainen Minä - Satutuokio ja askartelutyöpaja", "en": "Kokonainen Minä - Storytime and craft workshop" }, "provider_contact_info": null, "location_extra_info": { "fi": "Estradi", "en": "Estradi" }, "provider": { "fi": "familiary", "en": "familiary" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjc2r7lpq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjc2r7l5q", "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:p2787/?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-26T07:10:33.088394Z", "last_modified_time": "2024-09-26T07:10:33.088417Z", "date_published": null, "start_time": "2024-10-23T09:00:00Z", "end_time": "2024-10-23T15: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": "Kirjaston aulassa voit tutustua matalalla kynnyksellä päihde- ja mielenterveyspalveluissa ja järjestöissä tarjolla oleviin apu- ja tukimuotoihin", "sv": "Du kan få information om vilken typ av hjälp och stöd som finns att få från organisationer och tjänster som arbetar med missbruk och psykisk ohälsa.", "en": "In the library lobby, you can find out about the types of help and support available from addiction and mental health services and organisations." }, "info_url": null, "description": { "fi": "<p>Millaista stigmaa ja syrjintää päihde-, riippuvuus- ja mielenterveysongelmiin liittyy? Entä miten stigmaa ja syrjintää voitaisiin vähentää? Tule tutustumaan aiheeseen Espoon Sellon kirjastoon 23.10.2024 klo 12–18!</p><p>•</p><p>Kirjaston aulassa voit tutustua matalalla kynnyksellä päihde- ja mielenterveyspalveluissa ja järjestöissä tarjolla oleviin apu- ja tukimuotoihin</p><p>•</p><p>Tapahtuman ajan kirjaston aulassa pyörii non-stoppina kokemusasiantuntijavideoita päihde-, riippuvuus- ja mielenterveysongelmiin liittyvästä stigmasta sekä sen vähentämisestä</p><p>•</p><p>Lisäksi tapahtumassa jaetaan tietoa päihde- ja mielenterveysongelmien ennaltaehkäisystä sekä tehdään kansalaiskyselyä palveluiden ja järjestötyön kehittämistarpeista sekä päihde- ja mielenterveysongelmiin liittyvän stigman vähentämisestä</p><p>Tapahtuma on maksuton ja avoin kaikille aiheesta kiinnostuneille. Ennakkoilmoittautumista ei tarvita. Tapahtuman järjestävät yhteistyössä A-klinikkasäätiö, Espoon kaupunginkirjasto sekä muut tapahtumaan osallistuvat toimijat.</p><p>Lisätietoja:</p><p>Tiina Saarinen, kehittämispäällikkö, Järjestölähtöisen päihdetyön kehittäminen,</p><p>A-klinikkasäätiö, tiina.saarinen@a-klinikkasaatio.fi, p. 050 5671173</p>", "sv": "<p>I bibliotekets lobby kan du få information om vilken typ av hjälp och stöd som finns att få från organisationer och tjänster som arbetar med missbruk och psykisk ohälsa.</p>", "en": "<p>In the library lobby, you can find out about the types of help and support available from addiction and mental health services and organisations.</p>" }, "name": { "fi": "Päihde- ja mielenterveystyön kansalaistapahtuma stigman ja syrjinnän vähentämiseksi", "sv": "Medborgarmöte om alkohol och psykisk hälsa - arbete för att minska stigmatisering och diskriminering", "en": "Citizens' event for drug and mental health work to reduce stigma and discrimination" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "A-klinikkasäätiö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjc2r7l5q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64418", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": 152245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-29T08:15:43.804258Z", "last_modified_time": "2024-08-29T08:15:43.804275Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757156.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-29T08:15:43.778710Z", "last_modified_time": "2024-09-25T12:15:56.979477Z", "date_published": null, "start_time": "2024-10-17T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Helsingin Kirjamessujen teemana on tänä vuonna tulevaisuus. Messujen maistiaisena Helsingin Kirjamessujen viestintäpäällikkö Teija Armanto haastattelee Linnea Kuuluvaista ja Mika Malirantaa, joiden molempien uutuuskirjat luovat katseen tulevaisuuteen.", "sv": "Temat för årets bokmässa i Helsingfors är framtiden. Som en försmak av mässan intervjuar Teija Armanto, kommunikationschef för Helsingfors bokmässa, Linnea Kuuluvainen och Mika Maliranta, vars nya böcker båda blickar in i framtiden.", "en": "The theme of this year’s Helsinki Book Fair is the future. As a taster, Teija Armanto, Communications Manager for the Helsinki Book Fair, interviews Linnea Kuuluvainen and Mika Maliranta, whose respective new books show a glimpse into the future." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/98E38DA03009650A6CE3A6B5008915F2/Kirjailijat_Linnea_Kuuluvainen_ja_Mika_Maliranta_keskustelevat_tulevaisuudesta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/98E38DA03009650A6CE3A6B5008915F2/Forfattarna_Linnea_Kuuluvainen_och_Mika_Maliranta_diskuterar_framtiden", "en": "http://www.kanneltalo.fi/en/events/event/98E38DA03009650A6CE3A6B5008915F2/Writers_Linnea_Kuuluvainen_and_Mika_Maliranta_talk_about_the_future" }, "description": { "fi": "<p>Helsingin Kirjamessujen teemana on tänä vuonna tulevaisuus. Messujen maistiaisena Helsingin Kirjamessujen viestintäpäällikkö Teija Armanto haastattelee Linnea Kuuluvaista ja Mika Malirantaa, joiden molempien uutuuskirjat luovat katseen tulevaisuuteen.</p><p>Kuuluvaisen Metsän peitto (Gummerus 2024) on maaginen romaani luontosuhteesta ja mielen järkkymisestä. Malirannan Pinnan alta (Docendo 2024) antaa aihetta talousoptimismiin.<br> <br><b>Linnea Kuuluvainen</b> on opiskellut Turun yliopistossa suomen kieltä ja luovaa kirjoittamista. Hän asuu miehensä ja kolmen koiran kanssa suopursumetsän ympäröimänä Turun lähistöllä.</p><p><b>Mika Maliranta</b> (FT) on Työn ja talouden tutkimuksen LABOREn johtaja sekä Jyväskylän yliopiston professori. Hän on keskittynyt talouden kasvun tekijöihin: tuottavuuskasvuun ja työmarkkinoiden toimintaan. Hän toimii myös mm. OECD:n toimiala-analyysityöryhmän puheenjohtajana, lainsäädännön arviointineuvoston varapuheenjohtajana ja tuottavuuslautakunnan jäsenenä. Hän on tehnyt yhdessä Matti Apusen kanssa suosittua talouspoliittista M&A-podcastia vuodesta 2017.</p><p>Kesto: 1 tunti</p><p>Vapaa pääsy</p>", "sv": "<p>Temat för årets bokmässa i Helsingfors är framtiden. Som en försmak av mässan intervjuar Teija Armanto, kommunikationschef för Helsingfors bokmässa, Linnea Kuuluvainen och Mika Maliranta, vars nya böcker båda blickar in i framtiden.</p><p>Kuuluvainens Metsän peitto (Gummerus 2024) är en magisk roman om förhållandet till naturen och om hur sinnet börjar vackla. Malirantas Pinnan alta (Docendo 2024) ger anledning till ekonomisk optimism.</p><p>Linnea Kuuluvainen har studerat finska och kreativt skrivande vid Åbo universitet. Hon bor med sin man och tre hundar omgiven av en skog av skvattram i närheten av Åbo.</p><p>Mika Maliranta (FD) är chef för forskningsanstalten för arbete och ekonomi LABORE och professor vid Jyväskylä universitet. Han har fokuserat på drivkrafterna bakom ekonomisk tillväxt: produktivitetstillväxt och arbetsmarknadernas verksamhet. Han är också bland annat ordförande för OECD:s arbetsgrupp för sektoranalys, vice ordförande i rådet för bedömning av lagstiftningen och medlem i produktivitetsnämnden. Sedan 2017 har han tillsammans med Matti Apunen den populära M&A-podden om ekonomisk politik.</p><p>Längd: 1 timme</p><p>Språk: finska<br>Fritt inträde</p>", "en": "<p>The theme of this year’s Helsinki Book Fair is the future. As a taster, Teija Armanto, Communications Manager for the Helsinki Book Fair, interviews Linnea Kuuluvainen and Mika Maliranta, whose respective new books show a glimpse into the future.</p><p>Kuuluvainen’s Metsän peitto (Gummerus 2024) is a magical novel about the relationship with nature and how the mind can break. Maliranta’s Pinnan alta (Docendo 2024) gives cause to be optimistic about the economy.</p><p>Linnea Kuuluvainen studied the Finnish language and creative writing at the University of Turku. She, her husband, and their three dogs live in a peat bog forest near Turku.</p><p>Mika Maliranta (PhD) is the director of the Labour Institute for Economic Research LABORE and a professor at the University of Jyväskylä. He has focused on the drivers of economic growth: that of productivity and the functioning of the labour market. He is also chairman of the OECD's Industry Sector Analysis Working Group, vice-chairman of the Finnish Council of Regulatory Impact Analysis and member of the Finnish Productivity Board. Together with Matti Apunen, he is the creator of popular economic policy podcast, M&A, which launched in 2017.</p><p>Duration: 1 hour<br>Language: Finnish<br>Free admission</p>" }, "name": { "fi": "Kirjailijat Linnea Kuuluvainen ja Mika Maliranta keskustelevat tulevaisuudesta – Helsingin Kirjamessujen etkot", "sv": "Författarna Linnea Kuuluvainen och Mika Maliranta diskuterar framtiden – Förfest till Helsingfors bokmässa", "en": "Writers Linnea Kuuluvainen and Mika Maliranta talk about the future – Helsinki Book Fair pre-party" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64418/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64581", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152438, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-17T10:14:02.566746Z", "last_modified_time": "2024-09-17T10:14:02.566762Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758076.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152438/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-17T10:14:02.553906Z", "last_modified_time": "2024-09-25T12:15:55.954865Z", "date_published": null, "start_time": "2024-10-16T08:00:00Z", "end_time": "2024-10-16T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.", "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.", "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2D00A311C88AC85F6A3049DADB73BEEE/Keskiviikon_lounasjamit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2D00A311C88AC85F6A3049DADB73BEEE/Jams_till_onsdagslunchen", "en": "http://www.kanneltalo.fi/en/events/event/2D00A311C88AC85F6A3049DADB73BEEE/Wednesday_lunch_jams" }, "description": { "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>", "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>", "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>" }, "name": { "fi": "Keskiviikon lounasjamit", "sv": "Jams till onsdagslunchen", "en": "Wednesday lunch jams" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64581/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64531", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": 152611, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-25T12:15:54.664718Z", "last_modified_time": "2024-09-25T12:15:54.664737Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757988.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152611/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T12:15:54.637053Z", "last_modified_time": "2024-09-25T12:15:54.746181Z", "date_published": null, "start_time": "2024-10-12T15:00:00Z", "end_time": "2024-10-12T17: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": "PROTYASHA järjestää bangladeshin kulttuuriin keskittyvän tapahtuman, jossa kuullaan perinteistä bangladeshilaista musiikkia, tanssia ja runoutta.", "en": "\"PROTYASHA\" is going to arrange a Bangladeshi Cultural Event on 12th of October, 2024. The event consists traditional Bangladeshi music, dance and poetry." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0A7EB01F631CA3C91CCAFBD420C8A049/Bangladeshi_Cultural_Event_", "en": "http://www.malmitalo.fi/en/events/event/0A7EB01F631CA3C91CCAFBD420C8A049/Bangladeshi_Cultural_Event_" }, "description": { "fi": "<p>PROTYASHA järjestää bangladeshin kulttuuriin keskittyvän tapahtuman, jossa kuullaan perinteistä bangladeshilaista musiikkia, tanssia ja runoutta.</p><p>Protyasha ry on Suomessa toimiva tunnettu kulttuurijärjestö, joka on tarjonnut kulttuuritoimintaa bengalilaisille yhteisöille vuodesta 2000 lähtien.</p><p>Toivotamme kaikki sydämellisesti tervetulleiksi tilaisuuteen!</p>", "en": "<p>\"PROTYASHA\" is going to arrange a Bangladeshi Cultural Event on 12th of October, 2024. The event consists traditional Bangladeshi music, dance and poetry.</p><p>Protyasha Ry is a renowned cultural organization in Finland that has been serving cultural activities to the Bengali community since 2000.</p><p>You are all cordially invited to the show.</p>" }, "name": { "fi": "Bangladeshi Cultural Event – PROTYASHA", "en": "Bangladeshi Cultural Event – PROTYASHA" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64531/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64580", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152437, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-17T10:14:00.126679Z", "last_modified_time": "2024-09-17T10:14:00.126695Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758074.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152437/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-17T10:14:00.090905Z", "last_modified_time": "2024-09-25T12:15:51.687932Z", "date_published": null, "start_time": "2024-10-02T08:00:00Z", "end_time": "2024-10-02T10: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": "Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.", "sv": "På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.", "en": "In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0CDEBBD0E4FF7E4C9CBE4F88A46F08E7/Keskiviikon_lounasjamit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0CDEBBD0E4FF7E4C9CBE4F88A46F08E7/Jams_till_onsdagslunchen", "en": "http://www.kanneltalo.fi/en/events/event/0CDEBBD0E4FF7E4C9CBE4F88A46F08E7/Wednesday_lunch_jams" }, "description": { "fi": "<p>Dj Koo-Blank ilahduttaa syksyllä monipuolisilla rytmeillään Kanneltalon kahvilan stagella.</p><p>Lounasaikaan kuullaan genrejä ympäri maailmaa. Lavalla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia. Tervetuloa nauttimaan ruoasta ja musiikista!</p><p>Kesto 2 tuntia</p><p>Kanneltalon kahvilan stage<br>Vapaa pääsy</p>", "sv": "<p>På hösten sprider Dj Koo-Blank glädje med sina mångsidiga rytmer på Gamlasgårdens caféscen.</p><p>Vid lunchtid får vi lyssna till genrer från hela världen. På scenen får du höra anatolisk funk, afrikansk highlife, pop och varför inte också ett par schlagersånger! Massor av annan själfull musik utlovas också. Välkommen till bords!</p><p>Längd 2 timmar<br>Caféscen<br>Fritt inträde</p>", "en": "<p>In the autumn, Dj Koo-Blank entertains the audience with their diverse rhythms at the Kanneltalo cafe stage.</p><p>At lunchtime, anyone can come listen to genres from around the world. Anatolian funk, African highlife, pop and why not Finnish iskelmä too! And of course, lots of other soulful music. Come and listen!</p><p>Duration: 2 hours<br>Café stage<br>Free of charge</p>" }, "name": { "fi": "Keskiviikon lounasjamit", "sv": "Jams till onsdagslunchen", "en": "Wednesday lunch jams" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64580/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiwvhottq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:28401/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-19T11:44:13.950332Z", "last_modified_time": "2024-09-25T12:07:26.297345Z", "date_published": null, "start_time": "2024-10-05T08:00:00Z", "end_time": "2024-10-05T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Elämysauto Välkky päivystää Haltian edustalla Retkilauantaisin. Tervetuloa tutustumaan luontoaiheisiin kirjoihin, lukemaan, lainaamaan ja palauttamaan." }, "info_url": { "fi": "https://haltia.com/tapahtumat/" }, "description": { "fi": "<p>Elämysauto Välkky päivystää Haltian edustalla Retkilauantaisin. Tervetuloa tutustumaan luontoaiheisiin kirjoihin, lukemaan, lainaamaan ja palauttamaan.</p><p>Lue tarkemmat lisätiedot Haltian Retkilauantaista ja sen muusta ohjelmasta verkkosivuilta (<a href=\"haltia.com/tapahtumat\">haltia.com/tapahtumat</a>).</p>" }, "name": { "fi": "Elämysauto Välkky Haltiassa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kirjaston elämysauto Välkky" }, "provider": { "fi": "Suomen luontokeskus Haltia" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiwvhottq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64623", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "10,5 € / 8 €", "sv": "10,5 € / 8 €", "en": "10,5 € / 8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152610, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-25T11:16:12.113324Z", "last_modified_time": "2024-09-25T11:16:12.113344Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757674.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152610/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T11:16:12.064383Z", "last_modified_time": "2024-09-25T11:16:12.240720Z", "date_published": null, "start_time": "2024-10-16", "end_time": "2024-10-20", "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": "Cinemaissí järjestetään tänä vuonna Caisassa!", "sv": "Cinemaissí arrangeras i år på Caisa!", "en": "Cinemaissí will be hosted this year at Caisa Cultural Center." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/EC7264C6D1C9FA732A5F91124F4079E5/Cinemaiss_Latin_American_Film_Festival", "sv": "http://www.caisa.fi/sv/evenemang/event/EC7264C6D1C9FA732A5F91124F4079E5/Cinemaiss_Latin_American_Film_Festival", "en": "http://www.caisa.fi/en/events/event/EC7264C6D1C9FA732A5F91124F4079E5/Cinemaiss_Latin_American_Film_Festival" }, "description": { "fi": "<p>Cinemaissí järjestetään tänä vuonna Caisassa!</p><p>Cinemaissí-elokuvafestivaalin tavoitteena on edistää kiehtovaa, ajatuksia herättävää ja uutta latinalaisamerikkalaista elokuvaa Suomessa.</p><p>Elokuvanäytösten, keskustelujen ja muiden kohtaamisten kautta festivaali on luonut alustan Latinalaisen Amerikan kulttuurin, politiikan ja yhteiskunnan nauttimiseen ja pohtimiseen.</p><p>Liput ja lisätiedot: https://www.cinemaissi.com/</p>", "sv": "<p>Cinemaissí arrangeras i år på Caisa!</p><p>Mer info: https://www.cinemaissi.com/</p>", "en": "<p>Cinemaissí will be hosted this year at Caisa Cultural Center.</p><p>Cinemaissí Latin American Film Festival aims to promote appealing, thought-provoking, and novel Latin American cinema in Finland.</p><p>Through film screenings, conversations, and other encounters, the festival has created a platform for the enjoyment and debate of Latin American culture, politics, and society.<br>Cinemaissí Latin American Film Festival understands that Latin American realities are multiple and varied. It is our privilege and responsibility to offer our audience a carefully curated program that reflects Latin America’s diversity.</p><p>Founded in 2005 by the non-profit association with the same name, the festival welcomes with open arms everyone interested in the Latin American region.</p><p>Tickets and info: https://www.cinemaissi.com/</p>" }, "name": { "fi": "Cinemaissí – Latin American Film Festival", "sv": "Cinemaissí – Latin American Film Festival", "en": "Cinemaissí – Latin American Film Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64623/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjcr6jgle", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpwa/?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": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T10:34:21.856252Z", "last_modified_time": "2024-09-25T10:34:21.856271Z", "date_published": null, "start_time": "2024-10-25T09:00:00Z", "end_time": "2024-10-25T10: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": "Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30.", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30. Kielikahvila kokoontuu 6.9.-13.12.. Sinisessä huoneessa.</p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter och diskuterar olika ämnen varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. Caféerna hålls på fredagar 6.9.-13.12. kl. 12:00 - 13:30 i Sininen huone</p><p>Språkcaféet på Entresse-biblioteket drivs av frivilliga från Finlands Röda Kors/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Fridays 6.9.-13.12. at 12:00 - 13:30 in Sininen huone.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>" }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé på fredagar", "en": "Finnish Language Cafe on Fridays" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcr6jgle/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjcr6jgpi", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpwa/?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": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T10:34:21.467110Z", "last_modified_time": "2024-09-25T10:34:21.467130Z", "date_published": null, "start_time": "2024-10-11T09:00:00Z", "end_time": "2024-10-11T10: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": "Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30.", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30. Kielikahvila kokoontuu 6.9.-13.12.. Sinisessä huoneessa.</p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter och diskuterar olika ämnen varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. Caféerna hålls på fredagar 6.9.-13.12. kl. 12:00 - 13:30 i Sininen huone</p><p>Språkcaféet på Entresse-biblioteket drivs av frivilliga från Finlands Röda Kors/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Fridays 6.9.-13.12. at 12:00 - 13:30 in Sininen huone.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>" }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé på fredagar", "en": "Finnish Language Cafe on Fridays" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcr6jgpi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjcr6jgti", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpwa/?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": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T10:34:20.969128Z", "last_modified_time": "2024-09-25T10:34:20.969148Z", "date_published": null, "start_time": "2024-10-04T09:00:00Z", "end_time": "2024-10-04T10: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": "Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30.", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30. Kielikahvila kokoontuu 6.9.-13.12.. Sinisessä huoneessa.</p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter och diskuterar olika ämnen varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. Caféerna hålls på fredagar 6.9.-13.12. kl. 12:00 - 13:30 i Sininen huone</p><p>Språkcaféet på Entresse-biblioteket drivs av frivilliga från Finlands Röda Kors/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Fridays 6.9.-13.12. at 12:00 - 13:30 in Sininen huone.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>" }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé på fredagar", "en": "Finnish Language Cafe on Fridays" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcr6jgti/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiu7tcpiy", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpwa/?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": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-14T06:44:38.401490Z", "last_modified_time": "2024-09-25T10:34:19.908899Z", "date_published": null, "start_time": "2024-09-27T09:00:00Z", "end_time": "2024-09-27T10: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": "Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30.", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30. Kielikahvila kokoontuu 6.9.-13.12.. Sinisessä huoneessa.</p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter och diskuterar olika ämnen varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. Caféerna hålls på fredagar 6.9.-13.12. kl. 12:00 - 13:30 i Sininen huone</p><p>Språkcaféet på Entresse-biblioteket drivs av frivilliga från Finlands Röda Kors/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Fridays 6.9.-13.12. at 12:00 - 13:30 in Sininen huone.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>" }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé på fredagar", "en": "Finnish Language Cafe on Fridays" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpiy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiu7tcpam", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpwa/?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": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-14T06:44:38.793946Z", "last_modified_time": "2024-09-25T10:34:19.780672Z", "date_published": null, "start_time": "2024-10-18T09:00:00Z", "end_time": "2024-10-18T10: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": "Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30.", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30. Kielikahvila kokoontuu 6.9.-13.12.. Sinisessä huoneessa.</p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter och diskuterar olika ämnen varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. Caféerna hålls på fredagar 6.9.-13.12. kl. 12:00 - 13:30 i Sininen huone</p><p>Språkcaféet på Entresse-biblioteket drivs av frivilliga från Finlands Röda Kors/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Fridays 6.9.-13.12. at 12:00 - 13:30 in Sininen huone.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>" }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé på fredagar", "en": "Finnish Language Cafe on Fridays" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpam/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiu7tco3e", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpwa/?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": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-14T06:44:39.070492Z", "last_modified_time": "2024-09-25T10:34:19.648216Z", "date_published": null, "start_time": "2024-11-01T10:00:00Z", "end_time": "2024-11-01T11: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": "Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30.", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30. Kielikahvila kokoontuu 6.9.-13.12.. Sinisessä huoneessa.</p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter och diskuterar olika ämnen varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. Caféerna hålls på fredagar 6.9.-13.12. kl. 12:00 - 13:30 i Sininen huone</p><p>Språkcaféet på Entresse-biblioteket drivs av frivilliga från Finlands Röda Kors/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Fridays 6.9.-13.12. at 12:00 - 13:30 in Sininen huone.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>" }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé på fredagar", "en": "Finnish Language Cafe on Fridays" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tco3e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64619", "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: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: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": 152606, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-25T10:15:27.386991Z", "last_modified_time": "2024-09-25T10:15:27.387017Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758429.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152606/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T10:15:27.359742Z", "last_modified_time": "2024-09-25T10:15:27.454716Z", "date_published": null, "start_time": "2024-10-14T08: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": "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/687C63B6EE0F1F425D98B7D5EC9A1A67/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/687C63B6EE0F1F425D98B7D5EC9A1A67/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/687C63B6EE0F1F425D98B7D5EC9A1A67/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. Tärkeänä toiminnan keskiössä ovat leikki ja taiteen kokeminen: musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Ikäryhmä: 1–2-vuotiaat <br>Kieli: suomi<br>Ryhmässä on noin 12 osallistujaa kerralla, 8 lasta ja 8 aikuista. Tuokion pituus noin 30 min.</p><p>Varaa yksi paikka per lapsi+aikuinen.</p><p>Ma 30.9.klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari1 <br>Ma 14.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari2 <br>Ma 28.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari3<br>Ma 11.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari4<br>Ma 25.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari5</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>Sessionens längd är ca 30 min <br>Åldersgrupp: 1–2-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 8 barn och 8 vuxna.</p><p>Anmälningslänkar:<br>Må 30.9, anmäl dig här: https://link.webropol.com/ep/muskari1 <br>Må 14.10, anmäl dig här: https://link.webropol.com/ep/muskari2 <br>Må 28.10, anmäl dig här: https://link.webropol.com/ep/muskari3<br>Må 11.11, anmäl dig här: https://link.webropol.com/ep/muskari4<br>Må 25.11, anmäl dig här: https://link.webropol.com/ep/muskari5</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>Session length approx. 30 min <br>Age group: Ages 1–2<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p>Registration links:<br>Mon 30.9. https://link.webropol.com/ep/muskari1</p><p>Mon 14.10. https://link.webropol.com/ep/muskari2</p><p>Mon 28.10. https://link.webropol.com/ep/muskari3</p><p>Mon 11.11. https://link.webropol.com/ep/muskari4</p><p>Mon 25.11. https://link.webropol.com/ep/muskari5</p>" }, "name": { "fi": "Musiikillinen taideseikkailu – 1–2-vuotiaille", "sv": "Musikaliskt konstäventyr – för 1–2-åringar", "en": "Musical Art Adventure – for 1–2-year-olds" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64619/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64613", "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: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: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": 152605, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-25T10:15:22.405578Z", "last_modified_time": "2024-09-25T10:15:22.405598Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758427.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152605/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T10:15:22.349662Z", "last_modified_time": "2024-09-25T10:15:22.502459Z", "date_published": null, "start_time": "2024-09-30T08: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": "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/3E5FFD63F96C237FD246EF043F57297E/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/3E5FFD63F96C237FD246EF043F57297E/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/3E5FFD63F96C237FD246EF043F57297E/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. Tärkeänä toiminnan keskiössä ovat leikki ja taiteen kokeminen: musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Ikäryhmä: 1–2-vuotiaat <br>Kieli: suomi<br>Ryhmässä on noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista. Tuokion pituus noin 30 min.</p><p>Varaa yksi paikka per lapsi+aikuinen.</p><p>Ma 30.9.klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari1 <br>Ma 14.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari2 <br>Ma 28.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari3<br>Ma 11.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari4<br>Ma 25.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari5</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>Sessionens längd är ca 30 min <br>Åldersgrupp: 1–2-å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>Anmälningslänkar:<br>Må 30.9, anmäl dig här: https://link.webropol.com/ep/muskari1 <br>Må 14.10, anmäl dig här: https://link.webropol.com/ep/muskari2 <br>Må 28.10, anmäl dig här: https://link.webropol.com/ep/muskari3<br>Må 11.11, anmäl dig här: https://link.webropol.com/ep/muskari4<br>Må 25.11, anmäl dig här: https://link.webropol.com/ep/muskari5</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>Session length approx. 30 min <br>Age group: Ages 1–2<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p>Registration links:<br>Mon 30.9. https://link.webropol.com/ep/muskari1</p><p>Mon 14.10. https://link.webropol.com/ep/muskari2</p><p>Mon 28.10. https://link.webropol.com/ep/muskari3</p><p>Mon 11.11. https://link.webropol.com/ep/muskari4</p><p>Mon 25.11. https://link.webropol.com/ep/muskari5</p>" }, "name": { "fi": "Musiikillinen taideseikkailu – 1–2-vuotiaille", "sv": "Musikaliskt konstäventyr – för 1–2-åringar", "en": "Musical Art Adventure – for 1–2-year-olds" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64613/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }