Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=618
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=619", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=617" }, "data": [ { "id": "helmet:267461", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3814, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-31T13:27:25.857831Z", "last_modified_time": "2024-02-06T13:38:44.963342Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DE6FFA2F-400F-40CD-AD4D-8AAAED8EF68F}/105435", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-31T13:46:50.393442Z", "last_modified_time": "2023-11-30T08:20:50.246555Z", "date_published": "2023-08-30T21:00:00Z", "start_time": "2023-11-21T12:00:00Z", "end_time": "2023-11-21T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa läksykerhoon Entressen kirjastoon!</p><p>Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-15 Entressen kirjastossa Espoon keskuksessa. Tarkempi paikka on vaihdellen Sininen huone tai Aistihuone.</p><p>Läksykerhossa on ohjaaja, joka auttaa lapsia läksyjen teossa sekä tukee suomen kielen vahvistumista. Suomen kieltä vahvistetaan muun muassa keskustelemalla ja yhdessä lukemalla. Lisäksi läksykerhossa on muuta toimintaa kuten liikkumista, leikkiä ja askartelua. Kerhon aikana on tarjolla välipalaa.</p><p>Lisätietoja läksykerhosta saat laittamalla sähköpostia <a href=\"mailto:toimisto@iftinseura.fi\">toimisto@iftinseura.fi</a> tai soittamalla 044 240 7526.</p><p>tiistaisin Sinisessä huoneessa klo 14 - 15</p><p>12.9., 26.9., 3.10., 10.10., 31.10., 14.11., 21.11., 5.12., 12.12.</p><p>tiistaisin Aistihuoneessa klo 14 - 15</p><p>5.9., 19.9., 24.10., 7.11.</p><p>torstaisin Sinisessä huoneessa klo 14 - 15</p><p>7.9., 14.9., 28.9., 5.10., 12.10., 2.11., 9.11., 23.11., 7.12., 14.12.</p><p>HUOM. 21.9. klo 15 - 16</p><p>torstaisin Aistihuoneessa klo 14 - 15</p><p>26.10., 16.11.,</p><p>HUOM. 30.11. klo 15 - 16</p><p>Syyslomalla 16. - 20.10. ei ole läksykerhoa.</p><p>Läksykerhotoiminnasta vastaa Iftin-seura ry, <a href=\"http://www.iftinseura.fi\">www.iftinseura.fi</a></p><p>Lisätietoa seuran muusta toiminnasta saat Facebookista: Iftin-seura ry ja Instagramista: iftinseurary</p>" }, "name": { "fi": "Läksykerho" }, "short_description": { "fi": "Tervetuloa läksykerhoon Entressen kirjastoon! Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-15 Entressen kirjastossa Espoon keskuksessa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267461/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267456", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3814, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-31T13:27:25.857831Z", "last_modified_time": "2024-02-06T13:38:44.963342Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DE6FFA2F-400F-40CD-AD4D-8AAAED8EF68F}/105435", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-31T13:44:53.799211Z", "last_modified_time": "2023-11-30T08:20:33.891176Z", "date_published": "2023-08-30T21:00:00Z", "start_time": "2023-11-14T12:00:00Z", "end_time": "2023-11-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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa läksykerhoon Entressen kirjastoon!</p><p>Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-15 Entressen kirjastossa Espoon keskuksessa. Tarkempi paikka on vaihdellen Sininen huone tai Aistihuone.</p><p>Läksykerhossa on ohjaaja, joka auttaa lapsia läksyjen teossa sekä tukee suomen kielen vahvistumista. Suomen kieltä vahvistetaan muun muassa keskustelemalla ja yhdessä lukemalla. Lisäksi läksykerhossa on muuta toimintaa kuten liikkumista, leikkiä ja askartelua. Kerhon aikana on tarjolla välipalaa.</p><p>Lisätietoja läksykerhosta saat laittamalla sähköpostia <a href=\"mailto:toimisto@iftinseura.fi\">toimisto@iftinseura.fi</a> tai soittamalla 044 240 7526.</p><p>tiistaisin Sinisessä huoneessa klo 14 - 15</p><p>12.9., 26.9., 3.10., 10.10., 31.10., 14.11., 21.11., 5.12., 12.12.</p><p>tiistaisin Aistihuoneessa klo 14 - 15</p><p>5.9., 19.9., 24.10., 7.11.</p><p>torstaisin Sinisessä huoneessa klo 14 - 15</p><p>7.9., 14.9., 28.9., 5.10., 12.10., 2.11., 9.11., 23.11., 7.12., 14.12.</p><p>HUOM. 21.9. klo 15 - 16</p><p>torstaisin Aistihuoneessa klo 14 - 15</p><p>26.10., 16.11.,</p><p>HUOM. 30.11. klo 15 - 16</p><p>Syyslomalla 16. - 20.10. ei ole läksykerhoa.</p><p>Läksykerhotoiminnasta vastaa Iftin-seura ry, <a href=\"http://www.iftinseura.fi\">www.iftinseura.fi</a></p><p>Lisätietoa seuran muusta toiminnasta saat Facebookista: Iftin-seura ry ja Instagramista: iftinseurary</p>" }, "name": { "fi": "Läksykerho" }, "short_description": { "fi": "Tervetuloa läksykerhoon Entressen kirjastoon! Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-15 Entressen kirjastossa Espoon keskuksessa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267456/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267455", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3814, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-31T13:27:25.857831Z", "last_modified_time": "2024-02-06T13:38:44.963342Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DE6FFA2F-400F-40CD-AD4D-8AAAED8EF68F}/105435", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-31T13:42:45.477944Z", "last_modified_time": "2023-11-30T08:20:18.804241Z", "date_published": "2023-08-30T21:00:00Z", "start_time": "2023-11-07T12:00:00Z", "end_time": "2023-11-07T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa läksykerhoon Entressen kirjastoon!</p><p>Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-15 Entressen kirjastossa Espoon keskuksessa. Tarkempi paikka on vaihdellen Sininen huone tai Aistihuone.</p><p>Läksykerhossa on ohjaaja, joka auttaa lapsia läksyjen teossa sekä tukee suomen kielen vahvistumista. Suomen kieltä vahvistetaan muun muassa keskustelemalla ja yhdessä lukemalla. Lisäksi läksykerhossa on muuta toimintaa kuten liikkumista, leikkiä ja askartelua. Kerhon aikana on tarjolla välipalaa.</p><p>Lisätietoja läksykerhosta saat laittamalla sähköpostia <a href=\"mailto:toimisto@iftinseura.fi\">toimisto@iftinseura.fi</a> tai soittamalla 044 240 7526.</p><p>tiistaisin Sinisessä huoneessa klo 14 - 15</p><p>12.9., 26.9., 3.10., 10.10., 31.10., 14.11., 21.11., 5.12., 12.12.</p><p>tiistaisin Aistihuoneessa klo 14 - 15</p><p>5.9., 19.9., 24.10., 7.11.</p><p>torstaisin Sinisessä huoneessa klo 14 - 15</p><p>7.9., 14.9., 28.9., 5.10., 12.10., 2.11., 9.11., 23.11., 7.12., 14.12.</p><p>HUOM. 21.9. klo 15 - 16</p><p>torstaisin Aistihuoneessa klo 14 - 15</p><p>26.10., 16.11.,</p><p>HUOM. 30.11. klo 15 - 16</p><p>Syyslomalla 16. - 20.10. ei ole läksykerhoa.</p><p>Läksykerhotoiminnasta vastaa Iftin-seura ry, <a href=\"http://www.iftinseura.fi\">www.iftinseura.fi</a></p><p>Lisätietoa seuran muusta toiminnasta saat Facebookista: Iftin-seura ry ja Instagramista: iftinseurary</p>" }, "name": { "fi": "Läksykerho" }, "short_description": { "fi": "Tervetuloa läksykerhoon Entressen kirjastoon! Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-15 Entressen kirjastossa Espoon keskuksessa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267455/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267458", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3814, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-31T13:27:25.857831Z", "last_modified_time": "2024-02-06T13:38:44.963342Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DE6FFA2F-400F-40CD-AD4D-8AAAED8EF68F}/105435", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-31T13:40:33.514821Z", "last_modified_time": "2023-11-30T08:20:03.530934Z", "date_published": "2023-08-30T21:00:00Z", "start_time": "2023-10-31T12:00:00Z", "end_time": "2023-10-31T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa läksykerhoon Entressen kirjastoon!</p><p>Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-15 Entressen kirjastossa Espoon keskuksessa. Tarkempi paikka on vaihdellen Sininen huone tai Aistihuone.</p><p>Läksykerhossa on ohjaaja, joka auttaa lapsia läksyjen teossa sekä tukee suomen kielen vahvistumista. Suomen kieltä vahvistetaan muun muassa keskustelemalla ja yhdessä lukemalla. Lisäksi läksykerhossa on muuta toimintaa kuten liikkumista, leikkiä ja askartelua. Kerhon aikana on tarjolla välipalaa.</p><p>Lisätietoja läksykerhosta saat laittamalla sähköpostia <a href=\"mailto:toimisto@iftinseura.fi\">toimisto@iftinseura.fi</a> tai soittamalla 044 240 7526.</p><p>tiistaisin Sinisessä huoneessa klo 14 - 15</p><p>12.9., 26.9., 3.10., 10.10., 31.10., 14.11., 21.11., 5.12., 12.12.</p><p>tiistaisin Aistihuoneessa klo 14 - 15</p><p>5.9., 19.9., 24.10., 7.11.</p><p>torstaisin Sinisessä huoneessa klo 14 - 15</p><p>7.9., 14.9., 28.9., 5.10., 12.10., 2.11., 9.11., 23.11., 7.12., 14.12.</p><p>HUOM. 21.9. klo 15 - 16</p><p>torstaisin Aistihuoneessa klo 14 - 15</p><p>26.10., 16.11.,</p><p>HUOM. 30.11. klo 15 - 16</p><p>Syyslomalla 16. - 20.10. ei ole läksykerhoa.</p><p>Läksykerhotoiminnasta vastaa Iftin-seura ry, <a href=\"http://www.iftinseura.fi\">www.iftinseura.fi</a></p><p>Lisätietoa seuran muusta toiminnasta saat Facebookista: Iftin-seura ry ja Instagramista: iftinseurary</p>" }, "name": { "fi": "Läksykerho" }, "short_description": { "fi": "Tervetuloa läksykerhoon Entressen kirjastoon! Läksykerhoon ovat tervetulleita kaikki alakouluikäiset lapset. Läksykerho kokoontuu kahdesti viikossa, tiistaisin ja torstaisin klo 14-15 Entressen kirjastossa Espoon keskuksessa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267458/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270093", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5719, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-27T08:26:34.883784Z", "last_modified_time": "2023-10-27T08:26:34.883802Z", "name": "", "url": "https://www.helmet.fi/download/noname/{13093680-8636-4CEA-AA20-A669F6C7922B}/107071", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5719/?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-10-27T08:26:34.866895Z", "last_modified_time": "2023-11-30T07:20:52.317710Z", "date_published": "2023-10-26T21:00:00Z", "start_time": "2023-11-30T14:00:00Z", "end_time": "2023-11-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kauhutarinoita lapsille -tapahtuma on valitettavasti peruttu 30.11.2023. Pahoittelemme!<br><br> Kauhutarinahetki vähintään seitsemän vuotiaille lapsille.</p>" }, "name": { "fi": "PERUTTU: Kauhutarinoita lapsille" }, "short_description": { "fi": "Kauhutarinahetki vähintään seitsemän vuotiaille lapsille." }, "location_extra_info": { "fi": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270093/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271721", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?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/helmet:11916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6324, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-29T13:21:41.276865Z", "last_modified_time": "2023-11-29T13:21:41.276885Z", "name": "", "url": "https://www.helmet.fi/download/noname/{0AF80A95-B3D4-4944-8154-7C3229A38F40}/107786", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6324/?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-11-29T13:21:41.254819Z", "last_modified_time": "2023-11-29T16:21:53.557612Z", "date_published": "2023-11-29T12:15:00Z", "start_time": "2024-01-10T11:00:00Z", "end_time": "2024-01-10T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Enter ry:n maksutonta tietotekniikkaopastuksia on tarjolla Kallion kirjastossa ajanvarauksella keväällä <strong>keskiviikkoisin </strong><b>11.1. - 21.5. </b><strong>2024 </strong><b>kello 13 - 15 . </b></p><p>Opastukset järjestetään Ryhmätyötila Otsossa. Varaa tunnin opastusaika kirjastosta tai soittamalla numeroon puh. 09 310 85 053. Kerro varausta tehdessäsi, millainen laite sinulla on. Jos sinulla on selkeä ongelma, johon tarvitset apua, kuvaile ongelma mahdollisimman tarkasti. <strong>Kallion opastajat eivät opasta iPad eikä iPhone -laitteisiin eikä Mac-läppäreihin liittyvissä ongelmissa. </strong> Ota mukaan omat laitteesi sekä tarvittavat tunnukset ja salasanat. Jos et pääse opastukseen, soita kirjastoon ja peru tai muuta opastusaika. </p><p>Ajanvaraukset kevään opastuksiin alkavat tammikuussa. </p><p>Enter ry on tieto- ja viestintätekniikasta sekä vapaaehtoistoiminnasta kiinnostuneiden eläkeläisten yhdistys. Yhdistyksen kotisivu: <a href=\"https://www.entersenior.fi/\">Enter ry</a>.</p><p> <br> ***<br> Kallion kirjasto<br> Viides linja 11<br> (09) 310 85053<br><a href=\"https://www.facebook.com/kirjastokallio/\"><u>Kallion kirjasto Facebookissa</u></a></p>" }, "name": { "fi": "Enter-opastukset" }, "short_description": { "fi": "Maksutonta tietokoneopastusta" }, "location_extra_info": { "fi": "Ryhmätyötila Otso, ensimmäinen kerros" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271721/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271744", "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: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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6327, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-29T14:22:10.772811Z", "last_modified_time": "2023-11-29T14:22:10.772839Z", "name": "", "url": "https://www.helmet.fi/download/noname/{44188B60-CDA5-4DB7-8443-39B72796DC72}/107803", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6327/?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-11-29T14:22:10.743021Z", "last_modified_time": "2023-11-29T14:22:10.847222Z", "date_published": "2023-11-29T13:22:00Z", "start_time": "2024-01-18T15:00:00Z", "end_time": "2024-01-18T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa kirjallisuusiltaan, jonka aiheena on Arvo Tuomisen uusin kirja Riisutut naamiot, särkyneet unelmat.</p><p>Tietokirjailijana ja dokumentaristina tunnetuksi tullut Arvo Tuominen käsittelee esityksessään Suomen ja Venäjän välisiä suhteita, niiden tulevaisuuden näkymiä, Ukrainan sotaa sekä Venäjän ajamaa moninapaista maailmanjärjestystä.</p><p>Tuominen esittelee näkemyksiään uudesta kirjastaan Riisutut naamiot, särkyneet unelmat ja pohtii sen pohjalta mm. miksi Venäjä hukkaa toistuvasti mahdollisuutensa rakentaa oikeudenmukaista ja toimivaa yhteiskuntaa.</p><p>Tuominen on tehnyt useita Suomen ja Venäjän suhteita käsitteleviä dokumenttielokuvia sekä kirjoja.</p><p>Tilaisuuden järjestetää Karjala Klubi ja se on avoin kaikille. </p>" }, "name": { "fi": "Kirjailijavieraana Arvo Tuominen" }, "short_description": { "fi": "Tervetuloa kirjallisuusiltaan, jonka aiheena on Arvo Tuomisen uusin kirja Riisutut naamiot, särkyneet unelmat." }, "location_extra_info": { "fi": "3. krs. Saarikoski-matto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271744/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271745", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-29T14:22:02.531982Z", "last_modified_time": "2023-11-29T14:22:02.532004Z", "name": "", "url": "https://www.helmet.fi/download/noname/{33916711-1FCA-4CC4-B673-BBF4EE6CEE88}/107800", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6326/?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-11-29T14:22:02.512842Z", "last_modified_time": "2023-11-29T14:22:02.599733Z", "date_published": "2023-11-29T13:21:55.973000Z", "start_time": "2023-12-20T13:00:00Z", "end_time": "2023-12-20T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tapahtumapaikka: Itäkeskuksen kirjasto ja kulttuurikeskus Stoan aula</p><p>Tapahtuma-aika: ke 20.12. klo 15-19</p><p>Vuoden pisintä yötä juhlistava Yalda kutsuu sinut, perheesi ja ystäväsi kirjastoon nauttimaan runoudesta, musiikista, ruuasta, tanssista, askartelusta ja kirjallisuudesta!</p><p>Yaldā yö (farsin kielellä: شب یلدا shab-e yalda) on talvipäivänseisauksen aikana vietettävä ikivanha juhla, jolloin perheet ja ystävät kokoontuvat yhteen syömään, juomaan sekä lukemaan runoutta pitkälle yöhön. Yalda toimii inspiraationa tapahtumassamme, jonka ohjelmaan kuuluu musiikki-, tanssi- ja runoesitysten ohessa ruoka-, kirja- ja korumyyntiä. Tapahtumassa pääset myös askartelemaan omenasta ja neilikasta Yalda yön perinteen mukaisia lahjoja läheisillesi!</p><p>Tapahtuman ruoka-, kirja- ja vaatemyyntipisteet löydät Stoan aulasta ja ravintolasta, kun taas musiikista ja runoudesta pääset nauttimaan kirjaston puolella.</p><p>Missä ja miten Yaldaa vietetään?</p><p>Yaldaa vietetään Iranissa, Irakin Kurdistanissa, Afganistanissa, Tadžikistanissa, Azerbaidžanissa ja Turkissa. Yalda yön aikana on tapana lukea ja lausua Divan-e Hafezin runoja, joita löytyy useiden iranilaisten perheiden kirjahyllyistä. Juhlan perinteeseen kuuluu lisäksi granaattiomenoiden, vesimelonien ja pähkinöiden nauttiminen. Hedelmien punainen väri symboloi perinteisesti aamunkoittoa sekä elämän ’hehkua’. </p><p>Tapahtumassa esiintyvät muiden muassa tutkija Joonas Maristo ja muusikko Marouf Majidi, muusikot Goran Goran ja Rebwar, tanssija Safa Solati, kirjailija Jyrki Kiiskinen, runoilija Lauri Vanhala, laulaja Kamand sekä runoilija Hamid.</p><p>Esitysten aikataulu julkaistaan lähempänä tapahtumaa.</p><p>Iloista Yaldaa! Shabe Yalda Mubarak!</p>" }, "name": { "fi": "Yaldā – runouden, musiikin ja tanssin yö" }, "short_description": { "fi": "Vuoden pisintä yötä juhlistava Yalda kutsuu sinut, perheesi ja ystäväsi kirjastoon nauttimaan runoudesta, musiikista, ruuasta, tanssista, askartelusta ja kirjallisuudesta!" }, "location_extra_info": { "fi": "Kirjastosali, 2.kerros & Stoan aula" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271745/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271746", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6325, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-29T14:21:40.156206Z", "last_modified_time": "2023-11-29T14:21:40.156230Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7A900862-EF74-47CB-81D8-C3FDC9C3A480}/107804", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6325/?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-11-29T14:21:40.129138Z", "last_modified_time": "2023-11-29T14:21:40.261428Z", "date_published": "2023-11-29T13:26:16.493000Z", "start_time": "2023-12-09T11:00:00Z", "end_time": "2023-12-09T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p> <strong>Kulttuurienvälistä keskustelua miehille</strong> </p><p>Tapahtumapaikka: Itäkeskuksen kirjaston Kanerva-kokoushuone</p><p>Tapahtuma-aika: Lauantai 9.12. klo 13–15</p><p>Millaista on olla suomalainen mies? Miltä tuntuu olla Suomeen muualta muuttanut isä, joka pyrkii sopeutumaan uudenlaisiin ajatuksiin miehen roolista perheessä sekä yhteiskunnassa? Kokoonnumme näiden miehuutta, isyyttä ja kulttuurisia kohtaamisia sivuavien teemojen äärelle tässä suomalaisten ja maahan muuttaneiden miesten yhteisessä kohtaamiskahvilassa Itäkeskuksen kirjastolla.</p><p>Keskustelun pääasiallinen kieli on suomi, mutta tapahtumaan voi osallistua, vaikka kielitaito ei olisi erityisen vahva. Tapahtuman järjestävät Mirsal ry, Miessakit ry ja Roda ry yhteistyössä Itäkeskuksen kirjaston kanssa. Tarjolla on osallistujille kahvia, teetä ja pullaa.</p><p>Tervetuloa keskustelemaan miesten kesken! Ilmoittaudu mukaan täällä: <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfjM-dbxMqZyIsXchyninUS8OJX0iGLYI3cBa1ydVUfwg0s5Q/viewform?usp=sf_link\" title=\"https://docs.google.com/forms/d/e/1faipqlsfjm-dbxmqzyisxchyninus8ojx0iglyi3cba1ydvufwg0s5q/viewform?usp=sf_link\">https://docs.google.com/forms/d/e/1FAIpQLSfjM-dbxMqZyIsXchyninUS8OJX0iGLYI3cBa1ydVUfwg0s5Q/viewform?usp=sf_link</a></p>" }, "name": { "fi": "Kulttuurienvälistä keskustelua miehille" }, "short_description": { "fi": "Millaista on olla suomalainen mies? Miltä tuntuu olla Suomeen muualta muuttanut isä, joka pyrkii sopeutumaan uudenlaisiin ajatuksiin miehen roolista perheessä sekä yhteiskunnassa? Kokoonnumme näiden miehuutta, isyyttä ja kulttuurisia kohtaamisia sivuavien teemojen äärelle tässä suomalaisten ja maahan muuttaneiden miesten yhteisessä kohtaamiskahvilassa Itäkeskuksen kirjastolla." }, "location_extra_info": { "fi": "Kokoushuone Kanerva, 1.kerros" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271746/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271704", "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: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:10801/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6323, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-29T13:21:31.529266Z", "last_modified_time": "2023-11-29T13:21:31.529286Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B7C667A0-0154-4C95-9CD7-492D1CCB6D2E}/107774", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6323/?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": [], "created_time": "2023-11-29T12:21:34.676967Z", "last_modified_time": "2023-11-29T13:21:31.571344Z", "date_published": "2023-11-29T09:24:00Z", "start_time": "2023-12-17T11:00:00Z", "end_time": "2023-12-17T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<h3>Joulupaja kirjaston Pajassa sunnuntaina 17.12.2023 klo 13-17 </h3><p>Oletko sinäkin aina halunnut tietää miltä tuntuisi olla yksi joulupukin ahkerista tontuista? <br> Ison Omenan Pajassa kurkataan yhdessä asiakkaiden kanssa Korvatunturille ja haetaan jouluista tunnelmaa joulupukin pajan hengessä; tehdään ja tuunataan joululahjat ja kuusenkoristeet itse!</p><p>Pajassa saat opastusta pajan laitteisiin sekä pääset tutustumaan ja kokeilemaan niiden käyttöä yhdessä kirjaston henkilökunnan kanssa.</p><p>Pajaan on ideoitu valmiita malleja, joita pääsee itse tuunaamaan sekä valmistamaan, tule mukaan virittäytymään joulun tunnelmaan!</p><p> 3D-TULOSTIN<br> Joulukoriste 3D-tulostimella - opetusta mallintamiseen ja tulostukseen</p><p> VINYYLILEIKKURI JA LÄMPÖPRÄSSI<br> jouluinen kangaspainatus puuvillaiseen kassiin - tule valmistamaan omasi</p><p> LASERLEIKKURI<br> Upeat puiset ennakkoon leikatut joulukuusenkoristeet - tuunaa omasi</p><p> JOULUISTA ASKARTELUA<br> Omat ideat toteutukseen - tai tule inspiroitumaan pajan malliesimerkeistä</p><p>Kirjaston Pajan laitteita voi varata omatoimiseen käyttöön osoitteesta <a href=\"https://varaamo.espoo.fi\">varaamo.espoo.fi </a></p><p>jouluespoo </p>", "sv": "<h3>Julverkstad i biblioteket verkstaden söndagen 17.12.2023 kl. 13-17 </h3><p>Har du alltid velat veta hur det skulle vara att vara en av tomtens hårt arbetande nissar? <br> Iso Omenas bibliotekets verkstad tar vi en titt på Korvatunturi tillsammans med våra kunder och kommer i julstämning i tomtens verkstad; gör och dekorera julklappar och julgransprydnader själv!</p><p>I verkstaden guidas du genom utrustningen och du får se och prova utrustningen tillsammans med bibliotekspersonalen.</p><p>Det finns färdiga modeller i verkstaden som du själv kan justera och tillverka, kom med oss och låt julstämningen infinna sig!</p><p> 3D-SKRIVARE<br> Juldekoration med en 3D-skrivare - handledning i modellering och utskrift</p><p> VINYLSKÄRARE OCH VÄRMEPRESS<br> Juligt tygtryck på en bomullspåse - kom och gör din egen</p><p> LASERSKÄRARE<br> Fantastiska julgransdekorationer i trä - gör dina egna</p><p> HANTVERK TILL JUL<br> Förverkliga dina egna idéer - eller låt dig inspireras av exemplen i verkstaden</p><p>Du kan reservera verkstadsutrustning för eget bruk på <a href=\"https://varaamo.espoo.fi\">varaamo.espoo.fi </a></p><p>jouluespoo </p>", "en": "<h3>Christmas workshop in the library's Makerspace on Sunday 17.12.2023 13:00-17:00</h3><p>Have you always wanted to know what it would be like to be one of Santa's hard-working elves? </p><p>In the Iso Omena's library Makerspace, we will together take a look at the Korvatunturi and get into the Christmas spirit in Santa's workshop; make and decorate Christmas presents and tree ornaments yourself!</p><p>In the Makerspace you will be guided through the equipment and you will get to see and try it out together with the library staff.</p><p>The Makerspacep has ready-made models, which you can make and tune yourself, come with us to tune into the Christmas atmosphere!</p><p> 3D-PRINTER<br> Christmas decoration 3D printer- lessons in modelling and printing</p><p> VINYL CUTTER AND HEATPRESS<br> Christmas fabric printing on a cotton bag - come and make your own</p><p> LASER CUTTER<br> Wonderful wooden Christmas tree decorations - make your own</p><p> CHRISTMAS CRAFTS<br> Bring your own ideas to life - or get inspired by the examples in the workshop</p><p>You can reserve the Makerspace equipment for your own use at the <a href=\"https://varaamo.espoo.fi\">varaamo.espoo.fi </a></p><p>jouluespoo </p>" }, "name": { "fi": "Joulupaja - one week until christmas", "sv": "Julverkstad - one week until christmas", "en": "Workshop - one week until christmas" }, "short_description": { "fi": "Oletko sinäkin aina halunnut tietää miltä tuntuisi olla yksi joulupukin ahkerista tontuista?\nIson Omenan Pajassa kurkataan yhdessä asiakkaiden kanssa Korvatunturille ja haetaan jouluista tunnelmaa joulupukin pajan hengessä; tehdään ja tuunataan joululahjat ja kuusenkoristeet itse!", "sv": "Har du alltid velat veta hur det skulle vara att vara en av tomtens hårt arbetande nissar? Iso Omenas bibliotekets verkstad tar vi en titt på Korvatunturi tillsammans med våra kunder och kommer i julstämning i tomtens verkstad; gör och dekorera julklappar och julgransprydnader själv!", "en": "In the Iso Omena's library Makerspace, we will together take a look at the Korvatunturi and get into the Christmas spirit in Santa's workshop; make and decorate Christmas presents and tree ornaments yourself!" }, "location_extra_info": { "fi": "paja", "sv": "paja", "en": "paja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271704/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271716", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?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:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6321, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-29T13:21:01.695567Z", "last_modified_time": "2023-11-29T13:21:01.695585Z", "name": "", "url": "https://www.helmet.fi/download/noname/{606029F3-5FAF-455C-BA21-F4D096E84000}/107784", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6321/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p6165/?format=api" } ], "created_time": "2023-11-29T13:21:01.674956Z", "last_modified_time": "2023-11-29T13:21:01.835864Z", "date_published": "2023-11-29T12:00:00Z", "start_time": "2023-12-01T11:00:00Z", "end_time": "2023-12-01T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>“<strong>Muusikoilla on usein erittäin mielenkiintoiset ja monipuoliset elämät joista kirjoitetaan loputtomiin, tähän olen kuitenkin kerännyt oman suosikkini.</strong><br><br> Kyse ei niinkään ole lempiartistista vaan miten teos on kirjoitettu ja kuinka mielenkiintoiseksi. Musiikin maailma näkyy joka kirjassa aivan erillaisena, johtunee se sitten vuosikymmenestä, suosiosta tai artistien kotimaasta.”<br><br> Pysähdy hetkeksi ja tule kuuntelemaan Myn vinkkejä parhaista musiikki elämäkerroista!<br> Pop up -vinkkaustapahtuma ensimmäisen kerroksen käytävässä perjantaina 1.12.2023 klo 13-14</p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 850 53</p><p> <a href=\"https://www.facebook.com/kirjastokallio\">facebook.com/kirjastokallio</a> </p>" }, "name": { "fi": "Musiikki elämäkertojen vinkkaus -pop up" }, "short_description": { "fi": "Pysähdy hetkeksi ja tule kuuntelemaan Myn vinkkejä parhaista musiikki elämäkerroista! Lue lisää..." }, "location_extra_info": { "fi": "Ensimmäisen kerroksen galleria-käytävä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271716/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265788", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45317/?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:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3378, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-17T09:25:57.470113Z", "last_modified_time": "2023-08-17T09:25:57.470134Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B6E3D1E7-F646-4F40-BC5B-5902E9AF4EA4}/105006", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3378/?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-17T07:38:30.520484Z", "last_modified_time": "2023-11-29T13:20:56.996038Z", "date_published": "2023-06-14T10:43:00Z", "start_time": "2023-11-30T08:00:00Z", "end_time": "2023-11-30T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Valitettavasti lorutuokio torstaina 30.11. on peruutettu sairastumisen vuoksi. </p><p>Hauskoja loruleikkejä ja riimien riemua leppoisassa lorutuokiossa 0-3 -v vauvoille, taaperoille ja vanhemmille Jätkäsaaren kirjastossa. </p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p><p>Tuokion kesto on n. 30 min. Tervetuloa loruttelemaan!</p>" }, "name": { "fi": "PERUUTETTU: Pienten lorutuokio" }, "short_description": { "fi": "Loruleikkejä ja riimien riemua yhdessä oman aikuisen kanssa!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265788/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265791", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45317/?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:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3378, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-17T09:25:57.470113Z", "last_modified_time": "2023-08-17T09:25:57.470134Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B6E3D1E7-F646-4F40-BC5B-5902E9AF4EA4}/105006", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3378/?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-17T07:35:36.923633Z", "last_modified_time": "2023-11-29T13:20:26.021431Z", "date_published": "2023-06-14T10:43:00Z", "start_time": "2023-11-16T08:00:00Z", "end_time": "2023-11-16T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Valitettavasti lorutuokio torstaina 30.11. on peruutettu sairastumisen vuoksi. </p><p>Hauskoja loruleikkejä ja riimien riemua leppoisassa lorutuokiossa 0-3 -v vauvoille, taaperoille ja vanhemmille Jätkäsaaren kirjastossa. </p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p><p>Tuokion kesto on n. 30 min. Tervetuloa loruttelemaan!</p>" }, "name": { "fi": "PERUUTETTU: Pienten lorutuokio" }, "short_description": { "fi": "Loruleikkejä ja riimien riemua yhdessä oman aikuisen kanssa!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265791/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265793", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45317/?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:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3378, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-17T09:25:57.470113Z", "last_modified_time": "2023-08-17T09:25:57.470134Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B6E3D1E7-F646-4F40-BC5B-5902E9AF4EA4}/105006", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3378/?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-17T07:32:49.346231Z", "last_modified_time": "2023-11-29T13:19:57.053923Z", "date_published": "2023-06-14T10:43:00Z", "start_time": "2023-11-02T08:00:00Z", "end_time": "2023-11-02T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Valitettavasti lorutuokio torstaina 30.11. on peruutettu sairastumisen vuoksi. </p><p>Hauskoja loruleikkejä ja riimien riemua leppoisassa lorutuokiossa 0-3 -v vauvoille, taaperoille ja vanhemmille Jätkäsaaren kirjastossa. </p><p>Vapaa pääsy, ei ennakkoilmoittautumista!</p><p>Tuokion kesto on n. 30 min. Tervetuloa loruttelemaan!</p>" }, "name": { "fi": "PERUUTETTU: Pienten lorutuokio" }, "short_description": { "fi": "Loruleikkejä ja riimien riemua yhdessä oman aikuisen kanssa!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265793/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:aggbwjxrhq", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "" }, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u4804001010", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:aggbwjxkim/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:aggbwjxm4a/?format=api" } ], "images": [ { "id": 6320, "has_user_editable_resources": true, "license": "event_only", "license_url": "", "created_time": "2023-11-29T12:51:50.451004Z", "last_modified_time": "2023-11-29T12:56:24.006380Z", "name": "Vertaisopastusta", "url": "https://bin.yhdistysavain.fi/1555484/comgaZJPtcSTusBwhVOQ0Vd9Nx/rsz_enterry-11.jpg", "cropping": "", "photographer_name": "", "alt_text": "Opastustilanne", "data_source": "helsinki", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6320/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-11-29T12:56:26.183248Z", "last_modified_time": "2023-11-29T12:56:26.183270Z", "date_published": null, "start_time": "2024-01-10T11:00:00Z", "end_time": "2024-01-10T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "" }, "provider_contact_info": null, "provider": { "fi": "Enter ry" }, "description": { "fi": "<p>Enter ry:n maksutonta tietotekniikkaopastuksia on tarjolla Kallion kirjastossa ajanvarauksella keväällä <strong>keskiviikkoisin 11.1. - 21.5. 2024 kello 13 - 15 . </strong></p><p>Opastukset järjestetään Ryhmätyötila Otsossa. Varaa tunnin opastusaika kirjastosta tai soittamalla numeroon puh. 09 310 85 053. Kerro varausta tehdessäsi, millainen laite sinulla on. Jos sinulla on selkeä ongelma, johon tarvitset apua, kuvaile ongelma mahdollisimman tarkasti. Ota mukaan omat laitteesi sekä tarvittavat tunnukset ja salasanat. Jos et pääse opastukseen, soita kirjastoon ja peru tai muuta opastusaika. </p><p>Ajanvaraukset kevään opastuksiin alkavat tammikuussa. </p><p>Enter ry on tieto- ja viestintätekniikasta sekä vapaaehtoistoiminnasta kiinnostuneiden eläkeläisten yhdistys. Yhdistyksen kotisivu: <a href=\"https://www.entersenior.fi/\">Enter ry</a>.</p>" }, "name": { "fi": "Tietotekniikkaopastukset senioreille" }, "short_description": { "fi": "Vertaisdigiopastusta senioreille. Varaa tunnin aika etukäteen. " }, "location_extra_info": { "fi": "Ryhmätyötila Otso, ensimmäinen kerros" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:aggbwjxrhq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271703", "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: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:10801/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6314, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-29T12:21:18.220514Z", "last_modified_time": "2023-11-29T12:21:18.220535Z", "name": "", "url": "https://www.helmet.fi/download/noname/{34FD07B9-73D2-4050-9487-DC9DD10EDF12}/107769", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6314/?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-11-29T12:21:18.193057Z", "last_modified_time": "2023-11-29T12:21:18.308989Z", "date_published": "2023-11-29T09:11:36.187000Z", "start_time": "2023-12-09T13:00:00Z", "end_time": "2023-12-09T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<h3>Kauneimmat joululaulut la 9.12. Stagella klo 15-16 </h3><p>Tervetuloa laulamaan Ison Omenan kirjaston Stagelle kauneimpia joululauluja lauantaina 9.12. klo 15-16. Laulattamassa on kanttori Sanna Franssila Olarin seurakunnasta. </p><p>Kauneimmat joululaulut soivat maailman lasten hyväksi. Tilaisuudessa on mahdollisuus antaa lahja heille.</p><p>Chapple Iso Omenan sivuille <a href=\"https://chapple.fi/la-9-12-kauneimmat-joululaulut-palvelutorilla/\">tästä</a></p><p>jouluespoo</p>" }, "name": { "fi": "Kauneimmat joululaulut" }, "short_description": { "fi": "Tervetuloa laulamaan Ison Omenan kirjaston Stagelle kauneimpia joululauluja lauantaina 9.12. klo 15-16. Laulattamassa on kanttori Sanna Franssila Olarin seurakunnasta." }, "location_extra_info": { "fi": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271703/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271643", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8178/?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:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6283, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-27T18:21:29.503057Z", "last_modified_time": "2023-11-27T18:21:29.503082Z", "name": "", "url": "https://www.helmet.fi/download/noname/{AC9E48C4-8051-403E-A051-CE1A04373FEC}/107741", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6283/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-27T18:21:29.463833Z", "last_modified_time": "2023-11-29T12:21:17.164898Z", "date_published": "2023-11-27T17:28:00Z", "start_time": "2023-12-08T13:00:00Z", "end_time": "2023-12-08T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Juhlistamme Kirjaviidakon avajaisia pe 8.12. klo 15-17!<br><br> Kontulan kirjaston lasten tila on saanut uuden ilmeen. Olemme sisustaneet tilaa uusiksi syksyn mittaan. Marraskuussa sinne on ilmestynyt jännittävä seinämaalaus. <br><br> Avajaisissa on tavattavissa Kirjaviidakko-seinämaalauksen suunnitellut ja toteuttanut katutaiteilija, Kontula Art Schoolin perustaja Heidi Hänninen. </p><p>Vapaa pääsy kaikenikäisille! Mehutarjoilu. </p><p>Tervetuloa!</p>" }, "name": { "fi": "Kirjaviidakon avajaiset" }, "short_description": { "fi": "Juhlistamme lastentilan uutta ilmettä!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271643/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271564", "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: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6313, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-29T12:21:08.284623Z", "last_modified_time": "2023-11-29T12:21:08.284646Z", "name": "", "url": "https://www.helmet.fi/download/noname/{C3935DA4-5FF7-4A85-A785-1DF4F0F74E09}/107779", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6313/?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-11-27T10:21:05.533397Z", "last_modified_time": "2023-11-29T12:21:08.330177Z", "date_published": "2023-11-27T09:01:00Z", "start_time": "2023-12-04T15:00:00Z", "end_time": "2023-12-04T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan <strong>Mooses Mentulan</strong> ja <strong>Silja-Elisa Laitosen</strong> tuoreiden romaanien esittelyjä Oodin Saarikoski-matolle (3. krs) maanantaina 4.12. klo 17-18! Teoksia yhdistää sotatraumojen käsittely. Haastattelija on <strong>Irina Björkman</strong>. </p><p>Mooses Mentula: Toiviokoski (WSOY).<br> Toiviokoski on intensiivinen kuvaus jälleenrakennuksen Suomesta ja sammumattomasta elämänjanosta.</p><p>Silja-Elisa Laitonen: Haavat (Tammi).<br> Jatkosota on ohi, mutta lottana ollut Raakel ei saa rauhaa. Voisiko naispoliisina auttaa muita sodan runnomia? Suviranta-sarjan toinen, itsenäinen osa.</p>" }, "name": { "fi": "Sotatraumat ajankohtaisissa romaaneissa" }, "short_description": { "fi": "Tuoreita teoksia yhdistää sotatraumojen käsittely." }, "location_extra_info": { "fi": "3. krs, Saarikoski-matto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271564/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271439", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8177/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10829/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6230, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-24T12:19:56.922468Z", "last_modified_time": "2023-11-24T12:19:56.922483Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7050849F-AE24-4A70-9347-6FD23A570D05}/107688", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6230/?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-11-24T12:19:56.898585Z", "last_modified_time": "2023-11-29T12:21:04.080790Z", "date_published": "2023-11-24T11:35:00Z", "start_time": "2023-11-30T15:30:00Z", "end_time": "2023-11-30T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p> <strong>Valitettavasti tilaisuus on peruttu sairaustapauksen vuoksi!</strong> </p><p>Tervetuloa Mieli Helsingin Mielenterveys ry:n Hyvän mielen kuntokoulun luennolle! Tilaisuudessa Aada 18v. kertoo elämästään ADHD:n kanssa.</p><p>\"Moi! Mä oon Aada, 18-vuotias nuori pääkaupunkiseudulta. Mun elämään, varsinkin nuoruuteen on kuulunut paljon kaikenlaista ja haluan jakaa mun tarinasta pienen osan just teijän kanssa. Mä oon saanut 17-vuotiaana ADHD- ja epävakaan persoonallisuushäiriön diagnoosit, joista olen tulossa puhumaan teille.\"</p><p>Hyvän mielen kuntokoulu on osa Mieli Helsingin tarjoamaa kaikille avointa koulutusta ja edunvalvontatoimintaa. Koulutuksissamme luennoivat mielen hyvinvoinnin vankat ammattilaiset ja erilaiset asiantuntijat. Tutustu koulutustarjontaamme sivullamme https://www.mielenterveysseurat.fi/helsinki/.</p><p>Kuva: Gerd Altmann / Pixabay</p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Oulunkylan_kirjasto\">Oulunkylän kirjasto</a> </p>" }, "name": { "fi": "PERUTTU! Mieli ry: Elämäni ADHD:n kanssa" }, "short_description": { "fi": "PERUTTU! Tervetuloa Mieli Helsingin Mielenterveys ry:n Hyvän mielen kuntokoulun luennolle!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271439/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271572", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8325/?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:10789/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6312, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-29T09:21:29.204741Z", "last_modified_time": "2023-11-29T09:21:29.204784Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9733056F-1498-4343-B333-52DA93D31213}/107768", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6312/?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-11-27T13:21:45.199507Z", "last_modified_time": "2023-11-29T09:21:29.252528Z", "date_published": "2023-11-27T11:15:00Z", "start_time": "2023-12-13T14:00:00Z", "end_time": "2023-12-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p> <strong>UNDERGROUND SECRET</strong> -nykytanssiteos</p><p>Kitka Kollektiivin Underground Secret -teoksen liikkeellisiä teemoja ovat kasvaminen, kietoutuminen, lahoaminen ja elämän kiertokulku. Teos tutkii erilaisia kehollisia ja orgaanisia syklejä. Tanssijat muodostavat rihmaston, joka sallii eriytymisen, yhteentulemisen, täyttymisen ja tyhjentymisen. Kiinnostuksen kohteena on myös yhteydentunto ja keskinäisriippuvuus, ei vain ihmisten vaan myös kaikkien elollisten organismien välillä.</p><p>Kitka Kollektiivi on taiteellinen kokoonpano, jonka muodostavat kolme helsinkiläistä tanssin ammattilaista Katriina Kantola, Iiris Raipala ja Elina Valtonen. Kollektiivi perustettiin loppuvuodesta 2020. Tanssitaiteilijoiden erilaiset tanssitaustat ja estetiikat inspiroivat heitä haastamaan tuttuja toiminta- ja ajattelutapoja.</p><p>Teos pitää sisällään kaksi esitystä.</p><p> <a href=\"https://www.facebook.com/Kitka-Kollektiivi-103889282049546\">https://www.facebook.com/Kitka-Kollektiivi-103889282049546</a> </p>" }, "name": { "fi": "Kitka Kollektiivin tanssiesitys Herttoniemen kirjastossa" }, "short_description": { "fi": "UNDERGROUND SECRET-nykytanssiteos Herttoniemen kirjastossa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271572/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19239, "next": "