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
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 ordering is descending order by -last_modified_time
. 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&hide_recurring_children=true&page=141
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=142", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=140" }, "data": [ { "id": "espoo_le:agj472ruxi", "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:p11406/?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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rsye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rtcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rtg4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rtla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rtri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rtvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rtz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rt6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472ruce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472ruge/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472ruki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472ruoy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472ruta/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-16T13:34:52.666705Z", "last_modified_time": "2024-12-16T13:37:21.329889Z", "date_published": null, "start_time": "2025-01-04T12:00:00Z", "end_time": "2025-03-29T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Hytti", "en": "Hytti" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tule mukaan englanninkieliseen kirjakerhoon! Kirjakerho on suunnattu lapsille (6-11-vuotiaat) ja heidän vanhemmilleen. ", "en": "Join Us for a Special English-Speaking Book Club! The book club is aimed at children (ages 6-11) and their parents." }, "description": { "fi": "<p><strong>Tule mukaan englanninkieliseen kirjakerhoon!</strong></p><p>Kirjakerho on suunnattu lapsille (6-11-vuotiaat) ja heidän vanhemmilleen. Kirjakerhon järjestää kirjastonvapaaehtoinen Adrian Beckett yhteistyössä Lippulaivan kirjaston kanssa. Jokaisella kerralla luetaan ryhmässä ja käydään mielekkäitä keskusteluja erilaisista teemoista, kuten rohkeudesta, empatiasta ja yhteisön ylpeydestä.</p><p><br></p><p>Lapset näyttävät tietä esittämällä kysymyksiä vanhempien ja fasilitaattorin tukemana. Yhdessä osallistujat tutkivat ajatuksia, kuten</p><p><br></p><p><br></p><p>Mitä rohkeus on ja miten sitä osoitetaan?</p><p><br></p><p>Mikä tekee yhteisöstä, kirjastosta tai koulusta erityisen? Mitä voitaisiin parantaa?</p><p><br></p><p>Mitä empatia tarkoittaa ja miksi se on tärkeää?</p><p><br></p><p>Tämä kirjakerho tarjoaa muutakin kuin lukemista - se on tilaisuus vahvistaa englannin kielen taitoja ja kehittää samalla elintärkeitä ominaisuuksia tulevaisuutta varten:</p><p><br></p><p><strong>Tunneälyä: </strong>Tunteiden ymmärtäminen.</p><p><br></p><p><strong>Intuitio: </strong>Vaistoon luottaminen päätöksiä tehtäessä.</p><p><br></p><p><strong>Kriittinen ajattelu: </strong>Tietoon perustuvien valintojen tekeminen itsenäisesti.</p><p><br></p><p><strong>Luovuus, yhteistyö ja kulttuuritietoisuus.</strong></p><p><strong><span class=\"ql-cursor\"></span></strong></p><p>Tule mukaan tälle rikastuttavalle matkalle, joka innostaa oppimiseen, keskusteluun ja kasvuun!</p><p><br></p><p>Sijainti: Hytti, Lippulaivan kirjasto, Espoo</p><p>Päivä ja Aika: Joka lauantai 4. tammikuuta 2025 alkaen, klo 14-15</p>", "en": "<p><strong>Join Us for a Special English-Speaking Book Club!</strong></p><p> </p><p>Parents and children (ages 6–11) are invited to take part in an engaging book club at Lippulaiva Library organized by Adrian Beckett in cooperation with Lippulaiva Library. Each session features group reading and meaningful discussions about themes such as courage, empathy, and community pride.</p><p> </p><p>Children will lead the way by asking questions, supported by parents and a facilitator. Together, participants will explore ideas like:</p><p> </p><p>What is courage, and how is it shown?</p><p>What makes a community, library, or school special? What could be improved?</p><p>What does empathy mean, and why is it important?</p><p>This book club offers more than reading—it’s an opportunity to strengthen English skills while developing vital qualities for the future:</p><p> </p><p>Emotional intelligence: Understanding feelings.</p><p>Intuition: Trusting instincts when making decisions.</p><p>Critical thinking: Making informed choices independently.</p><p>Creativity, collaboration, and cultural awareness.</p><p>Two groups are available: one for adults and one for parents with children. By participating, families can connect with each other, learn from different perspectives, and build a stronger community.</p><p> </p><p>Be part of this enriching journey to inspire learning, conversation, and growth!</p><p> </p><p>Day : Every Saturday starting on 4th of January 2025</p><p>Location: Hytti, Lippulaiva Library, Espoo</p><p>Time: 14-15</p>" }, "provider": null, "name": { "fi": "Englanninkielinen kirjakerho perheille", "en": "English-Speaking Book Club for families" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472ruxi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj472rvoe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p2433/?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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472ru3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472ru7i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rvde/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rvgu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rvkq/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-16T13:22:57.972316Z", "last_modified_time": "2024-12-16T13:22:57.972336Z", "date_published": null, "start_time": "2025-01-13T12:00:00Z", "end_time": "2025-05-05T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kokoustila Meri" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Luetaan ja keskustelaan" }, "description": { "fi": "<p>Ison Omenan lukupiiri jatkuu keväällä 2025. </p><p>Tapaamme jokaisen kuukauden ensimmäisenä maanantaina kokoustila Merissä. </p><p><br></p><p>13.1. Haruki Murakami: Ensimmäinen persoona</p><p> (Tammi 2022)</p><p>3.2. Miki Liukkonen: Vierastila </p><p>(WSOY 2023)</p><p>3.3. Petra Rautiainen: Meren muisti </p><p>(Otava 2022)</p><p>7.4. Benjamin Labatut: Maailman kauhea vihreys </p><p>(Tammi 2023)</p><p>5.5. Ali Smith: Syksy </p><p>(Kosmos 2022)</p><p><br></p>" }, "provider": null, "name": { "fi": "Ison Omenan kirjaston lukupiiri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rvoe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj472rxmi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rvse/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rvwm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rv2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rv7i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rwdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rwii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rwoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rwsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rwwy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rw24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rw7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rxea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rxia/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-16T13:20:30.352973Z", "last_modified_time": "2024-12-16T13:20:30.353004Z", "date_published": null, "start_time": "2025-01-04T13:00:00Z", "end_time": "2025-03-29T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Hytti", "en": "Hytti" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa mukaan englanninkieliseen keskustelukerhoon! Tapaamme joka lauantai klo 15-16 Hytissä.", "en": "Join Our English-Speaking Conversation Club! We meet every saturday in Hytti room from 15-16. Welcome!" }, "description": { "fi": "<p><strong>Tervetuloa mukaan englanninkieliseen keskustelukerhoon!</strong></p><p><br></p><p>Kaikki asukkaat ovat tervetulleita tutkimaan ajatuksia herättäviä aiheita, kuten:</p><p><br></p><p><strong>Rohkeus: </strong>Mitä se on ja miten sitä osoitetaan?</p><p><br></p><p><strong>Yhteisö:</strong> Mikä herättää ylpeyttä, ja mitä voisi parantaa?</p><p><br></p><p><strong>Empatia: </strong>Mitä se tarkoittaa ja miksi se on tärkeää?</p><p><br></p><p>Tämä keskustelukerho on muutakin kuin englannin kielen harjoittelua. Se on kerho, jossa kehitetään ”tekoälyn jälkeisiä” taitoja - inhimillisiä ominaisuuksia, jotka ovat välttämättömiä, jotta voi menestyä nykyaikaisessa, tekoälyyn integroituneessa maailmassa:</p><p><br></p><p><strong>Tunneäly: </strong>Henkilökohtaisten ja jaettujen tunteiden ymmärtäminen.</p><p><br></p><p><strong>Intuitio:</strong> Vaistojen käyttäminen suurissa päätöksissä.</p><p><br></p><p><strong>Kriittinen ajattelu: </strong>Tietoon perustuvien, itsenäisten valintojen tekeminen.</p><p><br></p><p><strong>Yhteistyö, luovuus, kulttuuritietoisuus ja paljon muuta.</strong></p><p><br></p><p>Jokaisella on ainutlaatuinen näkökulma tulevaisuudesta, mikä luo mahdollisuuden oppia ja kasvaa yhdessä.</p><p><br></p><p>Aika: klo 15-16, joka lauantai 4. tammikuuta alkaen 2025.</p><p><br></p><p>Paikka: Hytti, Lippulaivan kirjasto, Espoo</p><p><br></p><p>Yhdistetään, jaetaan ja rakennetaan vahvempaa yhteisöä keskustelun kautta!</p>", "en": "<p><strong>Join Our English-Speaking Conversation Club!</strong></p><p>All residents are invited to explore thought-provoking topics such as:</p><p>Courage: What is it, and how is it shown?</p><p>Community: What inspires pride, and what could be improved?</p><p>Empathy: What does it mean, and why is it important?</p><p><br></p><p>This club is more than just practicing English. It’s a space to develop \"post-AI\" skills—the human qualities essential for thriving in a modern, AI-integrated world:</p><p><br></p><p><strong>Emotional Intelligence:</strong> Understanding personal and shared emotions.</p><p><strong>Intuition:</strong> Trusting instincts for big decisions.</p><p><strong>Critical Thinking: </strong>Making informed, independent choices.</p><p><strong>Collaboration, creativity, cultural awareness, </strong>and more.</p><p><br></p><p>Everyone brings a unique perspective on the future, creating an opportunity to learn and grow together.</p><p><br></p><p><br></p><p>Day: Every Saturday, starting on 4th of January 2025</p><p>Time: at 15-16 EEST</p><p>Place: Hytti, Lippulaiva Library, Espoo</p><p><br></p><p>Let’s connect, share, and build a stronger community through conversation!</p>" }, "provider": null, "name": { "fi": "Englanninkielinen keskustelukerho aikuisille", "en": "English-Speaking Conversation Club for adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj472rxmi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj47myeie", "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:p10727/?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:p2630/?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": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myfdi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myfh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myfmi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myfq4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myfvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myf24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myf7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47mygem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47mygje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47mygoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47mygsu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47mygw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myg4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myhai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myhei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myhii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myhmy/?format=api" } ], "images": [ { "id": 150453, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-07T11:30:54.908155Z", "last_modified_time": "2024-03-07T11:30:54.908183Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/luetaanyhdess%C3%A4.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "valokuva kädestä, muistilapusta ja suomenkielen oppikirjasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-16T12:55:43.021430Z", "last_modified_time": "2024-12-16T13:03:30.387357Z", "date_published": null, "start_time": "2025-01-08T08:15:00Z", "end_time": "2025-05-07T08:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea.\n\nOpettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.", "sv": "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!", "en": "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!" }, "description": { "fi": "<p>Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea.</p><p>Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.</p><p>Ryhmä kokoontuu Entressen kirjaston Sinisessä huoneessa keskiviikkoisin 8.1.-7.5.2025 klo 10:15-11:45. Ei kuitenkaan 19.2.. talvilomalla eikä 30.4. vappuaattona</p><p>Ryhmän vetäjänä on Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</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, diskuterar olika ämnen och övar på att skriva varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp.</p><p><br></p><p>Gruppen träffas i Sininen huone på Entresse biblioteket onsdagar 8.1.-7.5.2025 kl. 10.15-11.45. Utom den 19.2. under vintersemestern och den 30.4.</p><p>Gruppen leds av frivilliga från Vi läser tillsammans -nätverket/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</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, discuss different topics and practice writing every time. It's not necessary to register in advance, you can just show up. The meetings are held on Wednesdays 8.1.-7.5.2025. in Sininen huone. On 19.2. and 30.4.. we are on holidays.</p><p>The group is run by the volunteers of Let's Read Together -network/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p>" }, "provider": { "fi": "Luetaan yhdessä-verkoston vapaaehtoiset", "sv": "Vi läser tillsammans -nätverket", "en": "Let's Read Together -network" }, "name": { "fi": "Luetaan yhdessä", "sv": "Vi läser tillsammans", "en": "Let's Read Together" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myeie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj47myhqq", "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:p2149/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-16T12:46:35.572193Z", "last_modified_time": "2024-12-16T12:46:35.572213Z", "date_published": null, "start_time": "2024-12-28T11:00:00Z", "end_time": "2024-12-28T13: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, "location_extra_info": { "fi": "Yhteisökeittiö Kapyysi" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa paistamaan vohveleita yhteisökeittiö Kapyysiin 28.12. klo 13-15. " }, "description": { "fi": "<p>Tervetuloa paistamaan vohveleita yhteisökeittiö Kapyysiin 28.12. klo 13-15. Kirjasto tarjoaa vohvelitaikinan ja kirjaston työntekijät auttavat tarvittaessa vohveleiden paistossa.</p>" }, "provider": null, "name": { "fi": "Vohveleiden paistamista " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myhqq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj47myhvq", "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:p1235/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-16T12:36:44.404560Z", "last_modified_time": "2024-12-16T12:36:44.404582Z", "date_published": null, "start_time": "2024-01-03T15:00:00Z", "end_time": "2025-01-03T17: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 17.00 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 17:00 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:00 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>", "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag klockan 17:00 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>", "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:00, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>" }, "provider": null, "name": { "fi": "Lippulaivan kirjaston lasten perjantaileffa", "sv": "Lippulaivabibliotekets fredagsfilm för barn", "en": "Lippulaiva library's movie screening for children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myhvq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj47mysqq", "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:p1235/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myp5m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myqei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myqiq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myqm4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myqre/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myqvq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myqz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myq6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myrei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myrji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myroa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myrsm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myrwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47myr3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47mysam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47mysfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47mysju/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-16T12:29:19.480491Z", "last_modified_time": "2024-12-16T12:29:19.480512Z", "date_published": null, "start_time": "2025-01-17T15:00:00Z", "end_time": "2026-05-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 17.00 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 17:00 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:00 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>", "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag klockan 17:00 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>", "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:00, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>" }, "provider": null, "name": { "fi": "Lippulaivan kirjaston lasten perjantaileffa", "sv": "Lippulaivabibliotekets fredagsfilm för barn", "en": "Lippulaiva library's movie screening for children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj47mysqq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj467fkgm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fjoy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fjzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fj6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fkcu/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-16T12:10:59.942644Z", "last_modified_time": "2024-12-16T12:10:59.942664Z", "date_published": null, "start_time": "2025-01-23T15:45:00Z", "end_time": "2025-04-24T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Lukulemmikki Cara odottaa innolla lukijoita Lippulaivan kirjastoon klo 17:45 - 18:30.", "sv": "Läskeldjur Cara ser fram emot läsare på Lippulaiva biblioteket kl. 17:45 - 18:30.", "en": "Reading Buddy Cara is eagerly awaiting readers at Lippulaiva Library from 17:45 - 18:30." }, "description": { "fi": "<p>Lukukoira Cara odottaa innolla lukijoita Lippulaivan kirjastoon klo 17:45 - 18:30 .</p><p>Kevään 2025 lukukerrat:</p><p>To 23.1.</p><p>To 20.2.</p><p>To 27.3.</p><p>To 24.4.</p><p>Tervetuloa!</p>", "sv": "<p>Läskeldjur Cara ser fram emot läsare på Lippulaiva biblioteket kl. 17:45 - 18:30.</p><p>Läsdagar våren 2025:</p><p>Turs. 23.1.</p><p>Turs. 20.2.</p><p>Turs. 27.3.</p><p>Turs. 24.4.</p><p>Välkommen!</p>", "en": "<p>Reading Buddy Cara is eagerly awaiting readers at Lippulaiva Library from 17:45 to 18:30.</p><p>Spring semester 2025:</p><p>Thursday 23.1.</p><p>Thursday 20.2.</p><p>Thursday 27.3.</p><p>Thursday 24.4.</p><p>Welcome!</p>" }, "provider": null, "name": { "fi": "Lukukoira Cara", "sv": "Läskeldjur Cara", "en": "Reading Buddy Cara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fkgm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj467fkli", "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/yso:p1235/?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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-16T12:05:18.382356Z", "last_modified_time": "2024-12-16T12:05:18.382525Z", "date_published": "2024-12-16T11:35:00Z", "start_time": "2025-02-01T14:00:00Z", "end_time": "2025-02-01T15: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, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Mikä oli Porkkalan parenteesi? Siitä dokumentin käsikirjoittanut Christoffer Holm kertoo, sekä haastattelee De utraderade-kirjan kirjoittanutta Maria Saaristoa.", "sv": "Vad var Porkalaparentesen? Christoffer Holm, som skrivit dokumentären, berättar om ämnet och intervjuar Maria Saaristo, författare till boken De utraderade." }, "description": { "fi": "<p>Mikä oli Porkkalan parenteesi? Miten <a href=\"https://areena.yle.fi/1-67773545\">dokumenttisarja </a>tehtiin? Porkkalan parenteesista kertovan dokumentin käsikirjoittaja Christoffer Holm kertoo.</p><p><a href=\"https://helmet.finna.fi/Record/helmet.2596680?sid=4885832400\">”De utraderade”</a>, on romaani Porkkalan parenteesista ja naisen roolista yhteiskunnassa sodanjälkeisessä Suomessa. Christoffer Holm haastattelee kirjailija Maria Saaristoa.</p><p>Tilaisuus on pääasiassa ruotsinkielinen, mutta voit kertoa muistoja Porkkalan parenteesista ja esittää kysymyksiä myös suomeksi.</p>", "sv": "<p>Vad var Porkalaparentesen? Hur gjordes <a href=\"https://areena.yle.fi/1-67773545\">dokumentärserien</a>? Christoffer Holm, manusförfattare till dokumentären om Porkalaparentesen, berättar.</p><p><a href=\"https://helmet.finna.fi/Record/helmet.2596680?sid=4885832400\">“De utraderade”</a>, romanen om Porkalaparentesen och om kvinnans roll i samhället i det efterkrigstida Finland. Christoffer Holm intervjuar författaren Maria Saaristo.</p><p>Evenemanget är mest på svenska, men du kan dela med dig av dina minnen av Porkalaparaden och ställa frågor på finska.</p>" }, "provider": null, "name": { "fi": "Porkkalan parenteesi (1944-1956) - ajanjakso, jolloin Espoo rajautui Neuvostoliittoon", "sv": "Porkalaparentesen (1944-1956) - perioden då Esbo gränsade till Sovjetunionen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fkli/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj467fne4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fkqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fkum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fkyq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fk4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467flba/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467flfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467flji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467flne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467flrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467flwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fl2a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fl54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fmb4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fmii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fmmi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fmqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fmuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fmyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fm4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fnam/?format=api" } ], "images": [ { "id": 151374, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-19T07:22:27.682923Z", "last_modified_time": "2024-03-19T07:22:27.682943Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ibmoon-kim-DWzJXQBKlr4-unsplash.jpg", "cropping": "149,0,531,382", "photographer_name": "Kim Ibmoon", "alt_text": "Kuvassa lautapelihahmot ja lautapeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151374/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-16T12:02:56.553522Z", "last_modified_time": "2024-12-16T12:02:56.553543Z", "date_published": null, "start_time": "2025-01-17T15:30:00Z", "end_time": "2025-05-30T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Suuri kokoustila Kajuutta", "sv": "Suuri kokoustila Kajuutta", "en": "Suuri kokoustila Kajuutta" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa aikuisten lautapeli-iltaan perjantaisin ", "sv": "Välkommen till brädspelskvällen för vuxna på fredagar", "en": "Welcome to the adult board game night on Fridays" }, "description": { "fi": "<p>Lautapeli-illat on matalankynnyksen iltoja, johon voit tulla ihan omana itsenäsi.</p><p>Iltoihin ei tarvitse aikaisempaa kokemusta, koska käymme läpi pelisäännöt ennen pelaamista.</p><p>Pidämme 15 min tauon pelien lomassa, jolloin voit keittää kahvia/teetä (omat kahvit ja teet)tai lämmittää ruokaa kirjaston keittiössä.</p><p>Iltaan voi tulla kesken pelien.</p><p>Omia pelejä voi tuoda tullessaan.</p><p>Pelikieli on suomi.</p><p>Lautapeli-iltaan ei tarvitse ilmoittautua.</p><p>Tapahtumaa ei järjestetä arkipyhinä.</p>", "sv": "<p>Brädspelskvällar är kvällar med låg tröskel där du kan komma som dig själv.</p><p>Ingen tidigare erfarenhet behövs eftersom vi går igenom spelreglerna innan vi börjar spela.</p><p>Vi tar en 15 minuters paus mellan spelen, under vilken du kan koka kaffe/te (ta med ditt eget kaffe och te) eller värma lite mat i bibliotekets kök.</p><p>Du kan ansluta dig till oss för kvällen mitt i spelen.</p><p>Du kan ta med dina egna spel.</p><p>Evenemanget är på finska</p><p>Du behöver inte anmäla dig till brädspelskvällen före spelkvällen.</p><p>Evenemanget kommer inte att äga rum på allmänna helgdagar.</p>", "en": "<p>Board game nights are low-threshold evenings where you can come as yourself.</p><p>No previous experience is necessary as we go through the rules of the games before we start playing.</p><p>We take a 15 minutes break between games, during which you can make coffee/tea (bring your own coffee and tea) or heat up some food in the library kitchen.</p><p>You can join us for the evening in the middle of the games.</p><p>You can bring your own games.</p><p>The game language is Finnish.</p><p>No need to sign up for the board game night before the game night.</p><p>The event will not take place on public holidays.</p>" }, "provider": null, "name": { "fi": "Aikuisten lautapelikerho", "sv": "Brädspelsklubb för vuxna", "en": "Board game club for adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fne4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj467fpte", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fniq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fnnu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fnri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fnve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fnyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fn4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fn74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467foei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467foia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467foly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467foqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467foty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467foxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fo3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fo64/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fpcq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fpgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fpke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fppm/?format=api" } ], "images": [ { "id": 150665, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-18T05:42:17.383444Z", "last_modified_time": "2024-04-18T05:42:17.383463Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Lukukoirat_Veiti_Nekku_ja_P%C3%A4tkis.png", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kolme koiraa kirjahyllyjen edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150665/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-16T11:36:53.026518Z", "last_modified_time": "2024-12-16T11:36:53.026539Z", "date_published": null, "start_time": "2025-01-13T16:00:00Z", "end_time": "2025-05-26T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!", "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!", "en": "Hello reader! On Mondays in the library you can read to a reading dog!" }, "description": { "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!</p><p>Nekun ja Pätkiksen voi tavata parittomien viikkojen maanantaisin klo 18-19.</p><p>Veitin voi tavata parillisten viikkojen maanantaisin klo 18-19.</p>", "sv": "<p>Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!</p><p>Du kan träffa Nekku och Pätkis på måndagar udda veckor kl 18-19.</p><p>Du kan träffa Veiti på måndagar jämna veckor 18-19.</p>", "en": "<p>Hello reader! On Mondays in the library you can read to a reading dog!</p><p>You can meet Neku and Pätkis on Mondays of odd weeks at 18-19.</p><p>You can meet Veit on Mondays of even weeks from 18-19.</p>" }, "provider": null, "name": { "fi": "Lukukoira tavattavissa", "sv": "Läshund finns tillgänglig", "en": "Reading dog available" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj467fpte/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj45it6km", "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: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-16T08:06:16.477589Z", "last_modified_time": "2024-12-16T08:07:56.151299Z", "date_published": null, "start_time": "2025-01-17T16:00:00Z", "end_time": "2025-01-17T17: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, "location_extra_info": { "fi": "Estradi", "en": "Estradi" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa kuuntelemaan klassisen kitaran konserttia: Sound of the moment, jossa Feier Fan Feier esittää tunnettua klassista kitaramusiikkia.", "en": "During this concert event, Feier will perform and introduce well-known classical guitar music from different styles and periods. Welcome!" }, "description": { "fi": "<p>Tervetuloa kuuntelemaan Feier Fanin klassisen kitaran konserttia: Sound of the moment Estradille perjantaina 17.1. klo 18.00 - 19.30. Tapahtuma on maksuton ja kaikille avoin!</p><p>Feier Fan, lahjakas klassinen kitaristi, on esittänyt musiikkiaan ympäri maailmaa. Feier suoritti maisterin tutkinnon Manhattan School of Musicissa New Yorkissa ja aloitti pian sen jälkeen esiintymisuransa.</p><p>Feier uskoo, että musiikki yhdistää meitä kaikkia. Hän korostaa, että vaikka digitaalinen ääni ja video ovat käteviä, ne eivät voi koskaan korvata elävän konsertin taikaa - ainutlaatuista, yhteistä kokemusta, joka puhuttelee suoraan sydäntä. Hänelle musiikki ei ole pelkkää ääntä, vaan ajan ja hetken taidetta, sielua koskettavaa virtausta.</p><p>Maailmankuulu kitaristi Denis Azabagic kuvaili Feieriä ”äärimmäisen lahjakkaaksi nuoreksi kitaristiksi”. Toinen ylistetty kitaristi, David Starobin, kirjoitti suosituskirjeessään: ”Neiti Feier on virtuoosimainen kitaristi, jolla on poikkeuksellinen lahjakkuus ja esiintymiskyky. Hän on hyvin erityinen muusikko ja ansaitsee suurta menestystä musiikkimaailmassa.”</p><p>Konsertin aikana Feier esittää ja esittelee tunnettua klassista kitaramusiikkia eri tyyleistä ja aikakausilta.</p><p>Tapahtuma on englanninkielinen.</p>", "en": "<p>Welcome to Feier Fan's classical guitar concert Sound of the moment Estradi on Friday 17.1. at 18.00 - 19.30. The event is free of charge and open to everyone!</p><p><br></p><p>Feier Fan, a gifted classical guitarist, has been sharing her music with audiences worldwide. She earned her master’s degree from the Manhattan School of Music in New York and began her performing career shortly after.</p><p><br></p><p>Feier believes that music is a powerful force that connects us all. She often emphasizes that, while digital audio and video are convenient, they can never replace the magic of a live concert—a unique, shared experience that speaks directly to the heart. For her, music is not just sound; it is the art of time and moment, a flow that touches the soul.</p><p><br></p><p>World-renowned guitarist Denis Azabagic described Feier as “an extremely talented young guitarist.” Another acclaimed guitarist, David Starobin, wrote in a recommendation letter: “Miss Feier is a virtuoso guitarist with exceptional talent and performance abilities. She is a very special musician and deserves great success in the music world.”</p><p> </p><p>During this concert event, Feier will perform and introduce well-known classical guitar music from different styles and periods.</p>" }, "provider": { "fi": "Feier Fan", "en": "Feier Fan" }, "name": { "fi": "Klassisen kitaran konsertti: Sound of the moment", "en": "Sound of the moment - classical guitar concert" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj45it6km/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj45it7gi", "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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj45it6za/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj45it64a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj45it67y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj45it7di/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7a7i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-12-16T07:43:32.644477Z", "last_modified_time": "2024-12-16T07:43:32.644499Z", "date_published": null, "start_time": "2025-01-28T11:00:00Z", "end_time": "2025-05-27T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aisti / Sininen huone " }, "info_url": { "fi": "https://muistiliitto.fi/muistiluotsit/uudenmaan-muistiluotsi/etusivu-3/" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa lukemaan ja keskustelemaan - aivoterveyden ja hyvinvoinnin tueksi, omaksi ja lähimmäisten iloksi." }, "description": { "fi": "<p>Tervetuloa lukemaan ja keskustelemaan - aivoterveyden ja hyvinvoinnin tueksi, omaksi ja lähimmäisten iloksi.</p><p>Ryhmä valitsee yhdessä luettavat kirjat. Valinnan tueksi ehdotamme luettavaksi joitain seuraavista kirjoista: </p><ul><li>Aivotaidot. Käytä päätäsi paremmin (Heli Isomäki & Nina Uusitalo)</li><li>Aivoterveys. Viiden sormen ohje (Miia Kivipelto & Mai-Lis Hellenius) </li><li>Aivovoimaa. Näin vahvistat aivojasi liikunnalla (Anders Hansen) </li><li>Seitsemän ja puoli oppia aivoista (Lisa Feldman Barrett)</li><li>Uuden ajan muistikirja (Minna Huotilainen & Leeni Peltonen)</li></ul><p>Ryhmää ohjaa Uudenmaan Muistiluotsin vapaaehtoinen. Ryhmä on avoin kaikille muistinhuollosta kiinnostuneille. Ryhmään tulee ilmoittautua etukäteen. Osallistuminen on maksutonta! </p><p>Ryhmä kokoontuu:</p><p>kerran kuukaudessa tiistaina klo 13-15</p><p>28.1. Ryhmätyötila Aisti</p><p>25.2. Sininen huone</p><p>25.3. Sininen huone </p><p>29.4. Sininen huone</p><p>27.5. Sininen huone</p><p><br></p><p>Ilmoittautuminen ja lisätiedot: Muistiohjaaja Asta Koskinen, Ilmoittautuminen ja lisätiedot: Muistiohjaaja Asta Koskinen, asta.koskinen@espoonmuisti.fi tai 040 542 5253</p>" }, "provider": { "fi": "Uudenmaan Muistiluotsi" }, "name": { "fi": "Uudenmaan Muistiluotsin lukupiiri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj45it7gi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj4apqru4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqqzy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqq5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqq7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqrce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqrey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqrhi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqrke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqrni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqrpu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqrse/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T13:14:04.640912Z", "last_modified_time": "2024-12-15T14:14:30.500662Z", "date_published": null, "start_time": "2024-12-17T06:00:00Z", "end_time": "2024-12-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Näyttelyseinä" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Näyttely koostuu Espoon Mielenterveysyhdistyksen EMYn viikottain Kivenlahdessa kokoontuvan taideryhmän \"Ilon Maalarit\" töistä. Näyttely on esillä 17.12.-29.12. " }, "description": { "fi": "<p>Näyttely koostuu Espoon Mielenterveysyhdistyksen EMY:n viikottain Kivenlahdessa kokoontuvan taideryhmän \"Ilon Maalarit\" töistä. Ilon maalarit on vapaamuotoinen taideryhmä, joka kokoontuu Kivenlahdessa MeriEmyn tiloissa. Rento lähestymistapa kuvataiteeseen ja toisten seurassa viihtyminen ovat Ilon maalareitten pitkäaikaisen toiminnan ytimessä. </p><p> Näyttely on esillä 17.12.-29.12. Tervetuloa ihastelemaan töitä!</p><p><br></p>" }, "provider": { "fi": "Espoon Mielenterveysyhdistyksen EMY:n taideryhmä \"Ilon Maalarit\"" }, "name": { "fi": "Espoon Mielenterveysyhdistyksen EMY:n \"Ilon Maalarit\"-taideryhmän taidenäyttely" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqru4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj4tzcllu", "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:p1947/?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:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzcjk4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzcjwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzcj2u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzcj6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzckci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzckga/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzckj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzcknu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzcksa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzckwi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzck24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzck7m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzcldu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzclhq/?format=api" } ], "images": [ { "id": 150478, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-07T13:06:07.371387Z", "last_modified_time": "2024-03-07T13:06:07.371477Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/senioorijooga-markku-680x380_2.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Markku Sosimäki ja joogaaja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150478/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-12-15T09:20:44.955647Z", "last_modified_time": "2024-12-15T09:20:44.955677Z", "date_published": null, "start_time": "2025-01-31T08:00:00Z", "end_time": "2025-05-16T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Akseli-sali", "sv": "Akseli-salen", "en": "Akseli hall" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Seniorijoogaa ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut jooganopettajana ympäri maailman jo 40 vuoden ajan.\n\n", "sv": "Senioryogan leds Markku Sosimäki alias Dada Rasatmakananda. Han har undervisat i yoga runt om i värl", "en": "Senior yoga is led by the experienced Markku Sosimäki aka Dada Rasatmakananda. He has been teaching yoga around the world for 40 years." }, "description": { "fi": "<p>Seniorijoogaa ohjaa kokenut Markku Sosimäki eli Dada Rasatmakananda. Hän on toiminut jooganopettajana ympäri maailman jo 40 vuoden ajan.</p><p>Tarvitset vain tavalliset mukavat vaatteet ja alustan lattialla olemista varten. Alustaksi kelpaa joogamatto, makuualusta tai mikä tahansa viltti.</p>", "sv": "<p>Senioryogan leds Markku Sosimäki alias Dada Rasatmakananda. Han har undervisat i yoga runt om i världen i 40 år.</p><p>Allt du behöver är dina vanliga bekväma kläder och en plattform för att stå på golvet. En yogamatta, ett liggunderlag eller någon form av filt duger.</p>", "en": "<p>Senior yoga is led by the experienced Markku Sosimäki aka Dada Rasatmakananda. He has been teaching yoga around the world for 40 years.</p><p>All you need is your usual comfortable clothes and a platform to stand on the floor. A yoga mat, a sleeping pad or any kind of blanket will do.</p>" }, "provider": null, "name": { "fi": "Seniorijoogaa", "sv": "Senioryogan", "en": "Senior yoga" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4tzcllu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj4apqqxa", "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/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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqpd4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqpha/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqpka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqpmm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqppa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqprq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqpua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqpxa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqpzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqp4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqp7m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqqda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqqf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqqim/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqqli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqqoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqqrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqque/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T13:17:05.969025Z", "last_modified_time": "2024-12-13T13:17:05.969047Z", "date_published": null, "start_time": "2025-01-24T15:00:00Z", "end_time": "2025-05-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Tapahtumatila Heikki", "sv": "Heikki", "en": "Heikki" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Ukulelejamit järjestetään perjantaisin klo 17-18 Tapiolan kirjaston tapahtumatila Heikissä. Jamit ovat avoimia kaikille. ", "sv": "Ukulele Jam Session hålls varje fredag kl. 17-18 i Tapiolas bibliotek.", "en": "The Ukulele Jam Session is every Friday from 5pm to 6pm at the Tapiola Library. There is also a piano for you to play at the Jam Session. " }, "description": { "fi": "<p>Ukulelejamit järjestetään perjantaisin Tapiolan kirjaston tapahtumatila Heikissä klo 17.00-18.00. Jamit ovat avoimia kaikille. Voit osallistua jameihin kaikilla soittimilla. Tilasta löytyy piano. Tule mukaan jameihin soittamaan omia lempikappaleita tai vaikka vain nauttimaan yhdessä musisoinnista. </p><p>#ukulele #musiikki #jami #jamit #trumpetti</p>", "sv": "<p>Ukulele Jam Session hålls varje fredag kl. 17-18 i Tapiolas bibliotek.</p>", "en": "<p>The Ukulele Jam Session is held every Friday from 5pm to 6pm at the Tapiola Library. There is also a piano for you to play at the Jam Session.</p>" }, "provider": null, "name": { "fi": "Ukulelejamit", "sv": "Ukulele Jam Session", "en": "Ukulele Jam Session" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4apqqxa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj4ab5wxm", "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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5t7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5uda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5uhm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5ulq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5upq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5uui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5uya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5u4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5vaq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5veq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5vja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5voe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5vsi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5vwy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5v3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5v7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5we4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5wj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5woi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5wti/?format=api" } ], "images": [ { "id": 150472, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T07:34:03.349624Z", "last_modified_time": "2024-03-13T07:34:03.349649Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Entressen_lukukoirat.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kaksi mäyräkoiraa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-12-13T11:48:46.621631Z", "last_modified_time": "2024-12-13T11:48:46.621652Z", "date_published": null, "start_time": "2025-01-09T11:00:00Z", "end_time": "2025-05-22T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lastenosasto", "sv": "barnavdelningen", "en": "children's department" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": " Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.", "sv": " Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.", "en": " If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader." }, "description": { "fi": "<p>Hei,</p><p>Olemme Nekku ja Pätkis, Entressen lukukoirat. Tykkäämme rapsuttelusta ja kuuntelemisesta. Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.</p><p>Kaikki ovat tervetulleita rapsuttamaan!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin klo 13-15 (2025 ensimmäinen kerta 9.1.).</p><p>Tervetuloa!</p>", "sv": "<p>Hej på er,</p><p>Vi är Nekku och Pätkis, Entresses läshundar. Vi gillar att bli klappade och lyssnade på. Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.</p><p>Alla är välkomna att klösa!</p><p>Nekku och Pätkis finns på barnavdelningen Entresse på torsdagar från den kl 13-15 (2025 första gången 9.1.).</p><p>Varmt välkomna!</p>", "en": "<p>Hello,</p><p>We are Nekku and Pätkis, Entresse's reading dogs. We like to be petted and listened to. If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader.</p><p>Everyone is welcome to scratch!</p><p>Nekku and Pätkis can be found in the Entresse children's section on Thursdays at 13-15 (2025 första gången 9.1.).</p>" }, "provider": null, "name": { "fi": "Lukukoirat Nekku ja Pätkis tavattavissa", "sv": "Läshundarna Nekku och Pätkis kan träffas", "en": "Meet the reading dogs Nekku and Pätkis" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5wxm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj4ab5zly", "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": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5w3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5xae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5xey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5xje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5xnm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5xsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5xxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5x34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5x74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5yd4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5yii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5ymy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5ysq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5ywq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5y2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5y7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5zdm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5zhi/?format=api" } ], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2024-03-13T08:52:37.532917Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "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-12-13T11:43:55.606378Z", "last_modified_time": "2024-12-13T11:43:55.606400Z", "date_published": null, "start_time": "2025-01-10T10:00:00Z", "end_time": "2025-05-23T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "info_url": null, "provider_contact_info": 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?" }, "description": { "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30. Kielikahvila kokoontuu 10.1.-23.5. (ei 21.2. ja 18.4.) 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 10.1.-23.5. (inte 21.2. och 18.4.). 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 10.1.-23.5. (not 21.2. and 18.4.). 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>" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "name": { "fi": "SPR:n kielikahvila", "sv": "Finskt språkcafé på fredagar", "en": "Finnish Language Cafe on Fridays" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj4ab5zly/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj2uvr4xm", "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/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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-09T06:43:09.724752Z", "last_modified_time": "2024-12-13T11:30:58.324630Z", "date_published": null, "start_time": "2024-12-17T13:45:00Z", "end_time": "2024-12-17T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "info_url": { "fi": "https://emo.fi/tapahtumat/lahiajan-konsertteja/", "sv": "https://emo.fi/tapahtumat/lahiajan-konsertteja/", "en": "https://emo.fi/tapahtumat/lahiajan-konsertteja/" }, "provider_contact_info": null, "short_description": { "fi": "Espoon kulttuurikeskus on Joulutalo, jossa Espoon Musiikkiopiston (EMO) oppilaat soittavat jouluista musiikkia!", "sv": "Esbo kulturcentrum är julhuset, där elever från Espoon musiikkiopisto (EMO) spelar julmusik!", "en": "The Espoo Cultural Centre is the Christmas House, where students from the Espoo Music Academy (EMO) play Christmas music!" }, "description": { "fi": "<p>Espoon kulttuurikeskus on Joulutalo, jossa Espoon Musiikkiopiston (EMO) oppilaat soittavat jouluista musiikkia!</p><p>Kirjastossa konsertit järjestetään Tapahtumatila Kaijassa:</p><ul><li>klo 15.45 viuluryhmät</li><li>klo 16.45 harmonikan soittajat ja EMOn kamut</li><li>klo 17.45 harpistit</li></ul><p>Kirjaston pajassa myös jouluista askartelua!</p>", "sv": "<p>Esbo kulturcentrum är julhuset, där elever från Espoon musiikkiopisto (EMO) spelar julmusik!</p><p>Konserter i biblioteket </p><ul><li>kl. 15.45</li><li>kl. 16.45</li><li>kl. 17.45</li></ul>", "en": "<p>The Espoo Cultural Centre is the Christmas House, where students from the Espoo Music Academy (EMO) play Christmas music!</p><p>Concerts in the library:</p><ul><li>at 15.45</li><li>at 16.45</li><li>at 17.45</li></ul>" }, "provider": { "fi": "Espoon musiikkiopisto (EMO)", "sv": "Espoon musiikkiopisto (EMO)", "en": "Espoon musiikkiopisto (EMO)" }, "name": { "fi": "Joulutalo - EMO:n konsertit kirjastossa", "sv": "Julhus - EMOs konserter i biblioteket", "en": "Christmas house - EMOs concerts in the library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj2uvr4xm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agj37tzu7e", "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/yso:p2787/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzs2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzs6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tztby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tztfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tztja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tztmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tztqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzttq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tztwy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tztzy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzt6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzubi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzueu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzuie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzulq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzuou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzuru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzuu4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzuyq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzu34/?format=api" } ], "images": [ { "id": 150424, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-02T11:38:23.642576Z", "last_modified_time": "2024-01-02T11:38:40.073001Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/K%C3%A4sity%C3%B6ryhm%C3%A4_20231123.jpg", "cropping": "874,0,3126,2252", "photographer_name": "", "alt_text": "Viisi henkilöä neuloo pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150424/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-13T11:11:38.263846Z", "last_modified_time": "2024-12-13T11:11:38.263870Z", "date_published": null, "start_time": "2025-01-09T15:30:00Z", "end_time": "2025-05-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Käsityöryhmä toimii omatoimisesti ja jokainen osallistuja tuo omat tarvikkeensa. \n\nTule mukaan neulomaan ja tutustumaan muihin ryhmäläisiin.", "sv": "Hantverksgruppen är självstyrande och varje deltagare tar med sig sina egna tillbehör. \n\nKom och sticka och träffa andra gruppmedlemmar.\n", "en": "The craft group is self-directed and each participant brings their own supplies. \n\nCome along to knit and meet other group members.\n" }, "description": { "fi": "<p>Käsityöryhmä toimii omatoimisesti ja jokainen osallistuja tuo omat tarvikkeensa.</p><p>Käsityökerho kokoontuu torstaisin klo 17:30 - 19:00 pienessä kokoustila Hytissä.</p><p>Tule mukaan neulomaan ja tutustumaan muihin ryhmäläisiin.</p><p>#käsityökerho #neulominen</p>", "sv": "<p>Hantverksgruppen är självstyrande och varje deltagare tar med sig sina egna tillbehör.</p><p>Hantverksklubben träffas på torsdagar kl. 17.30-19.00 i det lilla mötesrummet Hytti.</p><p>Kom och sticka och träffa andra gruppmedlemmar.</p><p>#hantverk #stickning</p>", "en": "<p>The craft group is self-directed and each participant brings their own supplies.</p><p>The craft club meets on Thursdays from 17:30 to 19:00 in the small meeting room Hytti.</p><p>Come along to knit and meet other group members.</p><p>#crafts #knitting</p>" }, "provider": null, "name": { "fi": "Käsityökerho", "sv": "Hantverksklubb", "en": "Handicraft club" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj37tzu7e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19425, "next": "