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&page=1325®istration__remaining_waiting_list_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1326®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1324®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "helmet:261250", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2560, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:35.687307Z", "last_modified_time": "2023-08-15T15:26:35.687329Z", "name": "", "url": "https://www.helmet.fi/download/noname/{97A1AF23-1E09-47F5-B682-AC3EC0634A29}/103102", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2560/?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:28:30.274134Z", "last_modified_time": "2023-09-14T13:29:42.587901Z", "date_published": "2023-06-12T09:10:00Z", "start_time": "2023-08-14T14:00:00Z", "end_time": "2023-08-14T15: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Tapahtumatila Heikki" }, "description": { "fi": "<h3>Kirjoittajapiiri kokoontuu kesällä kerran kuukaudessa maanantaisin 19.6., 17.7. ja 14.8. klo 17 – 18.30.</h3><p>Teemme yhdessä luovan kirjoittamisen harjoituksia kirjoitusblokin avaamiseksi ja tutustumme eri kirjallisuustyyleihin ja osallistujien omiin teksteihin. Harjoittelemme palautteen antamista ja saamista.</p><p>Kirjoittajapiiri jatkuu syksyllä viikoittain, nyt voit olla mukana vaikuttamassa syksyn kirjoittajapiirin teemoihin.</p><p>Tervetuloa!</p><p>Piiriä vetää Outi Tannijärvi.</p>" }, "short_description": { "fi": "Teemme yhdessä luovan kirjoittamisen harjoituksia kirjoitusblokin avaamiseksi ja tutustumme eri kirjallisuustyyleihin ja osallistujien omiin teksteihin. Harjoittelemme palautteen antamista ja saamista." }, "provider": null, "name": { "fi": "Kirjoittajapiiri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261250/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:250582", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?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:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2559, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:35.335014Z", "last_modified_time": "2024-02-06T13:38:05.098780Z", "name": "", "url": "https://www.helmet.fi/download/noname/{06C082E0-ACE7-4E8D-82D1-229C6B6195E1}/75040", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2559/?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:28:29.897495Z", "last_modified_time": "2023-09-14T13:29:42.128519Z", "date_published": "2022-12-27T22:00:00Z", "start_time": "2023-08-14T10:00:00Z", "end_time": "2023-08-14T15: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Musiikkiosaston soittohuone, 1. krs" }, "description": { "fi": "<p>Tule laulamaan karaokea mukavalla porukalla maanantaisin 13-18 ja torstaisin klo 13-17 välisenä aikana. Kaikki mukavat tyypit ovat tervetulleita ja kaikki laulamisen ystäväthän ovat mukavia. Ei ennakkoilmoittautumista.</p>" }, "short_description": { "fi": "Tervetuloa laulamaan karaokea kirjaston avoimeen karaokeryhmään!" }, "provider": null, "name": { "fi": "Avoin karaokeryhmä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:250582/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7lzi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21431/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/876227290607902", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2023-09-14T13:01:57.117705Z", "last_modified_time": "2023-09-14T13:01:57.117729Z", "date_published": null, "start_time": "2023-09-17T10:00:00Z", "end_time": "2023-09-17T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Lasten kulttuurikeskus Auroran Taidetalo juhlii tänä syksynä 20-vuotissyntymäpäiviään! “Taidetekoja 20 vuotta” -juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi Leppävaaraan, Soukkaan, Matinkylään ja Kalajärvelle. Tule tekemään taidetta kanssamme! </p><p>Syntyneet teokset pääsevät osaksi näyttelykokonaisuutta, joka avataan Lapsen oikeuksien viikolla ja huipentuu lauantaina 25.11. Suureen Taidejuhlaan Lasten kulttuurikeskus Aurorassa. <br> <br>Taide syntyy leikiten – paja pienille </p><p>Leikin maailmassa kaikki on mahdollista. Hauskuus kaksinkertaistuu, kun taidepajassa iloisen leikin jäljet tallentuvat yhteiseksi maalaukseksi. Kirmaa tutkimaan mielikuvituksen hehkun piirtymistä värikkäiksi taidejäljiksi! Taideohjaaja Jenni Vilander </p><p>Hetken ajatus -pilvet – paja isoille </p><p>Mikä juuri tässä hetkessä on mukavaa? Kutkuttaako ajatuksissa saapuvan syksyn uudet tuulet tai tapahtuiko tänään aamulla jotain yllättävää? Mistä ajatuksesta sinä haluat jättää jäljen? Taiteile se ajatuspilveen! TaidePiilon taideohjaajat, taidepiilo.fi</p><p>Menossa on mukana kirjaston tapahtuma-auto Välkky, josta voi myös lainata aineistoa! Välkyssä voi teettää kirjastokortin. <br> <br>Tapahtuma on maksuton <br>Järj. Lasten kulttuurikeskus Aurora yhteistyössä Espoon kirjaston kanssa. </p><p><br>Koko kiertue</p><p>La 16.9. klo 10-14 Leppävaaran urheiluaukio <br>Su 17.9. klo 13-16 Soukan asukaspuisto <br> <br>La 14.10. Klo 10-14 Maailman Matti, Kauppakeskus Iso Omenaa vastapäätä <br>Su 15.10. Klo 13-16 Hiirisuon asukaspuisto, Kalajärvi </p><p>Kuva Jenni Vilander<br></p>" }, "short_description": { "fi": "Lasten kulttuurikeskus Aurora juhlii 20-vuotissyntymäpäiviään! Juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi!" }, "provider": { "fi": "Lasten kulttuurikeskus Aurora ja Espoon kirjasto" }, "name": { "fi": "Taidetta teillä -kiertue, Soukan asukaspuisto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7lzi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7l4m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21431/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/326736979857811?ref=newsfeed", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2023-09-14T13:00:19.926106Z", "last_modified_time": "2023-09-14T13:00:19.926131Z", "date_published": null, "start_time": "2023-09-16T07:00:00Z", "end_time": "2023-09-16T11: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Lasten kulttuurikeskus Auroran Taidetalo juhlii tänä syksynä 20-vuotissyntymäpäiviään! “Taidetekoja 20 vuotta” -juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi Leppävaaraan, Soukkaan, Matinkylään ja Kalajärvelle. Tule tekemään taidetta kanssamme! </p><p>Syntyneet teokset pääsevät osaksi näyttelykokonaisuutta, joka avataan Lapsen oikeuksien viikolla ja huipentuu lauantaina 25.11. Suureen Taidejuhlaan Lasten kulttuurikeskus Aurorassa. <br> <br>Taide syntyy leikiten – paja pienille </p><p>Leikin maailmassa kaikki on mahdollista. Hauskuus kaksinkertaistuu, kun taidepajassa iloisen leikin jäljet tallentuvat yhteiseksi maalaukseksi. Kirmaa tutkimaan mielikuvituksen hehkun piirtymistä värikkäiksi taidejäljiksi! Taideohjaaja Jenni Vilander </p><p>Hetken ajatus -pilvet – paja isoille </p><p>Mikä juuri tässä hetkessä on mukavaa? Kutkuttaako ajatuksissa saapuvan syksyn uudet tuulet tai tapahtuiko tänään aamulla jotain yllättävää? Mistä ajatuksesta sinä haluat jättää jäljen? Taiteile se ajatuspilveen! TaidePiilon taideohjaajat, taidepiilo.fi</p><p>Menossa on mukana kirjaston tapahtuma-auto Välkky, josta voi myös lainata aineistoa! Välkyssä voi teettää kirjastokortin. <br> <br>Tapahtuma on maksuton <br>Järj. Lasten kulttuurikeskus Aurora yhteistyössä Espoon kirjaston kanssa. </p><p><br>Koko kiertue</p><p>La 16.9. klo 10-14 Leppävaaran urheiluaukio <br>Su 17.9. klo 13-16 Soukan asukaspuisto <br> <br>La 14.10. Klo 10-14 Maailman Matti, Kauppakeskus Iso Omenaa vastapäätä <br>Su 15.10. Klo 13-16 Hiirisuon asukaspuisto, Kalajärvi </p><p>Kuva Jenni Vilander<br></p>" }, "short_description": { "fi": "Lasten kulttuurikeskus Aurora juhlii 20-vuotissyntymäpäiviään! Juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi!" }, "provider": { "fi": "Lasten kulttuurikeskus Aurora ja Espoon kirjasto" }, "name": { "fi": "Taidetta teillä -kiertue, Leppävaaran urheiluaukio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7l4m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265172", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:60321/?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:10673/?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:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11980/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2889, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:59.966991Z", "last_modified_time": "2023-08-15T15:33:59.967013Z", "name": "", "url": "https://www.helmet.fi/download/noname/{C5FC9095-9FAD-46B1-B3A9-420BB65D74FF}/104879", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2889/?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:p11617/?format=api" } ], "created_time": "2023-08-15T15:33:59.395980Z", "last_modified_time": "2023-09-14T12:31:26.365000Z", "date_published": "2023-08-14T09:38:00Z", "start_time": "2023-09-08T07:00:00Z", "end_time": "2023-09-08T08: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Kirjailija Merja Mäki kertoo kirjoittamisesta ja kirjastaan Ennen lintuja, Otaniemen lukion opiskelijat haastattelevat. </p><p>Otaniemen lukion teatterisali Otasalissa pidettävää vierailua pääsevät seuraamaan kaikki kiinnostuneet. Otaniemen kirjastolta ohjataan vieraat lukion puolelle Otasaliin, saavuthan viimeistään klo 9.55.</p><p>Kirjailijavierailun järjestelyistä vastaa Otaniemen lukio.</p><p>Tervetuloa!</p>" }, "short_description": { "fi": "Kirjailija Merja Mäki vierailee Otaniemen lukion auditoriossa Otasalissa. Kirjastolta opastus salille!" }, "provider": null, "name": { "fi": "Kirjailijavieraana Merja Mäki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265172/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261313", "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:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2864, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:24.621808Z", "last_modified_time": "2023-08-15T15:33:24.621827Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F85471E3-4290-40ED-BB1A-F37DE1C469B0}/103126", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2864/?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:33:24.487584Z", "last_modified_time": "2023-09-14T12:30:29.557670Z", "date_published": "2023-06-13T09:59:00Z", "start_time": "2023-09-06T14:30:00Z", "end_time": "2023-09-06T15: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p> <strong>Monitoimitila 6.9. klo 17.30 alkaen</strong> </p><p>Miten oppimisvaikeuden tunnistaa? Miten ne näkyvät erilaisen oppijan arjessa ja opiskelussa? Miten oppimista voi tukea ja opiskelua sujuvoittaa?</p><p>Tule kuulemaan ja keskustelemaan oppimisvaikeuksista Helsingin seudun erityiset oppijat ry:n ja Helsingin työväenopiston yhteisille luennoille.</p><p>Luennoitsijana toimii erityisopettaja<strong> </strong><b>Kirsi Makkonen</b>.</p><p>Syksyn kaikki luennot alkaen klo 17.30:<br> ke 6.9. Malmin kirjasto<br> ke 4.10. Kannelmäen kirjasto, Lukuliiketila (Luki-viikko)<br> to 2.11. Maunula-talo, Avoin oppimisympäristö 3 kerros (Helsinki oppii-viikko)<br> to 30.11. Vuosaaren kirjasto</p><p>Vapaa pääsy. Tervetuloa!</p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Malmin_kirjasto/Yhteystiedot\">Malmin kirjasto</a> </p>" }, "short_description": { "fi": "Erityisopettaja Kirsi Makkonen luennoi. Tapahtuman järjestävät Helsingin seudun erityiset oppijat ry ja Helsingin työväenopisto." }, "provider": null, "name": { "fi": "Oppimisvaikeudet – vaikeuksien kautta voittoon" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261313/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266069", "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: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2632, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:29.065797Z", "last_modified_time": "2023-08-15T15:28:29.065818Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9362662A-E1CA-4FD0-896B-2BEE7E73D7D1}/96412", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2632/?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-21T13:20:32.315863Z", "last_modified_time": "2023-09-14T12:25:17.803743Z", "date_published": "2023-08-21T10:26:00Z", "start_time": "2023-08-14T13:00:00Z", "end_time": "2023-08-14T14: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Lasten tapahtumatila, 3. krs.", "sv": "Barnens evenemangrum, vån 3." }, "description": { "fi": "<p>Tervetuloa Oodiin harjoittamaan tasapainoa ja kuuntelemaan runoja. Tasapainoharjoitukset tehdään seisten ja rentoutusharjoitukset istuen. Tapahtuma pidetään ruotsiksi. Ei ennakkoilmoittautumista. Maanantaisin klo 16-17, lasten tapahtumatila 3. krs. 14.8.-11.12.2023</p>", "sv": "<p>Kom till Ode för att träna i grupp och lyssna på lyrik. Varje måndag klockan 16:00-17:00 gympar vi på barnens evenemangrum på tredje våningen. Balansträning för seniorer görs stående och avslappningsövningar sittande. Bibliotekarien och idrottsinstruktören leder gruppen samt läser lyrik i slutet av passet. Terminen börjar den 14 augusti och sista gången är den elfte december 2023.</p><p>Ingen anmälan behövs. Det är bara att dyka upp i bokhimlen! </p>" }, "short_description": { "fi": "Liikettä ja runoja senioreille", "sv": "Kom till Ode för att träna i grupp och lyssna på lyrik." }, "provider": null, "name": { "fi": "Balans och lyrik för seniorer - tasapainoa ja runoutta", "sv": "Balans och lyrik för seniorer" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266069/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265040", "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: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2846, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:05.004845Z", "last_modified_time": "2024-02-06T13:40:33.332197Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E87F4454-ABB1-4B64-80B4-D996626FBF56}/95710", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2846/?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:35:03.334951Z", "last_modified_time": "2023-09-14T11:29:36.980575Z", "date_published": "2022-12-20T09:12:00Z", "start_time": "2023-09-13T07:00:00Z", "end_time": "2023-09-13T08: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Malmin kirjasto" }, "description": { "fi": "<h3>Digiopastusta senioreille syksyllä 2023</h3><p> <strong>Keskiviikkoisin klo 10 - 12 (1h/opastettava) 6.9.-13.12.</strong> </p><p>Ajanvaraus ennakkoon p. 09 310 85070 tai Malmin kirjaston asiakaspalvelusta. <br><br> Enter ry:n opastus on senioreille tarkoitettua maksutonta digitukea. ENTER ry:n vapaaehtoiset vertaisopastajat neuvovat tietokoneiden ja älylaitteiden sekä sähköisten palveluiden käytössä. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat. </p><p>Lisätietoa: <a href=\"http://www.entersenior.fi/\">www.entersenior.fi</a></p><p>Lähiopastuksissa suositellaan kasvosuojainten käyttöä, mutta opastettava ja opastaja voivat yhteisesti päättää kasvosuojaimen käyttämättä jättämisestä. Peru opastusaika ajoissa, jos olet sairaana. Lisätietoa: <a href=\"https://www.entersenior.fi/opastus/lahiopastus/\">entersenior/lähiopastus</a></p><p>Tietoa digineuvonnasta kesällä: <a href=\"https://www.entersenior.fi/opastus/lahiopastus/kesa/\">https://www.entersenior.fi/opastus/lahiopastus/kesa/</a></p> Kuva: Enter ry" }, "short_description": { "fi": "Enter ry:n vertaisopastukset jatkuvat syyskuussa." }, "provider": null, "name": { "fi": "Enter ry opastaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265040/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263464", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8223/?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: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" }, { "@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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2574, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:50.363913Z", "last_modified_time": "2024-02-06T13:38:04.220163Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DE6F15EE-27F5-40E9-81D4-FE4CF58AB088}/84122", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2574/?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:p6165/?format=api" } ], "created_time": "2023-08-15T15:28:28.031706Z", "last_modified_time": "2023-09-14T11:21:40.187084Z", "date_published": "2022-01-03T12:56:00Z", "start_time": "2023-08-14T11:00:00Z", "end_time": "2023-08-14T13: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "S-point 1. krs.", "sv": "S-point, 1. våning", "en": "S-point on 1st floor" }, "description": { "fi": "<p>Tervetuloa Kielikahvila Suomaan! <br><br> Suomen kielen keskusteluryhmä Pasilan kirjastossa joka maanantai ja keskiviikko klo 14-16 (14.8.-13.12.2023) sekä e-Ekstra-nettikielikahvila Skypessä torstaisin klo 17-19. </p><p>Suomen kielen taitosi ei tarvitse olla sujuvaa mutta toivomme, että osaat jo hiukan ennestään. Vietämme rennosti aikaa yhdessä jutellen. Jännittää ei tarvitse – rohkeasti mukaan! Tuo kaverisikin!<br><br> Meillä on tavallisesti useampi tasoryhmä vasta-alkajista enemmän osaaviin.<br><br> Jos sinullla on kysymyksiä, kirjoita viesti tähän osoitteeseen: <a href=\"mailto:kielikahvilapasila@gmail.com\">kielikahvilapasila@gmail.com</a></p><p> <a href=\"https://www.facebook.com/kielikahvilapasila\">Pasilan kirjaston kielikahvilat Facebookissa</a> <br> <a href=\"http://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Uutispalat/Suomen_kielen_kielikahvilat_ja_keskustel(48366)\">Kaikki Helmet-kielikahvilat ja keskusteluryhmät</a> <br> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasilan kirjasto</a> <br> <br> Foto: Pixabay / freephotocc</p>", "sv": "<p>Välkommen till språkcafé Suoma!</p><p>Böle bibliotekets språkcafé Suoma är en diskussionsgrupp på finska som samlas varje måndag och onsdag kl. 14-16 (14.8. - 13.12.2023) samt som e-Ekstra på nätet varje torsdag kl.17-19 via Skype. <br><br> Dina finska språkkunskaper behöver inte vara flytande, men vi hoppas att du redan kan lite. Vi tillbringar en avslappnad tid med att prata tillsammans. Du behöver inte vara nervös – bara kom! Ta också din vän med dig! Vi brukar ha flera nivågrupper från nybörjare till mer skickliga.</p><p>Om du har frågor, skicka ett email till denna adress: <a href=\"mailto:kielikahvilapasila@gmail.com\">kielikahvilapasila@gmail.com</a> . <br><br><a href=\"http://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Bole_bibliotek\">Böle bibliotek</a><br><a href=\"https://www.facebook.com/kielikahvilapasila\">Böle biblioteks språkcaféer i Facebook</a><br><a href=\"http://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Uutispalat/Suomen_kielen_kielikahvilat_ja_keskustel(48366)\">Samtliga HelMet-språkcaféer och diskussionsgrupper</a></p><p>Foto: Pixabay / freephotocc</p>", "en": "<p>Welcome to Language Café Suoma!</p><p>Pasila Library's language café Suoma is a discussion group in Finnish that meets every Monday and Wednesday at 14-16 at Pasila Library (14.8. - 13.12.2023), and on Skype as e-Ekstra every Thursday at 17-19. </p><p>Your Finnish language skills do not have to be fluent, but we hope that you already know a little. We spend a relaxed time talking together. There's no need to be nervous - feel free to come along! Also bring your friend with you!</p><p>We usually have several level groups from beginners to more skilled ones.</p><p>If you have any questions, send an email to this address: kielikahvilapasila@gmail.com</p><p> <a href=\"https://www.facebook.com/kielikahvilapasila\">The Finnish Language Cafés in Pasila Library on Facebook</a> <br> <a href=\"http://www.helmet.fi/en-US/Events_and_tips/News_flash/Finnish_language_cafes_and_discussion_gr(46480)\">All HelMet Language Cafés and Discussion Groups</a> <br> <a href=\"http://www.helmet.fi/en-US/Libraries_and_services/Pasila_Library\">Pasila Library</a> <br> <br> Foto: Pixabay / freephotocc</p>" }, "short_description": { "fi": "Tule harjoittelemaan suomen kielen puhumista!", "sv": "Kom och öva din finska!", "en": "Welcome to chat in Finnish!" }, "provider": null, "name": { "fi": "Kielikahvila Suoma", "sv": "Språkcaféet Suoma", "en": "Finnish Language Café Suoma" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263464/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267883", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?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:11699/?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: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4680, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-07T15:23:06.430165Z", "last_modified_time": "2024-02-06T13:38:46.983068Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F4A3365F-C6DD-4B98-B45C-0386AEC2E191}/105678", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4680/?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-07T15:23:05.457633Z", "last_modified_time": "2023-09-14T05:45:04.885207Z", "date_published": "2023-09-07T12:44:24.017000Z", "start_time": "2023-09-12T15:00:00Z", "end_time": "2023-09-12T16: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Tikkurilan kirjaston lastenosasto, Laguuni -tila" }, "description": { "fi": "<p>Hei koululainen, haluaisitko oppia soittamaan ukulelea? Tule soittamaan Tikkurilan kirjastoon yksin tai vaikka kaveriporukalla! Lasten- ja nuortenosastolla on mahdollista tutustua soittimeen matalalla kynnyksellä ohjatuissa ukulele-soittopajoissa. </p><p>Soittopajat alkavat tiistaina 12.9., ja ensimmäinen kerta järjestetään klo 18–19 lasten- ja nuortenosaston lukutila Laguunissa. Soittopajat ovat suunnattu alakoululaisille (7–12 v). Pajoja suunnitellaan järjestettäväksi joka toinen tiistai, mutta muutokset aikatauluun ovat vielä mahdollisia.</p><p>Tikkurilan kirjastosta löytyy kolme ukulelea, ja voit halutessasi ottaa myös oman soittimen mukaan. Pajoja ohjaa Ester Koponen. Opastus onnistuu suomen lisäksi myös englanniksi, ruotsiksi ja ranskaksi.</p><p>Kaikki mukaan – ukulele on helppo ja hauska soitin!</p><p>Kuva: Vantaan kaupunginkirjasto</p><p>Asiasana: Lastenkulttuuri</p>" }, "short_description": { "fi": "ukulele pajat koululaisille tikkurilan kirjastossa 12.9. alkaen" }, "provider": null, "name": { "fi": "Koululaisten ukulele-soittopajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267883/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261892", "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: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:11777/?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:p14710/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2631, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:27.800511Z", "last_modified_time": "2024-02-06T13:38:03.362398Z", "name": "", "url": "https://www.helmet.fi/download/noname/{2298D4B7-548D-4D58-9BFE-EA6157A795E4}/88885", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2631/?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:p4354/?format=api" } ], "created_time": "2023-08-15T15:28:27.674605Z", "last_modified_time": "2023-09-14T05:32:04.973705Z", "date_published": "2023-06-20T11:03:00Z", "start_time": "2023-08-14T07:00:00Z", "end_time": "2023-08-14T07: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p> <strong> Puistolan kirjaston satutuokiot <strong>järjestetään maanantaisin klo 10.</strong> </strong> </p><p>Satutuokiossa luetaan suomenkielisiä satuja. Satutuokiot on suunnattu alle 7-vuotiaille lapsille vanhempineen. Tervetuloa satujen maailmaan!</p><p> <em>Kuva: Maarit Hohteri</em> </p>" }, "short_description": { "fi": "Satutuokio lapsille" }, "provider": null, "name": { "fi": "Satutuokiot Puistolan kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261892/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267318", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15309/?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:10690/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3918, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-07T09:24:59.382444Z", "last_modified_time": "2023-09-07T09:24:59.382465Z", "name": "", "url": "https://www.helmet.fi/download/noname/{65398071-E1BD-4DE8-9FC8-8FD2D54523C3}/105664", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3918/?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-30T14:27:32.086697Z", "last_modified_time": "2023-09-13T16:32:02.616108Z", "date_published": "2023-08-30T13:05:00Z", "start_time": "2023-09-13T14:30:00Z", "end_time": "2023-09-13T16: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "</p><p> <strong>Tervetuloa </strong> <strong> <strong>Laaksolahden Kirjaston ystävät ry:n </strong> <strong>20-vuotistapahtumaan </strong> <br> <strong>Laaksolahden kirjastoon </strong> <strong>keskiviikkona 13.9.2023 klo 17.30 – 19.30!</strong> </strong> </p><p>Tapahtumassa on tarjolla kakkukahvit ja ohjelmaa koko perheelle: puheenvuoroja, haastatteluja, musiikkiesityksiä, puuhaa lapsille ja yhdistyksemme toiminnan esittelyä.</p><p> <strong>Tapahtuman ohjelma:</strong> </p><p> <strong>Klo 17.30 </strong> <br> Tilaisuuden avaus<br> Espoon kaupunginkirjaston tervehdys<br> Jupperin koulun tervehdys<br> Musiikkia: viulisti Olli Järvinen ja pianisti Miikkael Halonen</p><p> <strong>Klo 18.00 </strong> <br> 20 vuotta toimintaa lähikirjaston puolesta, Esko Uotila, Laaksolahden kirjaston ystävät ryVierailijoiden ja kirjaston käyttäjien haastatteluja</p><p> <strong>Klo 19.00 </strong> <br> Musiikkia</p><p> <strong>Kahvitarjoilu alkaa klo 17.15.</strong> <br> Puuhaa lapsille koko tapahtuman ajan.</p><p> <br> Tervetuloa!<br> Laaksolahden kirjaston ystävät ry:n hallitus</p>" }, "short_description": { "fi": "Tervetuloa Laaksolahden Kirjaston ystävät ry:n 20-vuotistapahtumaan Laaksolahden kirjastoon keskiviikkona 13.9.2023 klo 17.30 – 19.30!" }, "provider": null, "name": { "fi": "Laaksolahden kirjaston ystävät 20 vuotta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267318/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:259423", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2927, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:35:24.281422Z", "last_modified_time": "2023-08-15T15:35:24.281444Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9CCAAEEE-1E38-4747-AC61-F6232A56BDD3}/102605", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2927/?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:35:23.995152Z", "last_modified_time": "2023-09-13T16:31:56.642088Z", "date_published": "2023-05-17T07:30:00Z", "start_time": "2023-09-13T15:30:00Z", "end_time": "2023-09-13T16: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Tapahtumatila Kaija" }, "description": { "fi": "<p> <strong> <em>”Puhe on kuin sade<br> jatkuva vedentulo käy hermoille<br> eikä liian pitkä kuiva kausikaan tee ihmiselle hyvää”</em> </strong> </p><p>Kirjailija <strong>Leena Sainio </strong>esittelee uutuuskirjansa <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2549298__SSainio%2C%20Leena__P0%2C3__Orightresult__U__X4?lang=fin&suite=cobalt\"><strong>Kirjosiipi - puhe(e)tta puheesta, Enostone, 2023</strong></a>. Se on Sainion kolmas runokokoelma, joka keskittyy puheen merkitykseen tässä<br> epävakaassa maailmassa.</p><p>Hyvällä puhetaidolla pärjää pitkälle. Mutta kaikki eivät ole puheviestinnän mestareita. Kirjosiipi valottaa puhetta ja puhumista sen nurjalta puolelta, altavastaajan vinkkelistä. Puheen ja kielenkehityksen ongelmat, äänneviat, väärinymmärtäminen, ihmissuhdemykkyys ja eri syistä johtuva puheen katoaminen vaikeuttavat kommunikaatiota ja hankaloittavat elämää. Kokoelman keskiössä on nimisikermä Kirjosiipi. Siinä kuvataan äidin tuntoja, kun selviää, että hänen pienellä nepsylapsellaan on kielellisen kehityksen erityisvaikeus (ent. dysfasia). Tärkeää teemaa lähestytään tunteella: kunnioittavasti ja herkästi, huumoria unohtamatta.</p><p>Kustantaja: <em>Kuinka päädyit kirjoittamaan runoja puheen kehityksen vaikeuksista?</em><br> Runoilija: <em>Oma esikoiseni on Asperger-oireinen dysfaatikko. Hänen lapsuudestaan on jo aikaa, mutta vasta nyt tuli tarve keriä asiaa auki äidin näkökulmasta. Ehkä tässä on mukana jotain vertaistuellistakin. Näistä asioista saa paljon asiapitoista tietoa, mutta on hyvä, että kirjoitetaan myös tunteista, joita tämänkaltaiset ongelmat väistämättä aiheuttavat.</em><br><br> Leena Sainio on helsinkiläinen runoilija. Hän toimii laulunopettajana Espoon musiikkiopistossa ja on Espoon Kirjailijat ry:n hallituksen jäsen. Leena on myös lavarunoaktiivi.</p><p>Leena Sainion tuotantoa:</p><p> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2391350__SSainio%2C%20Leena__P0%2C2__Orightresult__U__X4?lang=fin&suite=cobalt\">Särmää serenadissa, Pesä Kustannus, 2019, runokokoelma</a> </p><p> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2454754__SSainio%2C%20Leena__Orightresult__U__X4?lang=fin&suite=cobalt\">Rapuooppera : lasten runokirja / kirjoittanut ja kuvittanut Leena Sainio, Enostone, 2021</a> </p><p> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2497491__SSainio%2C%20Leena__P0%2C1__Orightresult__U__X4?lang=fin&suite=cobalt\">Leenu, Liinu ja Tiinu : rajansa rinnoillakin : humoristinen pienoisromaani, Enostone, 2022</a> </p><p> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2480421__SSusipaimen__Orightresult__U__X7?lang=fin&suite=cobalt\">Susipaimen : runoantologia / toimittaneet Leena Sainio ja Jonna Nummela, Osuuskunta Raikuu, 2021, mielenterveysaiheinen runokokoelma, yhteistyössä Mieli ry:n kanssa </a> </p><p>Kirjailijakuva Leena Sainiosta Pirjo Lindfors.</p>" }, "short_description": { "fi": "Kirjailija Leena Sainio esittelee uutuusrunokirjansa Kirjosiipi - puhe(e)tta puheesta." }, "provider": null, "name": { "fi": "Kirjailijavieraana Leena Sainio: Kirjosiipi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:259423/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267750", "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: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:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3890, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-05T12:27:03.370275Z", "last_modified_time": "2023-09-05T12:27:03.370306Z", "name": "", "url": "https://www.helmet.fi/download/noname/{57D92C23-06A2-4AEA-A28C-B6A2C7AC6CC7}/105609", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3890/?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-09-05T12:27:03.223681Z", "last_modified_time": "2023-09-13T16:31:49.469869Z", "date_published": "2023-09-05T11:05:58.450000Z", "start_time": "2023-09-13T15:00:00Z", "end_time": "2023-09-13T15: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Lava" }, "description": { "fi": "<h3>Keskiviikkona 13.9. klo 18 lavalla</h3><p>Pianisti César Daniel Quiroz esittää teoksia säveltäjiltä Bach, Beethoven, Liszt, Debussy, Prokofiev. </p>" }, "short_description": { "fi": "Pianisti César Daniel Quiroz esittää teoksia säveltäjiltä Bach, Beethoven, Liszt, Debussy, Prokofiev." }, "provider": null, "name": { "fi": "Pianoresitaali" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267750/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:260630", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?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:10737/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2910, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:39.156820Z", "last_modified_time": "2024-02-06T13:39:07.931395Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B2A0A574-56D8-4243-8F93-FED0084F6FFB}/91457", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2910/?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:34:39.037170Z", "last_modified_time": "2023-09-13T11:24:55.078019Z", "date_published": "2022-03-11T22:00:00Z", "start_time": "2023-09-12T09:00:00Z", "end_time": "2023-09-12T11: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Tarvitsetko apua ja neuvoja älypuhelimen, tabletin, tietokoneen, internetin tai sähköpostin peruskäyttöön?<br><br> ENTER ry:n vapaaehtoiset seniorit antavat henkilökohtaista ja maksutonta vertaisopastusta.</p><p>Ota mukaan omat laitteesi sekä tarvittavat tunnukset ja salasanat!</p><p> <strong>Syksykauden opastukset: 12.9., 10.10., 24.10., 7.11., 21.11., 5.12.</strong> </p><p> <strong>HUOM! Vain ajanvarauksella.</strong> Varaa tunnin opastusaika kirjastosta tai soittamalla numeroon puh. 09 3108 5033.</p><p>Tervetuloa!</p>" }, "short_description": { "fi": "Enter ry:n opastukset" }, "provider": null, "name": { "fi": "Tietotekniikkaopastusta senioreille" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:260630/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267681", "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:10690/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3861, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-04T12:25:26.073356Z", "last_modified_time": "2023-09-04T12:25:26.073376Z", "name": "", "url": "https://www.helmet.fi/download/noname/{04231E7D-4675-4E82-8D2F-851A2A9305E0}/105537", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3861/?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-09-04T12:25:24.708297Z", "last_modified_time": "2023-09-13T08:27:28.774652Z", "date_published": "2023-09-04T11:33:00Z", "start_time": "2023-09-12T12:00:00Z", "end_time": "2023-09-12T13: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Elina" }, "description": { "fi": "<p>Tule tutustumaan ukrainan kieleen ja kulttuuriin!</p><p>Te voitte oppia perussanoja ja fraaseja.</p><p>Saatte tietoja ukrainalaisesta kirjallisuudesta, historiasta, musiikista.</p><p>Ennakkotiedot Ukrainasta ja ukrainan kielestä eivät ole välttämättömiä. Innostunut ja kiinnostunut mieli riittää. Tulette huomaamaan, että Ukraina ja ukrainan kieli ovat hyvin mielenkiintoisia.</p><p>Kerholla ei ole tarkkaa etukäteisohjelmaa, vaan osallistujat voivat ehdottaa itse omia teemoja oman kiinnostuksensa mukaan.</p><p>Aktiivinen osallistuminen on tervetullutta.</p><p>Me puhumme englantia ja suomea.</p><p>Ensimmäinen tapaaminen pidetään 12.09</p><p>Sellon kirjasto, Elina huone, 15.00</p><p>Tervetuloa! Ласкаво просимо!</p>" }, "short_description": { "fi": "Tule tutustumaan ukrainan kieleen ja kulttuuriin!" }, "provider": null, "name": { "fi": "Ukrainan kielen ja kulttuurin kerho" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267681/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263758", "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:10677/?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:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2914, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:47.958911Z", "last_modified_time": "2023-08-15T15:34:47.958932Z", "name": "", "url": "https://www.helmet.fi/download/noname/{93BCFEC4-036B-4CE9-92C0-CC4B2617726C}/104521", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2914/?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:p1178/?format=api" } ], "created_time": "2023-08-15T15:34:47.791888Z", "last_modified_time": "2023-09-12T21:26:00.337909Z", "date_published": "2023-07-14T10:23:00Z", "start_time": "2023-09-12T14:00:00Z", "end_time": "2023-09-12T15: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "3. krs. Saarikoski-matto" }, "description": { "fi": "<p>Tule kuulemaan, mitä yhteistä on hapanjuurileipomisella ja rikossovittelulla!</p><p>Yksityisyrittäjä Petra elää sinkkuna ja omistautuu työlleen. Asiakkaiden haasteet tuovat riittävästi kiinnostavuutta hänen elämäänsä, hän ei etsi elämänkumppania. Petran äiti huomaa, että tyttären elämästä puuttuu onni. Petra saa äidiltään hapanjuuren ja äiti lupaa sen tuovan iloa ja onnea. </p><p>Eräänä alkukesän päivänä Petra tapaa Jaakon, joka sotkee työorientoituneen Petran mielen ja lopulta myös arjen. Rakkauden sinfonia ei kuitenkaan soi puhtaasti. Petra joutuu kohtamaan uusia asioita, mustasukkaisuutta ja mykkyyttä. Kuka Jaakko todella on, miksi hän välillä katoaa, miksi hän ei vastaa kysymyksiin? Kun pelko herää, tunne peittää järjen.</p><p>Vain hapanjuurella leipominen helpottaa ja rauhoittaa Petraa. Taikinaa venyttäessään ja taitellessaan hän voi hetken olla onnellinen. Tuo onni särkyy, kun Petran fyysisiä rajoja rikotaan. Se järkyttää, mutta hän on valmis sovittelemaan.</p><p>Onnenjuuri (2023) on kirjailija Merja Svenskin kolmas romaani. Se kertoo aikuisten ihmisten identiteetin kehityksestä ja parisuhteen vaikeuksista, kun osapuolilla on kovin erilaiset lähtökohdat. Se pyytää miettimään, miksi joku juo tai miksi joku lyö. Tarina on myös kannanotto, lähisuhdeväkivalta ole missään muodossa hyväksyttyä. </p><p>Hapanjuurella itsekin leipova Svensk kuvaa juurileipomisen iloa kirjan päähenkilön kautta riemullisella tavalla. Vapaa-aikanaan Svensk toimii rikos- ja riitasovittelijana ja kirjaesittely tarjoaa tietoa myös rikossovittelusta.<br><br> Kirjailijaa haastattelee toimittaja, käsikirjoittaja Jaakko Ojanne.</p><p>Tapahtuman järjestää kirjailija Merja Svensk.</p><p>Kuva: Merja Svensk</p>" }, "short_description": { "fi": "Onnenjuuri (2023) on kirjailija Merja Svenskin kolmas romaani. Se kertoo aikuisten ihmisten identiteetin kehityksestä ja parisuhteen vaikeuksista, kun osapuolilla on kovin erilaiset lähtökohdat. Se pyytää miettimään, miksi joku juo tai miksi joku lyö. Tarina on myös kannanotto, lähisuhdeväkivalta ole missään muodossa hyväksyttyä." }, "provider": null, "name": { "fi": "Merja Svensk: Onnenjuuri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263758/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264349", "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: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:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2630, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:25.202837Z", "last_modified_time": "2023-08-15T15:28:25.202858Z", "name": "", "url": "https://www.helmet.fi/download/noname/{612939D4-A7AE-4CC0-8F69-772CB8243E74}/104620", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2630/?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:28:24.991314Z", "last_modified_time": "2023-09-12T19:17:54.375025Z", "date_published": "2023-07-27T09:40:43.223000Z", "start_time": "2023-08-06T21:00:00Z", "end_time": "2023-08-12T21: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "3. krs, kahvila" }, "description": { "fi": "<p>Tervetuloa tutustumaan Pöytä on katettu -näyttelyyn, joka tutkii arkisessa ruokaympäristössä kohdattuja haasteita nuorten näkökulmasta. Näyttely on esillä Oodin 3. kerroksen kahvilan alueella. <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Keskustakirjasto_Oodi/Tapahtumat/Poyta_on_katettu_nayttelyn_avajaistilais(264342)\">Näyttelyn avajaistilaisuus ja näyttelyyn liittyvä keskustelu</a> järjestetään Oodin 3. kerroksen Saarikoski-maton tapahtuma-alueella 7.8.2023, klo 15.00–16.30. Tervetuloa mukaan!</p><p>Arjen ruokaympäristö vaikuttaa merkittävästi siihen mitä ja miten syömme. Toimimme ruokaympäristöissä usein rutiininomaisesti, emmekä välttämättä kiinnitä juurikaan huomiota niihin ruokaympäristön fyysisiin, taloudellisiin, poliittisiin ja sosiokulttuurisiin ominaisuuksiin, jotka vaikuttavat omaan toimintaamme.</p><p>Nuoret ovat oman arkisen ruokaympäristönsä parhaita asiantuntijoita, joiden kanssa yhdessä tutkijat ja päätöksentekijät voivat löytää ratkaisuja siirryttäessä kohti kestävämpiä elämäntapoja. Näyttely nostaa esille viisi eri teemaa nuorten arkisesta ruokaympäristöstä, joihin he toivovat yhteiskunnalta lisää huomiota.</p><p> <strong>Kiitos ruoasta -teema</strong> kysyy saako ruoka ansaitsemansa arvostuksen, entä mitä ja miten kukin ansaitsee syödä.</p><p> <strong>Kaunis kasvisruoka -teema</strong> pohtii asennoitumista kasvisruokaan ja sen asemaa nykyisessä ruokaympäristössämme. Kasvisruokaa kohtaan on edelleen ennakkoluuloja, eikä ruokaympäristö aina mahdollista tai tue kasvisruoan valitsemista.</p><p> <strong>Syö, että jaksat, jaksat kun syöt -teema</strong> tempaisee mukaan paineistetun nuoren syöksykierteeseen, jossa puutteellinen ravitsemus on osaltaan sekä jaksamattomuuden syy että seuraus. Koetut suorituspaineet ja taloudellinen niukkuus uuvuttavat, jolloin päädytään usein syömään jotain helppoa tai jotain, joka lohduttaa.</p><p> <strong>Jaettavaksi-teema</strong> juhlistaa sosiaalisten suhteiden ja tuen merkitystä. Ruoan hankkiminen, valmistaminen ja nauttiminen yhdessä muiden kanssa mahdollistaa omien arvojen mukaista syömistä ja tukee jaksamista.</p><p> <strong>Hävikin halvat herkut -teema</strong> pohtii yltäkylläisyyden ja niukkuuden yhteen kietoutumista. Saatavilla oleva ruoka ei ole aina henkilökohtaisesti saavutettavissa. Omat toimet hävikin vähentämiseksi hälventävät hävikin tuottamaa surua.</p><p>Näyttely on toteutettu osana Suomen ympäristökeskuksen ”Kansalaistiedettä arkiympäristöstä” -tutkimushanketta, jota rahoittaa Suomen Akatemia. Tutkimushankkeessa nuoret ovat tutkineet yhdessä tutkijoiden kanssa omaa ruokaympäristöään ja pohtineet ratkaisuja kohdattuihin haasteisiin yhdessä ruokaympäristöön vaikuttavien toimijoiden kanssa, kuten kauppa, ravintolat ja ruokapalvelut, maa- ja metsätalousministeriö sekä valtion ravitsemusneuvottelukunta. Tutkimuksessa on tehty yhteistyötä 4H Aktiivinuorten, WWF Nuorten, Kohtaus ry:n sekä Voionmaan koulutuskeskuksen valokuvauksen ja ympäristövaikuttajien opettajien kanssa. Tuula Alajoki on toteuttanut näyttelyn yhdessä nuorten kanssa.</p>" }, "short_description": { "fi": "Tervetuloa tutustumaan Pöytä on katettu -näyttelyyn, joka tutkii arkisessa ruokaympäristössä kohdattuja haasteita nuorten näkökulmasta! Näyttely on esillä Oodin 3. kerroksen kahvilan alueella." }, "provider": null, "name": { "fi": "Pöytä on katettu -näyttely" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264349/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267242", "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:11689/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3769, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T09:24:24.863339Z", "last_modified_time": "2023-08-30T09:24:24.863359Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1EE28AEF-54FA-4FD1-80E4-D9B4817AC8FA}/105360", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3769/?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-30T09:24:24.729890Z", "last_modified_time": "2023-09-12T11:26:04.510104Z", "date_published": "2023-08-30T08:12:00Z", "start_time": "2023-09-12T10:00:00Z", "end_time": "2023-09-12T11: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Vuosaarelainen biologi, tietokirjailija ja luontokuvaaja Antti Koli kertoo kaupunkiluonnosta ja sen monimuotoisuuden edistämisestä sanoin ja kuvin.</p><p>Antti Kolilta on julkaistu aiheesta lukuisia kirjoja, joista viimeisimpänä <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2533917\"><b>Kaupunkiluonto : löydä lähiluonnon rikkaus </b></a>(Readme.fi, 2023). Kolin edellinen kirja <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2495427\"><b>Perhosbaarista liskonpetiin : näin tuet pihan ja puutarhan monimuotoisuutta</b><b></b></a> (Kirjapaja, 2022) valittiin viime vuonna WWF:n vuoden luontokirjaksi.</p><p>***</p><p>Tapahtuma on osa Vanhusten Turva sr:n ja Vuosaaren kirjaston ikäihmisten aktivointiin suunniteltua sarjaa, joka toteutetaan neljänä peräkkäisenä tiistai-iltapäivänä syys-lokakuussa 2023. Sarjan tapahtumat ovat:</p><p>Ti 12.9. klo 13-14 Antti Koli opastaa kaupunkiluonnon ja monimuotoisuuden saloihin sanoin ja kuvin.</p><p>Ti 19.9. klo 13-14 Lähiluontokävely ja käytännön tutustuminen monimuotoisuutta edistäviin tekoihin Antti Kolin johdolla.</p><p>Ti 26.9. klo 13-14 Paikalliset toimijat esittelevät senioreille suunnattua toimintaansa. Mukana mm. Vuosaaren kirjasto, Vanhusten Turva sr ja Omakotisäätiö.</p><p>Ti 3.10. klo 13-14 Vuosaari eilen, tänään ja huomenna: Arkkitehti Petri Leppälä esittelee Vuosaaren historiaa ja tulevaisuutta kaupunkiympäristön/kaavoituksen näkökulmasta. Sen lisäksi esitellään vanhoja ja uudempia kuvia alueesta.</p>" }, "short_description": { "fi": "Vuosaarelainen biologi, tietokirjailija ja luontokuvaaja Antti Koli kertoo kaupunkiluonnosta ja sen monimuotoisuuden sanoin ja kuvin." }, "provider": null, "name": { "fi": "Kaupunkiluontoa Antti Kolin johdolla, osa 1: kuvia ja sanoja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267242/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264144", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:10690/?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:11777/?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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2629, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:22.474612Z", "last_modified_time": "2023-08-15T15:28:22.474634Z", "name": "", "url": "https://www.helmet.fi/download/noname/{09A3471A-BF1D-432C-9E00-A10C7D2ECA94}/104550", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2629/?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:p4354/?format=api" } ], "created_time": "2023-08-15T15:28:22.354814Z", "last_modified_time": "2023-09-12T09:17:44.695531Z", "date_published": "2023-07-19T10:55:00Z", "start_time": "2023-08-12T10:00:00Z", "end_time": "2023-08-12T11: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.</p><p>Kiinankielinen satutunti on suunnattu kiinankielisille lapsille, jotka ovat kiinnostuneita kiinan kielen oppimisesta. Satutunnit järjestetään kirjaston lastenosastolla.</p>", "en": "<p>Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture.</p><p>The story times are arranged at the library's children's section.</p>" }, "short_description": { "fi": "Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.", "en": "Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture." }, "provider": null, "name": { "fi": "Kiinankielinen satutunti", "en": "Chinese Story Time" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264144/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27029, "next": "