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_super_event=true&page=1155
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1156", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1154" }, "data": [ { "id": "helmet:257488", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?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:p16486/?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:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4758, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-13T13:50:18.939305Z", "last_modified_time": "2023-09-13T13:50:18.939328Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3C4AC710-C2B5-4967-8183-3416B55D8BF6}/101410", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4758/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-09-13T13:50:17.345819Z", "last_modified_time": "2023-11-05T10:23:24.764723Z", "date_published": "2023-03-24T10:30:00Z", "start_time": "2023-11-04T11:00:00Z", "end_time": "2023-11-04T15: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<h2> <strong>Sellon kirjaston musafestarit II 4.11.2023 klo 13.00</strong> </h2></p><p>Sellon kirjaston musafestareiden esiintyjät ovat nyt julkaistu! Musafestareilla esiintyjinä toimivat kirjaston asiakkaat. Pääsemme päivän aikana kuulemaan paljon erityylisiä musiikkiesityksiä. Ota ystävä mukaan ja tule nauttimaan musiikista ja festareiden tunnelmasta Sellon kirjastoon klo 13.00 alkaen! Ohjelmaan tulee vielä tarkentavia tietoja esiintyjistä. Tekniikasta ja äänentoistosta vastaa kirjaston henkilökunta. </p><p> <strong>13.00 Vladi </strong> </p><p>Hänen nimensä on Vladi. Hän on aloittava suomalainen muusikko. Vladi esittää pop-musiikkia suomen kielellä ja hän myös itse säveltää omia kappaleita. </p><p> <strong>13.20 Sekulele</strong> </p><p>Sellon kirjaston ukuleleryhmä soittaa viikoittain yhdessä. Soittajat ovat erittäin eteviä ja innokkaita muusikoita, jotka tarttuvat innolla uusiin sovituksiin ja haasteisiin. Konsertissa kuulemme laajasti erilaisia soittotekniikoita ja erityylisiä musiikkikappaleita. </p><p> <strong>13.40 Hanna Haapanen </strong> </p><p>Hanna Haapanen on helsinkiläinen laulaja-lauluntekijä ja omakustanneartisti, joka säveltää ja sanoittaa folk-henkisiä, runollisia kappaleitaan ensisijaisesti itselleen rohkaisuksi ja lohdutukseksi. Hän haluaa jakaa musiikista saamaansa toivoa muillekin, sillä yhden laulunsa sanoin “en ole yksin kun laulan”. Toukokuussa 2023 Hanna julkaisi toisen studioalbuminsa Hiljaa hyvä tulee, joka käsittelee odotuksen, kaipuun, yksinäisyyden ja toipumisen teemoja syvällisesti ja rehellisesti, mutta valoisalla pohjavireellä. Kaunista maisemointia levyn kitaravetoisiin kappaleisiin luovat tuottaja Viktori Pesosen (SpiritEagle) upeat sovitukset sekä vierailevat soittajat. Live-esiintyjänä Hanna on energinen, herkkä ja persoonallinen tulkitsija. </p><p> <strong>14.00 Sabrina Donovan </strong> </p><p>Stephen ja Sabrina Donovan muuttivat Suomeen Ukrainasta sodan takia. Suomeen saapuessaan he molemmat osallistuivat piano-ohjelmiin sekä Helsingin konservatoriossa että Sibelius-Akatemiassa. </p><p>Ohjelmisto: </p><p>Turkish March, by Mozart <br> Nottorno by Grieg <br> D. Scarlatti: Sonata in B minor K. 27 L. 449 </p><p> <strong>14.20 Stephen Donovan </strong> </p><p>Stephen ja Sabrina Donovan muuttivat Finandiin Ukrainasta sodan takia. Suomeen saapuessaan he molemmat osallistuivat piano-ohjelmiin sekä Helsingin konservatoriossa että Sibelius-Akatemiassa. </p><p>Ohjelmisto: </p><p>MacDowell: Shadow Dance, Op. 39 No. 8 <br> J.B.Vanhal, Sonata d moll op.30 <br> Selim Palmgren ~ Snowflakes Op. 57 </p><p> <strong>14.40 Nokkahuilutrio</strong> </p><p>Nokkahuilutrio muodostuu kolmesta nokkahuiluyhtye Flauto Dolcen jäsenestä, jotka soittavat W.A. Mozartin Divertimento II:sta KV 229 osat Allegro, Menuetto, Larghetto ja Rondo.</p><p> <strong>15.00 Nina Camilla</strong> </p><p>When Nina Camilla was 9, she wrote her first song about a tiny teddy bear she had crafted at school. After a 40 year creative break, suddenly, during an intense period of darkness and despair, words and melodies started, again, to take shape in her head. She learned the ukulele to be able to make the songs come alive. In a couple of years she’s written another 25 songs and performed them at open stages and other events mainly in Helsinki and her home town Espoo. She says composing and singing have been crucial for her recovery. </p><p>During the long break she was, however, musically active with classical solo singing and several choirs, which she today sees as an advantage. Her wide vocal range reaches from a deep warmth to a high silverness. </p><p>Many of Nina’s songs are inspired by human interactions, heart-ache and recovery. The audience’s overwhelming feedback, especially when they often tell her that they can recognize themselves in her stories, has motivated her immensely. </p><p> <strong>15.20 Sara Aurelia</strong> </p><p>Sara Aurelia laulaa ja soittaa kitaraa. Hänen genrensä on singer/songwriter </p><p> <strong>15.40 Talvikki </strong> </p><p>Talvikki laulaa ja soittaa pianoa. Hänen genrensä on singer/songwriter </p><p> <strong>16.00 Folkinukke </strong> </p><p>Folkinukke esittää covereita ja alkuperäisiä kappaleita kahdella kitaralla ja laululla. </p><p> <strong>16.20 Areyar </strong> </p><p>The band consists of three female teenagers with passion for music. On top of studies they are also involved in music to keep their creativity intact. Archisha the keyboardist; Stefaniia the drummer and Nazaneen the Bassist. </p><p> <strong>16.40 OranskiMania </strong> </p><p>Olemme kansainvälinen monikulttuurinen bändi, nimeltään OranskiMania. Meidän tyylimme on Pop-Rock fusion ja Klassik-instrumental. Laulujen kielinä ovat englanti ja ranska, Sellon musafestareilla soitamme ensimmäistä kertaa kappaleita uudelta albumiltamme. </p><p> <strong>17.00 Nordindians </strong> </p><p>1 Upbeat folk song in Punjabi (Language of South Asia, particular to India and Pakistan) </p><p>1 Upbeat folk song in Italian language </p><p>1 Stanza of Finnish Schlager called 'Olen Suomalainen by Kari Tapio </p><p>2 Bollywood songs </p><p>#festivaali #festari #festarit #musiikki #esitys</p>", "en": "<h2> <strong>Music festival in Sello library II 4.11.2023 at 1:00 p.m</strong> </h2></p><p>The performers of Sello library's music festivals are now published! During the day, we get to hear a lot of musical performances of different styles. Take a friend with you and come enjoy the music and the party atmosphere at Sello's library from 1:00 p.m.! More detailed information about the performers will be added to the program. </p><p> <strong>13.00 Vladi </strong> </p><p>Hänen nimensä on Vladi. Hän on aloittava suomalainen muusikko. Vladi esittää pop-musiikkia suomen kielellä ja hän myös itse säveltää omia kappaleita. </p><p> <strong>13.20 Sekulele</strong> </p><p>Sellon kirjaston ukuleleryhmä soittaa viikoittain yhdessä. Soittajat ovat erittäin eteviä ja innokkaita muusikoita, jotka tarttuvat innolla uusiin sovituksiin ja haasteisiin. Konsertissa kuulemme laajasti erilaisia soittotekniikoita ja erityylisiä musiikkikappaleita. </p><p> <strong>13.40 Hanna Haapanen </strong> </p><p>Hanna Haapanen on helsinkiläinen laulaja-lauluntekijä ja omakustanneartisti, joka säveltää ja sanoittaa folk-henkisiä, runollisia kappaleitaan ensisijaisesti itselleen rohkaisuksi ja lohdutukseksi. Hän haluaa jakaa musiikista saamaansa toivoa muillekin, sillä yhden laulunsa sanoin “en ole yksin kun laulan”. Toukokuussa 2023 Hanna julkaisi toisen studioalbuminsa Hiljaa hyvä tulee, joka käsittelee odotuksen, kaipuun, yksinäisyyden ja toipumisen teemoja syvällisesti ja rehellisesti, mutta valoisalla pohjavireellä. Kaunista maisemointia levyn kitaravetoisiin kappaleisiin luovat tuottaja Viktori Pesosen (SpiritEagle) upeat sovitukset sekä vierailevat soittajat. Live-esiintyjänä Hanna on energinen, herkkä ja persoonallinen tulkitsija. </p><p> <strong>14.00 Sabrina Donovan </strong> </p><p>Stephen ja Sabrina Donovan muuttivat Suomeen Ukrainasta sodan takia. Suomeen saapuessaan he molemmat osallistuivat piano-ohjelmiin sekä Helsingin konservatoriossa että Sibelius-Akatemiassa. </p><p>Turkish March, by Mozart <br> Nottorno by Grieg <br> D. Scarlatti: Sonata in B minor K. 27 L. 449 </p><p> <strong>14.20 Stephen Donovan </strong> </p><p>Stephen ja Sabrina Donovan muuttivat Finandiin Ukrainasta sodan takia. Suomeen saapuessaan he molemmat osallistuivat piano-ohjelmiin sekä Helsingin konservatoriossa että Sibelius-Akatemiassa. </p><p>MacDowell: Shadow Dance, Op. 39 No. 8 <br> J.B.Vanhal, Sonata d moll op.30 <br> Selim Palmgren ~ Snowflakes Op. 57 </p><p> <strong>14.40 Nokkahuilutrio</strong> </p><p>Nokkahuilutrio muodostuu kolmesta nokkahuiluyhtye Flauto Dolcen jäsenestä, jotka soittavat W.A. Mozartin Divertimento II:sta KV 229 osat Allegro, Menuetto, Larghetto ja Rondo. </p><p> <strong>15.00 Nina Camilla</strong> </p><p>When Nina Camilla was 9, she wrote her first song about a tiny teddy bear she had crafted at school. After a 40 year creative break, suddenly, during an intense period of darkness and despair, words and melodies started, again, to take shape in her head. She learned the ukulele to be able to make the songs come alive. In a couple of years she’s written another 25 songs and performed them at open stages and other events mainly in Helsinki and her home town Espoo. She says composing and singing have been crucial for her recovery. </p><p>During the long break she was, however, musically active with classical solo singing and several choirs, which she today sees as an advantage. Her wide vocal range reaches from a deep warmth to a high silverness. </p><p>Many of Nina’s songs are inspired by human interactions, heart-ache and recovery. The audience’s overwhelming feedback, especially when they often tell her that they can recognize themselves in her stories, has motivated her immensely. </p><p> <strong>15.20 Sara Aurelia</strong> </p><p>Sara Aurelia laulaa ja soittaa kitaraa. Hänen genrensä on singer/songwriter </p><p> <strong>15.40 Talvikki </strong> </p><p>Talvikki laulaa ja soittaa pianoa. Hänen genrensä on singer/songwriter </p><p> <strong>16.00 Folkinukke </strong> </p><p>Folkinukke esittää covereita ja alkuperäisiä kappaleita kahdella kitaralla ja laululla. </p><p> <strong>16.20 Areyar </strong> </p><p>The band consists of three female teenagers with passion for music. On top of studies they are also involved in music to keep their creativity intact. Archisha the keyboardist; Stefaniia the drummer and Nazaneen the Bassist. </p><p> <strong>16.40 OranskiMania </strong> </p><p>Olemme kansainvälinen monikulttuurinen bändi, nimeltään OranskiMania. Meidän tyylimme on Pop-Rock fusion ja Klassik-instrumental. Laulujen kielinä ovat englanti ja ranska, Sellon musafestareilla soitamme ensimmäistä kertaa kappaleita uudelta albumiltamme. </p><p> <strong>17.00 Nordindians </strong> </p><p>1 Upbeat folk song in Punjabi (Language of South Asia, particular to India and Pakistan) </p><p>1 Upbeat folk song in Italian language </p><p>1 Stanza of Finnish Schlager called 'Olen Suomalainen by Kari Tapio </p><p>2 Bollywood songs </p><p>#festivaali #festari #festarit #musiikki #esitys #festival</p>" }, "name": { "fi": "Sellon kirjaston musafestarit", "en": "Music festival in Sello library" }, "short_description": { "fi": "Sellon kirjastossa järjestetään Musafestarit lauantaina 4.11 kello 13. Festareiden ohjelma on nyt julkaistu! Musafestareilla esiintyjinä toimivat kirjaston asiakkaat.", "en": "In Sello library is Music Festival Saturday 20th of May. The performers of Sello library's music festivals are now published! If you do music, play any instrument, or have a band you have an opportunity to perform in this Music festival." }, "location_extra_info": { "fi": "Lava", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257488/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264418", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8350/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10823/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2877, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:43.926752Z", "last_modified_time": "2024-02-06T13:38:16.043427Z", "name": "", "url": "https://www.helmet.fi/download/noname/{2C5F0D5F-B82D-43E0-920A-4411F574D8EA}/104651", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2877/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:43:13.312386Z", "last_modified_time": "2023-11-05T10:21:45.344119Z", "date_published": "2023-08-01T06:37:00Z", "start_time": "2023-10-05T11:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan novelleja! Voit tuoda mukaan oman neuletyösi tai neuloa hyväntekeväisyyskohteeseen lahjalangoista. Nautitaan yhdessä käsitöistä ja ääneen luetuista tarinoista kahvi- tai teekupposen äärellä. Voit myös vain istua kuuntelemaan.</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p>Kokoonnumme Maunulan kirjaston Akvaario-tilassa:</p><p>to 7.9. klo 14-15.30</p><p>to 5.10. klo 14-15.30</p><p>to 2.11. klo 14-15.30</p><p>to 30.11. klo 14-15.30</p><p>Langat lahjoittaa: Lankamaailma, Snurre, yksityislahjoitukset</p>" }, "name": { "fi": "Novellikoukku" }, "short_description": { "fi": "Novellikoukussa sukelletaan tarinoiden maailmaan sekä neulotaan yhdessä!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264418/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269023", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4965, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-02T08:36:50.828723Z", "last_modified_time": "2023-10-02T08:36:50.828774Z", "name": "", "url": "https://www.helmet.fi/download/noname/{219A3DC9-892F-45C2-84B1-FFE4DD54333E}/106324", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4965/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-02T08:39:40.049575Z", "last_modified_time": "2023-11-05T10:21:45.274564Z", "date_published": "2023-10-02T07:06:00Z", "start_time": "2023-10-05T06:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Lumon kirjasto tarjoaa tietotekniikan perusopastusta omalla, tai kirjastosta lainattavalla laitteella. Opastukseen voit varata ajan esimerkiksi soittamalla kirjaston asiakaspalveluun tai kysymällä heti vapaata aikaa henkilökunnalta. Opastuksen kesto on 45 minuuttia ja se on maksutonta.</p><p>Opastusta on saatavilla 2.10.-24.11.2023 ma-pe klo 9-15.</p><p>Asiasana: digituki</p><p> <em>Kuva: Aryan Dhiman / Unsplash</em> </p>" }, "name": { "fi": "Tietotekniikkaopastusta" }, "short_description": { "fi": "Lumon kirjasto tarjoaa tietotekniikan perusopastusta omalla, tai kirjastosta lainattavalla laitteella." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269023/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268613", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8289/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4857, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-20T17:11:45.443899Z", "last_modified_time": "2024-02-06T13:38:15.528686Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E298176E-0BAB-4A67-93E4-19A3C4C17E87}/92784", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4857/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-09-20T17:20:50.248689Z", "last_modified_time": "2023-11-05T10:21:45.199168Z", "date_published": "2023-09-20T15:15:00Z", "start_time": "2023-10-05T11:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Puistolan kirjastossa järjestetään iltapäivätoimintaa alakoululaisille tiistaisin ja torstaisin 24.8.-22.12.</p><p> <strong>Ti klo 15-17</strong> <br> PlayStation pelaamista 3.-luokkalaisille ja sitä vanhemmille alakoululaisille.</p><p> <strong>To klo 14-15</strong> <br> Puuhatorstai: vaihtuvaa ohjelmaa, kuten askartelua, ääneenlukua ja yllätyksiä!</p><p> <em>Kuva: Vic_B / Pixabay</em> </p>" }, "name": { "fi": "Iltapäivätoimintaa alakoululaisille" }, "short_description": { "fi": "Askartelua, ääneenlukua, sanataidetuokioita tai muuta mukavaa alakoululaisille." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268613/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267878", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19217/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2875, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:38.649475Z", "last_modified_time": "2024-02-06T13:38:55.355848Z", "name": "", "url": "https://www.helmet.fi/download/noname/{07AFD38C-53DD-4041-99D7-FFFACE5FFFB3}/61453", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2875/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-09-07T15:29:38.541488Z", "last_modified_time": "2023-11-05T10:21:45.126444Z", "date_published": "2023-04-19T07:44:00Z", "start_time": "2023-10-05T10:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Enter ry syyskauden opastukset ovat tänä vuonna 7.9.-14.12.2023 välisenä aikana.</p><p>Tule kysymään tietotekniikasta! Enter ry:n vapaaehtoiset vertaisopastajat tarjoavat senioreille maksutonta apua tietokoneiden, tablettien ja kännyköiden käytössä. Opastus on maksutonta.</p><p>Kaikille avoimet iltapäivien opastustuokiot pidetään Martinlaakson kirjastossa kahdesti kuussa torstaisin klo 13:00-15:00,<strong> ilman ajanvarausta.</strong></p><p>Syksyn opastuspäivät: 7.9., 21.9., 5.10., 19.10., 2.11., 16.11., 30.11. ja 14.12.2023</p><p>Mukaan voit ottaa oman laitteesi tai kokeilla kirjaston laitteita.</p><p>Lue lisää Enter ry:n toiminnasta: <a href=\"https://www.entersenior.fi/\">Entersenior.fi</a></p><p>Kuva: Enter ry</p><p>Asiasana: Digituki</p>" }, "name": { "fi": "Enter ry opastaa: kysy tietotekniikasta" }, "short_description": { "fi": "Tule kysymään tietokoneista, tableteista ja kännyköistä! Opastajina toimivat Enter ry:n vapaaehtoiset. Mukaan voit ottaa oman laitteesi tai kokeilla kirjaston laitteita." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267878/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267479", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3814, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-31T13:27:25.857831Z", "last_modified_time": "2024-02-06T13:38:44.963342Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DE6FFA2F-400F-40CD-AD4D-8AAAED8EF68F}/105435", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-31T13:33:05.986859Z", "last_modified_time": "2023-11-05T10:21:45.048310Z", "date_published": "2023-08-31T11:20:00Z", "start_time": "2023-10-05T11:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa läksykerhoon Entressen kirjastoon!</p><p>Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-15 Entressen kirjastossa Espoon keskuksessa. Tarkempi paikka on vaihdellen Sininen huone tai Aistihuone.</p><p>Läksykerhossa on ohjaaja, joka auttaa lapsia läksyjen teossa sekä tukee suomen kielen vahvistumista. Suomen kieltä vahvistetaan muun muassa keskustelemalla ja yhdessä lukemalla. Lisäksi läksykerhossa on muuta toimintaa kuten liikkumista, leikkiä ja askartelua. Kerhon aikana on tarjolla välipalaa.</p><p>Lisätietoja läksykerhosta saat laittamalla sähköpostia <a href=\"mailto:toimisto@iftinseura.fi\">toimisto@iftinseura.fi</a> tai soittamalla 044 240 7526.</p><p>tiistaisin Sinisessä huoneessa klo 14 - 15</p><p>12.9., 26.9., 3.10., 10.10., 31.10., 14.11., 21.11., 5.12., 12.12.</p><p>tiistaisin Aistihuoneessa klo 14 - 15</p><p>5.9., 19.9., 24.10., 7.11.</p><p>torstaisin Sinisessä huoneessa klo 14 - 15</p><p>7.9., 14.9., 28.9., 5.10., 12.10., 2.11., 9.11., 23.11., 7.12., 14.12.</p><p>HUOM. 21.9. klo 15 - 16</p><p>torstaisin Aistihuoneessa klo 14 - 15,</p><p>26.10., 16.11.</p><p>HUOM. 30.11. klo 15 - 16</p><p>SYYSLOMAN AIKANA 16. - 20.10. EI OLE LÄKSYKERHOA</p><p>Läksykerhotoiminnasta vastaa Iftin-seura ry, <a href=\"http://www.iftinseura.fi\">www.iftinseura.fi</a></p><p>Lisätietoa seuran muusta toiminnasta saat Facebookista: Iftin-seura ry ja Instagramista: iftinseurary</p>" }, "name": { "fi": "Läksykerho PERUTTU 2.11." }, "short_description": { "fi": "Tervetuloa läksykerhoon Entressen kirjastoon! Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-16 Entressen kirjastossa Espoon keskuksessa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267226", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3765, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T07:43:09.396973Z", "last_modified_time": "2024-02-06T13:38:59.000462Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D17A2FA8-C267-450D-840E-A251F89A05C7}/105331", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3765/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-30T07:47:41.604358Z", "last_modified_time": "2023-11-05T10:21:44.957265Z", "date_published": "2023-08-30T06:30:47.493000Z", "start_time": "2023-10-05T10:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Alakoululaisten kerhossa askarrellaan, piirretään ja touhutaan kaikenlaista kivaa yhdessä. Ei ennakkoilmoittautumista.</p><p>Torstaisin klo 13-15 Rikhardinkadun kirjaston lastenosastolla.</p><p>Tervetuloa mukaan!</p><p>Kuva: Jorge Franganillo / Unsplash</p>" }, "name": { "fi": "Torstaikerho" }, "short_description": { "fi": "Askartelua, pelailua ja muuta kivaa alakoululaisille!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267157", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10791/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3756, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-29T13:24:05.273879Z", "last_modified_time": "2024-02-06T13:38:15.962161Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D47992D0-9520-43C6-A7B6-A9F814E46EB2}/105320", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3756/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-29T13:33:29.098001Z", "last_modified_time": "2023-11-05T10:21:44.884061Z", "date_published": "2023-08-29T12:10:00Z", "start_time": "2023-10-05T11:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Koululaisten askartelukerho kokoontuu Itäkeskuksen kirjaston lastenosastolla torstaisin kello 14-15. </p><p>Tervetuloa mukaan iloiseen askarteluhetkeen!</p><p>Sinun ei tarvitse ilmoittautua etukäteen.</p>", "sv": "<p>Skolbarnens pysselklubb ordnas i Östra centrums bibliotek, på barnavdelningen varje torsdag kl 14-15.</p><p>Välkommen med och pyssla i ett glatt gäng!</p><p>Ingen förhandsanmälan. Vi försöker tala med barnen på deras språk.</p>" }, "name": { "fi": "Koululaisten askartelukerho", "sv": "Skolbarnens pysselklubb" }, "short_description": { "fi": "Koululaisten askartelukerho kokoontuu Itäkeskuksen kirjaston lastenosastolla torstaisin kello 14-15.", "sv": "Skolbarnens pysselklubb ordnas i Östra centrums bibliotek, på barnavdelningen varje torsdag kl 14-15." }, "location_extra_info": { "fi": "Lastenosasto", "sv": "Lastenosasto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267157/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265426", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2779, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:47.118243Z", "last_modified_time": "2024-02-06T13:38:35.671638Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DE0FD9B-E3A3-42C8-9794-22B07F501D2A}/88205", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2779/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:43:12.394559Z", "last_modified_time": "2023-11-05T10:21:44.807569Z", "date_published": "2023-08-14T21:00:00Z", "start_time": "2023-10-05T12:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa Malmin kirjaston kielikahvilaan!</p><p>Kielikahvilassa keskustelemme suomeksi kiinnostavista aiheista. Osaathan jo jonkin verran suomea?</p><p>Kokoonnumme <strong>torstaisin klo 15-16</strong>. Ensimmäinen tapaaminen on 31.8.</p>" }, "name": { "fi": "Kielikahvila" }, "short_description": { "fi": "Malmin kirjaston kielikahvila" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265426/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265356", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:14432/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10692/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12023/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2876, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:42.562839Z", "last_modified_time": "2023-08-15T15:33:42.562860Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F61AA6B7-8675-4791-8AAF-57441B6477AB}/104897", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2876/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-08-15T15:43:10.594583Z", "last_modified_time": "2023-11-05T10:21:44.732718Z", "date_published": "2023-08-14T12:51:07.843000Z", "start_time": "2023-10-05T10:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Enter ry ja Kauniaisten vapaaehtoiset seniorit antavat henkilökohtaista vertaisopastusta tietotekniikka-asioissa. Vastaanotto kirjastossa joka toinen torstai klo 13 – 15 ilman ajanvarausta. Ota mukaan omat laitteesi sekä tarvittavat tunnukset ja salasanat.</p><p> <strong>To klo 13-15: 7.9, 21.9, 5.10, 19.10, 2.11, 16.11, 30.11, 14.12.</strong> </p>", "sv": "<p>Enter rf och Grankullas frivilliga seniorer ger personlig vägledning i teknikfrågor seniorer emellan. Mottagning i biblioteket varannan torsdag kl. 13 – 15 utan tidsbokning. Ta med din egen apparat samt de användarnamn och lösenord som behövs.</p><p> <strong>Tors kl. 13-15: 7.9, 21.9, 5.10, 19.10, 2.11, 16.11, 30.11, 14.12</strong> </p>" }, "name": { "fi": "Tietotekniikkaopastusta senioreille", "sv": "Digital handledning för seniorer" }, "short_description": { "fi": "Enter ry ja Kauniaisten vapaaehtoiset seniorit antavat henkilökohtaista vertaisopastusta tietotekniikka-asioissa.", "sv": "Enter rf och Grankullas frivilliga seniorer ger personlig vägledning i teknikfrågor seniorer emellan." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265356/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265240", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2669, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:29:09.670714Z", "last_modified_time": "2023-08-15T15:29:09.670737Z", "name": "", "url": "https://www.helmet.fi/download/noname/{563F67B7-9AD2-439D-A24B-B3B310BF2234}/104889", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2669/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-15T15:43:09.988148Z", "last_modified_time": "2023-11-05T10:21:44.656674Z", "date_published": "2023-08-09T12:34:00Z", "start_time": "2023-10-05T11:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Hei alakoululainen!</p><p>Tule kuuntelemaan ääneen luettuja kirjoja torstai-iltapäivisin Hakunilan kirjastoon. Samalla voit piirtää, värittää tai vain rauhoittua kuuntelemaan.</p><p>HUOM! Reetan lukutuokio on peruttu torstaina 7.9.</p><p>Asiasana: Lastenkulttuuri</p>" }, "name": { "fi": "PERUTTU Reetan lukutuokio" }, "short_description": { "fi": "Tule kuuntelemaan, kun Reeta lukee sinulle ääneen!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265240/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264494", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2668, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:29:08.423190Z", "last_modified_time": "2024-02-06T13:38:15.440752Z", "name": "", "url": "https://www.helmet.fi/download/noname/{76949F81-9C2D-45B8-8882-2668431FD1DC}/84518", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2668/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:43:09.642991Z", "last_modified_time": "2023-11-05T10:21:44.563570Z", "date_published": "2022-11-08T09:02:00Z", "start_time": "2023-10-05T10:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "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.<br><br> Kaikki ovat tervetulleita rapsuttamaan!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin 17.8.-21.12. klo 13-15.</p><p>Tervetuloa!</p>" }, "name": { "fi": "Lukukoirat Nekku ja Pätkis tavattavissa" }, "short_description": { "fi": "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 minulle, sillä lukukoira ei koskaan hauku lukijaa. Kaikki ovat tervetulleita rapsuttamaan!" }, "location_extra_info": { "fi": "Lastenosasto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264494/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263924", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?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:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2718, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:19.659893Z", "last_modified_time": "2023-08-15T15:30:19.659922Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9AE87F5F-031C-4E59-ABBF-EA92E0610632}/95073", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2718/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T15:43:09.288238Z", "last_modified_time": "2023-11-05T10:21:44.485827Z", "date_published": "2023-07-18T14:09:00Z", "start_time": "2023-10-05T10:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Suomen Pakolaisavun Kurvi-toiminto tarjoaa apua Suomeen muuttaneille ihmisille. Voit pyytää apua maahanmuuton eri vaiheista sekä maahanmuuton eri kysymyksissä esimerkiksi oleskeluluvat, perheenyhdistäminen, passit ja kansalaisuuden hakeminen. Voit myös pyytää apua Suomessa oleville perheenjäsenellesi tai ystävällesi.</p><p>Itäkeskuksen kirjastossa torstaisin 24.8.-21.12.2023 klo 13-15.</p><p> <strong>HUOM! Torstaina 12.10. Kurvin neuvonta peruttu!</strong> </p><p> <a href=\"https://pakolaisapu.fi/kurvi/\">Lisätietoa toiminnasta</a>.</p>", "en": "<p>The Finnish Refugee Council's Kurvi-counselling offers information and help for people who have moved to Finland from abroad. You can contact us in questions of the different states of migration and about the process of your documents and statues for example residence permits, family reunite-process, passports and nationality applications. You can also ask help from us for a friend or a relative.</p><p>At Itäkeskus library every Thursday from 24.8. to 21.12. 13-15 PM.</p><p> <a href=\"https://pakolaisapu.fi/kurvi/#\">More information</a>.</p>" }, "name": { "fi": "Neuvontaa maahanmuuton kysymyksissä", "en": "Neuvontaa maahanmuuton kysymyksissä" }, "short_description": { "fi": "Suomen Pakolaisavun Kurvi-toiminto auttaa maahanmuuton kysymyksissä.", "en": "The Finnish Refugee Council's Kurvi-counselling offers information in questions of immigration." }, "location_extra_info": { "fi": "Ryhmätyötila Sini", "en": "Sini (group work room)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263924/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261431", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10817/?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:p14004/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2571, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:47.976502Z", "last_modified_time": "2024-02-06T13:38:15.872690Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F6E74590-90F6-47D2-B2EB-780DFACA2224}/98905", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2571/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-08-15T15:43:07.496575Z", "last_modified_time": "2023-11-05T10:21:44.413551Z", "date_published": "2023-06-14T11:57:00Z", "start_time": "2023-10-05T10:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Naapuruuspiiri senioreille kokoontuu torstaisin klo 13–15 Lauttasaaren kirjaston monitoimitilassa.</p><p>Tervetuloa viihtymään ja tapaamaan naapureitasi kahvikupposen äärelle.</p><p>Tapahtuman järjestää Kampin palvelukeskus.</p>" }, "name": { "fi": "Naapuruuspiiri" }, "short_description": { "fi": "Tule mukaan Naapuruuspiiriin!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261431/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261401", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8177/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10656/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11683/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2934, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:35:42.908601Z", "last_modified_time": "2023-08-15T15:35:42.908621Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1D52913D-F5F4-473D-9B7A-3DD46E9BAABB}/104915", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2934/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:43:06.202247Z", "last_modified_time": "2023-11-05T10:21:44.338905Z", "date_published": "2023-06-14T10:36:00Z", "start_time": "2023-10-05T11:00:00Z", "end_time": "2023-10-05T12: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Senioreille maksutonta henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä.</p><p>Ota mukaan oma laite, tarvittavat tunnukset ja salasanat!</p><p> <strong>Ilman ajanvarausta!</strong> </p><p>Opastajina toimivat ENTER ry:n vapaaehtoiset vertaisopastajat.</p><p> <a href=\"http://www.entersenior.fi/\"> ENTER ry </a>on Uudellamaalla toimiva senioreiden yhdistys, joka tarjoaa henkilökohtaista ja maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä. </p><p>Vapaa pääsy, tervetuloa!</p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Oulunkylan_kirjasto\">Oulunkylän kirjasto</a> </p>", "sv": "<p>Enter rf:s kamrathandledare erbjuder gratis och personligt IT-handledning till seniorer med dator- eller telefonrelaterade problem.</p><p>Ta med din egen apparat och nödvändiga lösenord!</p><p>Utan tidsbeställning. Välkommen!</p>" }, "name": { "fi": "Tietotekniikkaopastusta senioreille", "sv": "IT-handledning för seniorer" }, "short_description": { "fi": "Enterin opastajat neuvovat tietokoneiden, tablettien ja älypuhelimien käytössä.", "sv": "Enter rf:s kamrathandledare erbjuder gratis och personligt IT-handledning till seniorer med dator- eller telefonrelaterade problem." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261401/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267038", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3758, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-29T13:25:04.481649Z", "last_modified_time": "2024-02-06T13:38:07.445062Z", "name": "", "url": "https://www.helmet.fi/download/noname/{73647AB1-388E-4568-B1C4-0860820A62CE}/105307", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3758/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-08-29T12:30:40.717026Z", "last_modified_time": "2023-11-05T10:21:44.261849Z", "date_published": "2023-08-29T11:18:00Z", "start_time": "2023-10-05T08:00:00Z", "end_time": "2023-10-05T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tarvitsetko apua tietokoneen, tabletin tai älypuhelimen käytössä?</p><p>ENTER ry:n vapaaehtoiset seniorit antavat henkilökohtaista ja maksutonta vertaisopastusta. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat!</p><p>5.9.–14.12.2023<br> Tiistaisin ja torstaisin klo 11–14<br> Ilman ajanvarausta!<br><br><a href=\"https://www.entersenior.fi/\">https://www.entersenior.fi/</a></p>", "sv": "<p>IT-handledning för seniorer varje tisdag och torsdag kl. 11–14.</p><p>Avgiftsfri handledning kring smarttelefoner, tabletter och datorer. Ta med din egen apparat samt användarnamn och lösenord. Som kamrathandledare ENTER ry:s frivilliga.</p><p> <br> <a href=\"https://www.entersenior.fi/\">Enter ry:s websidor.</a> </p>", "en": "<p>Free digital guidance for seniors every tuesday and thursday from 11 AM to 2 PM.<br> <br> Volunteers from Enter ry help with problems related to the use of computers, mobile phones and tablets. Bring your own device and required passwords with you!</p><p>Please note that we can't guarantee that all volunteers speak fluent English. For more information: <a href=\"https://www.entersenior.fi/\">www.entersenior.fi</a></p>" }, "name": { "fi": "Tietotekniikkaopastusta senioreille", "sv": "Digital handledning", "en": "Digital guidance for seniors" }, "short_description": { "fi": "ENTER ry:n vapaaehtoiset seniorit antavat henkilökohtaista ja maksutonta vertaisopastusta. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat!", "sv": "Avgiftsfri handledning kring smarttelefoner, tabletter och datorer. Ta med din egen apparat samt användarnamn och lösenord. Som kamrathandledare ENTER ry:s frivilliga.", "en": "Volunteers from Enter ry help with problems related to the use of computers, mobile phones and tablets. Bring your own device and required passwords with you!" }, "location_extra_info": { "fi": "Oppimistila 3", "sv": "Rum för lärande 3", "en": "Room for Learning 3" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267038/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261369", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8205/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2873, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:37.941020Z", "last_modified_time": "2024-02-06T13:38:15.350065Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B4FB972D-F0EA-4697-9C7F-FA1BA590B4F8}/58490", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2873/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-08-15T15:43:05.514302Z", "last_modified_time": "2023-11-05T10:21:44.177965Z", "date_published": "2022-04-08T11:47:00Z", "start_time": "2023-10-05T09:00:00Z", "end_time": "2023-10-05T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Enter ry:n vapaaehtoinen opastaa torstaisin klo 12-14 syyslukukaudella aikavälillä 7.9.– 14.12.2023 kirjastossa. (1h / opastettava)</p><p>Opastus on tarkoitettu eläkkeelle siirtyneille tai siirtymässä oleville henkilöille, joita tietotekniikka askarruttaa tai kiinnostaa. Opastusta varten voi tuoda oman kannettavan tietokoneen, älypuhelimen tai tabletin tai käyttää kirjaston asiakastietokonetta.</p><p>Opastus on maksutonta. Opastukset ovat suosittuja, joten varaathan opastusaikasi hyvissä ajoin. <strong>Ilmoittaudu opastukseen etukäteen joko Pohjois-Haagan kirjastossa tai puhelimitse: p. (09) 310 85040.</strong></p><p>Enter ry on tieto- ja viestintätekniikasta sekä vapaaehtoistoiminnasta kiinnostuneiden eläkeläisten yhdistys. Yhdistyksen kotisivu: <a href=\"http://www.entersenior.fi/\">http://www.entersenior.fi/</a></p>" }, "name": { "fi": "Tietotekniikkaopastusta senioreille" }, "short_description": { "fi": "Enter ry:n vapaaehtoinen opastaa torstaisin klo 12-14 (1h / opastettava) Pohjois-Haagan kirjastossa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261369/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:259761", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18620/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11202/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11313/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11333/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11339/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11996/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2777, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:43.160784Z", "last_modified_time": "2024-02-06T13:38:34.714447Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F61BBFF3-B4F2-4658-A9C3-0E18B3712F58}/82013", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2777/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:43:04.691389Z", "last_modified_time": "2023-11-05T10:21:44.070389Z", "date_published": "2023-01-19T18:00:00Z", "start_time": "2023-10-05T10:00:00Z", "end_time": "2023-10-05T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Haluatko oppia suomea, osallistua vapaaseen keskusteluun ja tutustua uusiin ihmisiin? Tervetuloa kirjaston etätapahtumaan, johon voit osallistua Zoom -palvelun kautta. Osallistuaksesi tarvitset tietokoneen, älypuhelimen tai tabletin. Etätapahtuma järjestetään joka torstai klo 13:00 – 14:00.</p> <p>Pääset liittymään tapahtumaan tästä linkistä:</p> <p> <a href=\"https://us02web.zoom.us/j/82852743034?pwd=ZGZkN3ZkTjRQcDdqUTdJdyt1MlFsZz09\">https://us02web.zoom.us/j/82852743034?pwd=ZGZkN3ZkTjRQcDdqUTdJdyt1MlFsZz09</a> </p> <p>HUOM! Tarvitset salasanan, jotta voit osallistua kielikahvilaan.</p> <p>Saadaksesi salasanan lähetä sähköposti osoitteeseen <a href=\"mailto:saara.zamiatin@vantaa.fi?subject=Puhutaan%20suomea%20kielikahvila&body=Hei%2C%0Ahaluaisin%20salasanan%20Puhutaan%20suomea%20-kielikahvilaan.%0A%0ATerveisin%2C%0A\">saara.zamiatin(a)vantaa.fi</a> tai <a href=\"mailto:lia.gasbarra@vantaa.fi?subject=Puhutaan%20suomea%20kielikahvila&body=Hei%2C%0Ahaluaisin%20salasanan%20Puhutaan%20suomea%20-kielikahvilaan.%0A%0ATerveisin%2C%0A\">lia.gasbarra(a)vantaa.fi</a> tai <a href=\"mailto:iina-ruusa.pyykkonen@luetaanyhdessa.fi?subject=Puhutaan%20suomea%20kielikahvila&body=Hei%2C%0Ahaluaisin%20salasanan%20Puhutaan%20suomea%20-kielikahvilaan.%0A%0ATerveisin%2C%0A\">iina-ruusa.pyykkonen(a)luetaanyhdessa.fi</a></p> <p>Ryhmä alkaa 31.8.2023.</p> <p>Tuntia ei pidetä 19.10.2023.</p> <p>Joululoma alkaa 14.12.2023.</p> <p>----------------------------------------------------------------------------------------------</p> <p>Tapahtuma Facebookissa: <a href=\"https://www.facebook.com/events/1374312456464189/1374313906464044/?ref=newsfeed\">Puhutaan suomea</a></p> <p>Lue lisää kielikahvilasta täältä: <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Hakunilan_kirjasto/Juttuja_kirjastosta/Kirjaston_suomen_kielen_etaryhmat_kokoon(267253)\">Kirjaston suomen kielen ryhmät kokoontuvat kerran viikossa</a>.</p>", "en": "<p>Would you like to learn Finnish and meet new people? Welcome to the library’s online meeting, The meeting is organized in the Zoom-service. To join you need a computer with a microphone and a webcam or a smart phone or a tablet. </p><p>The meeting is held Thursday from 1pm to 2pm (13-14).</p><p>You can join the meeting from this link: </p><p> <a href=\"https://us02web.zoom.us/j/82852743034?pwd=ZGZkN3ZkTjRQcDdqUTdJdyt1MlFsZz09\">https://us02web.zoom.us/j/82852743034?pwd=ZGZkN3ZkTjRQcDdqUTdJdyt1MlFsZz09</a> </p><p>NOTE! You need a password to join meeting.To get the password send an email to <a href=\"mailto:saara.zamiatin@vantaa.fi\">saara.zamiatin(a)vantaa.fi</a> or <a href=\"http://lia.gasbarra@vantaa.fi\">lia.gasbarra(a)vantaa.fi</a></p><p>Organised by Vantaa city library and Let´s read together -network.</p><p>Welcome! </p>", "ru": "<p>Хотите учить финский язык, участвовать в свободном общении и знакомиться с новыми людьми? Добро пожаловать на онлайн-встречи в библиотеку! Для участия Вам понадобится компьютер, смартфон или планшет. </p><p>Удалённые беседы проходят по четвергам с 13:00 до 14:00.</p><p>Подключиться к разговору можно, скачав приложение Zoom и перейдя по ссылке: </p><p> <a href=\"https://us02web.zoom.us/j/82852743034?pwd=ZGZkN3ZkTjRQcDdqUTdJdyt1MlFsZz09\">https://us02web.zoom.us/j/82852743034?pwd=ZGZkN3ZkTjRQcDdqUTdJdyt1MlFsZz09</a> </p><p>Внимание! У Вас должен быть пароль для участия в наших онлайн-встречах. Пароль можно запросить, написав по электронному адресу </p><p> <a href=\"mailto:saara.zamiatin@vantaa.fi\">saara.zamiatin(a)vantaa.fi</a> или <a href=\"http://lia.gasbarra@vantaa.fi\">lia.gasbarra(a)vantaa.fi</a></p><p>Присоединяйтесь! </p>" }, "name": { "fi": "Etätapahtuma: puhutaan suomea kielikahvila - let's talk in Finnish.", "en": "Let’s talk in Finnish – language cafè on the Internet!", "ru": "Удалённо: \"Говорим по-фински онлайн\" кафе!" }, "short_description": { "fi": "Haluatko oppia suomea, osallistua vapaaseen keskusteluun ja tutustua uusiin ihmisiin? Tule mukaan etäkielikahvilaan.", "en": "Would you like to learn Finnish and meet new people? Welcome to the library’s online meeting,", "ru": "Хотите изучать учить финский язык, участвовать в свободном общении и знакомиться с новыми людьми? Добро пожаловать на онлайн-встречи в библиотеку!" }, "location_extra_info": { "fi": "Zoom", "ru": "Zoom" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:259761/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261764", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12023/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-08-15T15:43:02.689908Z", "last_modified_time": "2023-11-05T09:21:39.801751Z", "date_published": "2022-05-24T11:00:00Z", "start_time": "2023-10-05T08:00:00Z", "end_time": "2023-10-05T10: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<h2>Haluaisitko apua ja neuvoja tietokoneen, internetin tai sähköpostin peruskäyttöön?</h2><h3></h3><p>Enter ry:n maksutonta tietotekniikkaopastuksia on tarjolla Entressen kirjastossa ajanvarauksella <strong>torstaisin 7.9. - 14.12. 2023 </strong><b>kello 11 - 13 . Keväällä taas 11.1. - 16.5. samaan aikaan.</b></p><p>Opastus tapahtuu asiakkaan omalla kannettavalla tietokoneella, mobiililaitteella tai kirjaston asiakaskoneella. Opastuksissa käydään läpi tietokoneen käytön ja internetin palveluiden perusteita. Opastus kestää yhden tunnin. Opastusaika varataan etukäteen joko puhelimitse numerossa 09 8165 3776 tai paikan päällä kirjastossa. Asiakkaalla voi olla opastukseen vain yksi varaus kerrallaan.</p><p>Enter ry on tieto- ja viestintätekniikasta sekä vapaaehtoistoiminnasta kiinnostuneiden eläkeläisten yhdistys. Yhdistyksen kotisivu: <a href=\"https://www.entersenior.fi/\">Enter ry</a>.</p>" }, "name": { "fi": "Tietotekniikkaopastusta senioreille" }, "short_description": { "fi": "Enter ry:n tietotekniikkaopastus senioreille Entressen kirjastossa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261764/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268874", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10856/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4870, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-21T13:35:02.136561Z", "last_modified_time": "2024-02-06T13:38:14.542235Z", "name": "", "url": "https://www.helmet.fi/download/noname/{2FE0013A-F5B2-4A3A-92F2-C0A848AA2E10}/106083", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4870/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-09-26T16:14:45.302596Z", "last_modified_time": "2023-11-05T08:21:06.293268Z", "date_published": "2023-09-26T14:05:23.683000Z", "start_time": "2023-10-05T08:00:00Z", "end_time": "2023-10-05T09: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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Lähde ikäihmisten yhteiskävelylle torstaiaamuisin klo 11 Vuosaaren kirjastolta 7.9. - 7.12. 2023.</p><p>Tee kävelystä itsellesi rutiini. Tule kävelemään yhdessä vaikka joka torstai. Vapaaehtoiset ohjaajat ovat mukana mahdollisuuksien mukaan.</p><p>Kokoontuminen klo 11 ulkona Vuotalon pääovien luona. Kävely kirjaston lähialueella.</p><p>Laita jalkaan mukavat kävelykengät, pukeudu säänmukaisesti ja tule mukaan.</p><p>Tapahtuma on maksuton. Ei ennakkoilmoittautumista. </p><p>Olet lämpimästi tervetullut.</p><p>Kysy lisätiedot ja tarkemmat aikataulut kirjastoltasi, tai Liikuntaluurista, puh. 09 310 32623, ma–to klo 13–15 (pvm/mpm). <br> <br> Liikunnasta seuraa seuraa!</p><p> <br> </p>" }, "name": { "fi": "Kirjastokävelyt" }, "short_description": { "fi": "Tule kävelemään yhdessä. Vapaaehtoiset ohjaajat mukana mahdollisuuksien mukaan." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268874/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26179, "next": "