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=673
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=674", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=672" }, "data": [ { "id": "helmet:270122", "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:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10794/?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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5732, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-27T12:23:46.694533Z", "last_modified_time": "2023-10-27T12:23:46.694551Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7B14A6C9-DF74-4DE4-9424-544818DC7F90}/107086", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5732/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-27T12:23:46.678756Z", "last_modified_time": "2023-11-14T06:22:38.826986Z", "date_published": "2023-10-27T10:00:00Z", "start_time": "2023-11-26T14:00:00Z", "end_time": "2023-11-26T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lau Nau Kallion kirjastossa, tule sinäkin!" }, "location_extra_info": { "fi": "Kupolisali, 1.krs" }, "info_url": null, "description": { "fi": "<p>Kallion kirjaston kolmannessa musasunnuntaissa Kupolisalin suojissa esiintyy muusikko ja äänitaiteilija Lau Nau eli Laura Naukkarinen, jonka lempeän kokeelliset folk-laulelmat tarjoavat kuulijoilleen välähdyksiä kauneudesta. Ennen keikkaa Lauraa haastattelee Juuso Paaso. Tilaisuuteen on vapaa pääsy.</p><p> <br> Turussa ja Kemiössä asuvan Lau Naun eli Laura Naukkarisen (s. 1980) musiikissa on elementtejä elektroakustisesta kokeellisuudesta, folkmusiikin perinteistä ja jopa klassisesta nykymusiikista. Fonal Records julkaisee marraskuussa hänen kymmenennen pitkäsoittonsa, Samuli Kosmisen tuottaman yhtyelevyn Aphrilis. Laura on tehnyt myös elokuvamusiikkia ja monikanavaisia ääni-installaatioita.<br><br><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DNvbAZcu8VCg&data=05%7C01%7CMarika.Nikula%40hel.fi%7C6d9a5078d7ba4dcc0dca08dbd61e0f40%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638339196856189605%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=rk4HpQUCJG5p51zJ2GqT1buiCtal5ywhjVWTKY0sOMw%3D&reserved=0\" title=\"Alkuperäinen URL-osoite: https://www.youtube.com/watch?v=NvbAZcu8VCg. Napsauta tai napauta, jos luotat tähän linkkiin.\">https://www.youtube.com/watch?v=NvbAZcu8VCg</a><br><br> Kallion musasunnuntaissa tavataan juttutuokion ja pienimuotoisen keikan merkeissä ajankohtaisia omaehtoisen musiikin tekijöitä. Lainattavissa on myös vieraiden suosituksia kaupunginkirjaston kokoelmista. </p><p>Lämpimästi tervetuloa!</p><p>Kuva: Katri Naukkarinen</p> <p> *** </p> <p> Kallion kirjasto <br>Viides linja 11 <br>00530 Helsinki </p> <p> 09 310 850 53 </p> <p> <a href=\"https://www.facebook.com/kirjastokallio/?ref=pages_you_manage\"> facebook.com/kirjastokallio </a> </p>" }, "name": { "fi": "KallioKipinöi: Kallion kirjaston musasunnuntait #3: Lau Nau" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270122/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269148", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11383/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5022, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-04T18:18:06.290981Z", "last_modified_time": "2023-10-04T18:18:06.291001Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BC62040A-05EC-4CE7-BDA2-8341060C2C6B}/106423", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5022/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-10-04T19:22:39.201184Z", "last_modified_time": "2023-11-14T06:22:38.758490Z", "date_published": "2023-10-03T21:00:00Z", "start_time": "2023-11-26T13:00:00Z", "end_time": "2023-11-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "K-POP on eteläkorealainen energinen tanssityyli, jota tanssitaan korealaisen popmusiikin tahdissa.", "ru": "Не знаете, чем заняться в воскресный день? Конечно же, нужно посетить танцевальное K-POP шоу!" }, "location_extra_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa K-POP Dance Show:lle su 26.11. klo 15.00 Sellon kirjastoon, lava. Show:n aikana esiintyvät WOLA-tanssiryhmän jäsenet.</p><p>Show:n ohjelma:</p><p>klo 15.00 - 16.00 Perfomances </p><p>klo 16.00 - 17.00 Random Play Dance</p><p> <em>Mikä on K-POP?</em> </p><p>K-POP on eteläkorealainen energinen tanssityyli, jota tanssitaan korealaisen popmusiikin tahdissa. Esiityjämme ovat taitavia K-POP soolotanssijoita ja ryhmiä.</p><p> <em>Mikä on Random Play Dance?</em> </p><p>Random Play Dancessa K-POP -kappaleiden kertosäkeitä soitetaan satunnaisessa järjestyksessä. Mikäli osallistuja tietää kertosäkeen koreografian, hän voi tulla keskelle tanssimaan. </p><p>Vapaa pääsy.</p><p>************<br> Tapahtuma kuuluu Venäjänkielisen kirjaston kulttuurimaratonin ohjelmaan. Kulttuurimaraton pidetään 13.-26.11.2023. Projekti on Suomen Opetus- ja kulttuuriministeriön rahoittama ja sen iskulause on \"Kulttuuri yhdistää ihmiset\".</p><p> <a href=\"https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Vinkit/Venajankielisen_kirjaston_kulttuurimarat(269330)\">Kulttuurimaratonin koko ohjelma</a> </p>", "ru": "<p>Не знаете, чем заняться в воскресный день? Конечно же, нужно посетить танцевальное K-POP шоу<strong> 26 ноября в 15.00 в библиотеке Селло!</strong> (сцена)</p><p>Программа шоу: </p><p>15.00 - 16.00 K-POP представление танцоров группы WOLA</p><p>16.00 - 17.00 Random Play Dance (участвуют все желающте зрители)</p><p> <em>Что такое K-POP?</em> </p><p>К-POP — южнокорейский энергичный танцевальный стиль, исполняемый в ритме корейской поп-музыки. В нашем концерте будут представлены как сольные номера, так и выступления групп.</p><p> <em>Что такое Random Play Dance?</em> </p><p>В этом танце припевы к-поп песен включаются в случайном порядке. Если участник знает хореографию припева, он может выйти в середину зала и потанцевать.</p><p>Вход свободный. Добро пожаловать!</p><p>**********<br> Мероприятие входит в программу \"Культурного марафона Русскоязычной библиотеки Финляндии\", проходящего с 13 по 26 ноября 2023. \"Культурный марафон Русскоязычной библиотеки\" проходит при поддержке Министерства образования и культуры Финляндии. Слоган проекта: \"Культура объединяет людей\".</p><p> <a href=\"https://www.helmet.fi/ru-RU/Rekomenduem/Chto_pochitat/Kulturnyi_marafon_Russkoiazychnoi_biblio(269318)\">Полная программа Культурного марафона</a> </p>" }, "name": { "fi": "K-POP Dance Show", "ru": "K-POP танцевальное шоу" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269148/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269397", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5275, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-09T14:28:06.407000Z", "last_modified_time": "2023-10-09T14:28:06.407018Z", "name": "", "url": "https://www.helmet.fi/download/noname/{32465794-4D78-4C58-8AE9-33740F65F552}/106623", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5275/?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-10-09T14:28:06.241063Z", "last_modified_time": "2023-11-14T06:22:38.684900Z", "date_published": "2023-10-09T11:51:27.993000Z", "start_time": "2023-11-26T12:00:00Z", "end_time": "2023-11-26T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa musiikilliseen teatteriesitykseen kirjastoon!" }, "location_extra_info": { "fi": "Mika Waltari -sali, 4. krs" }, "info_url": null, "description": { "fi": "<p>“Vahtikoira Veikolla on tylsää. Sikatylsää! Ei vaan KOIRATYLSÄÄ!<br><br> Mitähän kaikkea Veikko keksii jäädessään yksin kotiin?<br><br> Ainakin leivotaan Vahtikoiran vieraanvaraa<br> ja leikitetään kirppusirkusta. Ja tanssitaan Shabadidabadidaa!<br><br> Esityksen kesto: 45 min.<br> Esityksen ikäsuositus: yli 3 vuotiaille<br><br> Työryhmä:<br> Käsikirjoitus: Anja Erämaja<br> Musiikin sävellys ja sovitus: Tuija Rantalainen<br> Ohjaus: Elina Hagelin<br> Esiintyjät: Veini Nupponen, näyttelijä (Vahtikoira Veikko) ja Tuija Rantalainen, muusikko-laulaja<br> Puvustus: Annina Nevantaus ja Jenni Nykänen<br> Lavastus: Hanna Erämaja<br><br> Tervetuloa musiikilliseen teatteriesitykseen kirjastoon!<br><br><a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Toolon_kirjasto\">Töölön kirjasto</a></p><p>Kuva: Juha Sihtola</p>" }, "name": { "fi": "Veikko tahtoo ulos - lasten musiikkiteatteriesitys" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269397/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268641", "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/helmet:11767/?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: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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4864, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-21T09:35:59.537044Z", "last_modified_time": "2023-09-21T09:35:59.537061Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B9DE0D23-F596-4878-8D3E-927A23C974EF}/106067", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4864/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-21T09:35:58.748319Z", "last_modified_time": "2023-11-14T06:22:38.617969Z", "date_published": "2023-09-21T07:17:58.703000Z", "start_time": "2023-11-26T12:00:00Z", "end_time": "2023-11-26T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "TeaterEST esitab: eestikeelsed jõululaulud lahedas kuues. Tule kuulama ja kaasa laulma 26.11 kell 14.00" }, "location_extra_info": { "fi": "Stage" }, "info_url": null, "description": { "fi": "<p>TeaterEST esitab: </p><p>eestikeelsed jõululaulud lahedas kuues.</p><p>Tule kuulama ja kaasa laulma 26.11 kell 14.00</p><p>Stage (Iso Omena Raamatukogu)</p>" }, "name": { "fi": "Vironkieliset joululaulut" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268641/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270378", "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:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10659/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5869, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-06T12:22:33.831368Z", "last_modified_time": "2023-11-06T12:22:33.831385Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6A6237BD-E926-4972-A3D6-7C16455C4A71}/107276", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5869/?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-11-06T12:22:33.814640Z", "last_modified_time": "2023-11-14T06:22:38.551578Z", "date_published": "2023-11-06T11:01:15.597000Z", "start_time": "2023-11-26T09:00:00Z", "end_time": "2023-11-26T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Työpaja on suunnattu perheille ja siellä askarrellaan omia minireppuja monenlaisine sisältöineen. Tervetuloa!" }, "location_extra_info": { "fi": "Sininen huone" }, "info_url": null, "description": { "fi": "<p>Miltä näkymätön reppu näyttää? Miltä se tuntuu? Entä mitä sen sisällä oikein on? Avoimessa Näkymätön reppu-työpajassa jokainen saa tuunata oman näkymättömän reppunsa näkyväksi ja taiteilla sen sisälle omannäköisiä asioita. Erilaisia materiaaleja hyödyntävä työpaja perustuu herkkyyttä käsittelevään Näkymätön reppu-kirjaan. Työpajan tarjoaa erityisherkkien yhdistys HSP Suomi ry., ja sen ohjaa kuvittaja-lastenkirjailija Maria Vilja. Lämpimästi tervetuloa!</p>" }, "name": { "fi": "Näkymätön reppu -työpaja" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270378/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267051", "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: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:12039/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3759, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-29T13:45:13.472860Z", "last_modified_time": "2023-08-29T13:45:13.472889Z", "name": "", "url": "https://www.helmet.fi/download/noname/{A3B80136-2043-4CFC-9786-0A547A79B1DB}/105318", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3759/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-29T13:45:13.296338Z", "last_modified_time": "2023-11-14T06:22:38.485271Z", "date_published": "2023-08-29T12:02:00Z", "start_time": "2023-08-29T11:00:00Z", "end_time": "2023-11-25T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kysy energia-asiantuntijalta!" }, "location_extra_info": null, "info_url": null, "description": { "fi": "<p>Energia-asiantuntija on paikalla keskiviikkoisin klo 14-18 Kontulan kirjastolla elokuun alusta lokakuun loppuun 2023.<br><br> Tule kysymään vinkkejä energiaremonteista, materiaaleja asukkaiden energiansäästöstä tai pyydä energia-asiantuntija mukaan taloyhtiösi hallituksen palaveriin! <br><br> Helsingin kaupungin energianeuvonta on maksuton ja puolueeton palvelu helsinkiläisille taloyhtiöille. <br><br> Ei ajanvarausta. Vapaa pääsy. </p><p>Ota yhteyttä ja/tai lue lisää!<br><br> Sähköposti: energiaremontti@hel.fi<br> Verkkosivut: <a href=\"http://hel.fi/energiaremontti\">hel.fi/energiaremontti</a></p><p>.</p><p>Kuva: Pexels / Pixabay</p>" }, "name": { "fi": "Taloyhtiöiden energianeuvonta" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267051/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270321", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10593/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5847, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-03T13:22:58.859469Z", "last_modified_time": "2023-11-03T13:22:58.859483Z", "name": "", "url": "https://www.helmet.fi/download/noname/{252313E0-FE63-47AC-A627-C5F555F4C69D}/77749", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5847/?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-03T13:22:58.849035Z", "last_modified_time": "2023-11-14T06:22:38.344415Z", "date_published": "2023-11-03T12:33:06.683000Z", "start_time": "2023-11-25T09:00:00Z", "end_time": "2023-11-25T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Suomen Postikorttiyhdistys Apollon järjestämässä tapahtumassa on esillä vanhoja joulukortteja, joulukaramellien kääreitä ja vanhoja Espoo-aiheisia postikortteja." }, "location_extra_info": { "fi": "Aula" }, "info_url": null, "description": { "fi": "<h3>Lauantaina 25.11. klo 11-16 aulassa<br> </h3><p>Suomen Postikorttiyhdistys Apollo järjestää Joulukortin Päivän Sellon kirjastossa Espoossa, Leppävaarankatu 9. Tapahtumassa on tarjolla uusia ja vanhoja joulu- ja muita postikortteja sekä muuta keräilytavaraa. Tapahtuma on avoinna klo 11-16. Tervetuloa!</p>" }, "name": { "fi": "Joulukortin päivä" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270321/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261644", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3032, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T16:04:29.380285Z", "last_modified_time": "2023-08-15T16:04:29.380309Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B6D29869-4262-4475-B38C-0F1C01BCCEE4}/96536", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3032/?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-15T16:04:29.257854Z", "last_modified_time": "2023-11-14T06:22:38.274868Z", "date_published": "2023-06-19T11:15:00Z", "start_time": "2023-11-25T08:00:00Z", "end_time": "2023-11-25T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lasten viikonloppu: Hämärähetkiä Töölön kirjaston Lastenalueella." }, "location_extra_info": null, "info_url": null, "description": { "fi": "<p>Hämäränhetkinä mielikuvitus lentää ja kirjastossa kuvitellaan pimeässä viihtyviä olentoja. </p><p>Tervetuloa Töölön kirjastoon kuuntelemaan ja keksimään tarinoita, askartelemaan ja viettämään hauskoja hämärähetkiä! </p><p>Kuva: Annamari Ylianttila</p>" }, "name": { "fi": "Lasten viikonloppu: Hämärähetkiä" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261644/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270467", "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: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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5892, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-07T15:22:11.329739Z", "last_modified_time": "2023-11-07T15:22:11.329753Z", "name": "", "url": "https://www.helmet.fi/download/noname/{EA691DDC-1AB8-448D-8443-F45B62E5B028}/107324", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5892/?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-07T15:22:11.319963Z", "last_modified_time": "2023-11-14T06:22:38.133290Z", "date_published": "2023-11-07T12:20:29.090000Z", "start_time": "2023-11-25T12:00:00Z", "end_time": "2023-11-25T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Teater EST esitab: Tuntud eestikeelsed jõululaulud uues vormis." }, "location_extra_info": { "fi": "Musalounge, 2.kerros" }, "info_url": null, "description": { "fi": "<p>Teater EST saapuu Itäkeskuksen kirjastoon esittämään tunnettuja virolaisia joululauluja uudessa muodossa!</p><p>Tule kuuntelemaan ja laulamaan kanssamme kirjaston Musa-loungeen!</p><p>___</p><p>EESTI KEELES:</p><p>Teater EST esitab:</p><p>Tuntud eestikeelsed jõululaulud uues vormis.</p><p>Tule kuulama ja kaasa laulma.</p><p>Itäkeskuse Raamatukogu (Musa-lounge)</p>" }, "name": { "fi": "Teater EST: vironkielisiä joululauluja!" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270467/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270447", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5890, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-07T15:21:54.932621Z", "last_modified_time": "2023-11-07T15:21:54.932637Z", "name": "", "url": "https://www.helmet.fi/download/noname/{0E0F12C4-DA52-4DCA-A313-7E610C96EBC8}/107316", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5890/?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-07T15:22:11.244958Z", "last_modified_time": "2023-11-14T06:22:38.065262Z", "date_published": "2023-11-07T10:19:01.037000Z", "start_time": "2023-11-25T08:00:00Z", "end_time": "2023-11-25T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jaa jouluiloa! Tule kirjastoon askartelemaan joulukortti ja jätä kortti kirjaston keräyspisteeseen. Joulupostia ikäihmisille -kampanja on käynnissä 13.11.-4.12.2023.", "sv": "Låt oss sprida julglädje tillsammans: kom och gör ett julkort i Myrbacka biblioteks julkortsverkstad.", "en": "Let's share Christmas spirit together: send a Christmas card to an elderly person!" }, "location_extra_info": { "fi": "1. kerros", "sv": "1. våning", "en": "1. floor" }, "info_url": null, "description": { "fi": "<p>Jaetaan yhdessä jouluiloa: lähetä kortti tuntemattomalle ikäihmiselle! </p><p>Tule Myyrmäen kirjastoon askartelemaan joulukortti ja jätä kortti kirjaston keräyspisteeseen. Joulupostia ikäihmisille on Siskot ja Simot –yhteisön jokavuotinen kampanja, jossa kerätään joulukortteja kotihoidon ja asumispalvelujen ikääntyneille asiakkaille. </p><h3>Ohjeet kortin tekoon: </h3><p>Askartele kortti tai kortteja kirjaston korttipajassa. </p><p>Kirjoita korttiin terveisesi, nimesi ja Siskot ja Simot (esimerkiksi Hyvää joulua! Toivottaa Maija ja Siskot&Simot) </p><p>Jätä kortti kirjaston keräyslaatikkoon. Me toimitamme kortit eteenpäin. </p><p>Järjestämme kampanjan aikana yhteensä 3 korttipajaa seuraavina lauantaina: 18.11., 25.11. ja 2.12. klo 10–15. </p><p>Voit myös tuoda valmiin kortin kirjaston keräyslaatikkoon. Keräysaika on 13.11.–4.12.2023.</p><p> <a href=\"http://siskotjasimot.fi\">Löydät lisätietoa Siskot ja Simot-yhteisön toiminnasta täältä.</a> </p><p>Kuva: Siskot ja Simot</p>", "sv": "<p>Låt oss sprida julglädje tillsammans: skicka ett kort till en åldring!</p><p>Kom och gör ett julkort i Myrbacka biblioteks julkortsverkstad. Verkstad ordnas tre gånger: 18.11., 25.11. och 2.12. kl. 10-15.</p><p>Gör så här:</p><p>Pyssla ett julkort i bibliotekeks julkortverkstad (eller ta ett färdigt kort med dig).</p><p>Skriv ditt namn på kortet samt Siskot ja Simot tex: God Jul! Önskar Siskot ja Simot och Maja.</p><p>Sätt kortet i biblioteks insamlingslådan.</p><p>Siskot ja Simot, samfundet för kreativ omsorg, arrangerar kampanjen Julpost till åldringar årligen. Under kampanjen samlas julkort till åldringar inom hemvård och serviceboende.</p><p>Insamlingstid: 13.11.-4.12.2023</p><p>Bild: Siskot ja Simot</p>", "en": "<p>Let's share Christmas spirit together: send a Christmas card to an elderly person!</p><p>In respect of Christmas Post to the Elderly - campaign, Myyrmäki library organises three Christmas card workshops: 18.11., 25.11. and 2.12. at 10am-3pm. </p><p>How to participate:</p><p>Make a card in library workshop (or bring a store bought /self-made card).</p><p>Write your name on the card and in addition Siskot ja Simot (e.g.: Merry Xmas! Greetings Siskot ja Simot and Martin).</p><p>Drop the card in library collection box.</p><p>Collecting period: 13.11.-4.12.2023</p><p>Siskot ja Simot, the society of creative caring, arranges the “Christmas Post to the Elderly” campaign every year. The aim is to collect Christmas cards for the elderly clients of home care and housing services.</p><p>Picture: Siskot ja Simot</p>" }, "name": { "fi": "Joulupostia ikäihmisille -korttipaja", "sv": "Julpost ti åldringar -julkortsverkstad", "en": "Christmas post to the elderly: card workshop" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270447/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268653", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5401, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-11T13:42:04.510957Z", "last_modified_time": "2023-10-11T13:42:04.510977Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6D708221-198C-4A96-A066-D4B03E870DE7}/106676", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5401/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-11T13:42:04.310076Z", "last_modified_time": "2023-11-14T06:22:37.988547Z", "date_published": "2023-10-11T10:50:00Z", "start_time": "2023-11-25T10:00:00Z", "end_time": "2023-11-25T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule kuulemaan kirjailijavieraidemme Virpi Hämeen-Anttilan, Ansu Kivekkään ja JP Pulkkisen ajatuksia vantaalaisuudesta ja dekkareiden kirjoittamisesta! Tilaisuuden juontaa Jenni Kokander." }, "location_extra_info": { "fi": "Lummesali" }, "info_url": null, "description": { "fi": "<p>Kun päivä on lyhyt ja yö pitkä, Tikkurilan kirjastossa syttyy valo!</p><p>Tapahtuman teemana on vantaalaisuus. Miten Vantaa kirjailijan kotipaikkana vaikuttaa kirjailijan työhön vai vaikuttaako? Entä miltä näyttää Vantaa dekkareiden miljöönä?</p><p>Tule kuulemaan kirjailijavieraidemme Virpi Hämeen-Anttilan, Ansu Kivekkään ja JP Pulkkisen ajatuksia vantaalaisuudesta ja dekkareiden kirjoittamisesta! Tilaisuuden juontaa Jenni Kokander.</p> <p>Vantaalla asuva kirjailija Virpi Hämeen-Anttila on julkaissut romaaneja, tietoteoksia, tieteellisiä artikkeleita ja kirjallisuusesseitä. Hämeen-Anttilan ensimmäinen dekkari Yön sydän on jäätä ilmestyi 2014 ja käynnisti Karl Axel Björkin tutkimuksista kertovan sarjan, jonka tapahtumat sijoittuvat 1920-luvun alun Helsinkiin.</p> <p>Vantaalaisen kirjailijan Ansu Kivekkään tuotantoon sisältyy mm. nuortenromaaneja, lastenkirjoja sekä rikos- ja jännityskirjallisuutta aikuisille. Aikuisten jännitysromaanin Perhosveitsi tapahtumat sijoittuvat Vantaalle. Kivekäs on kirjoittanut myös dokumentaarisen haastatteluromaanin Korson kriminaalit, joka kertoo korsolaisesta nuorisojoukosta rikosten poluilla 1960-1980-luvuilla.</p> <p>JP Pulkkinen on helsinkiläinen kirjailija ja toimittaja, joka on tehnyt radio- ja tv- ohjelmia. Pulkkinen on kirjoittanut useita romaaneja ja pyöräilyyn liittyvän esseekokoelman Täydellinen keksintö. Pulkkisen Vantaa-dekkarisarjan kolmas osa Lapsi punaisessa komerossa ilmestyi vuonna 2021.</p> <p>Vantaalla asuva Jenni Kokander on näyttelijä, viihteen moniottelija, juontaja, luennoitsija, koomikko ja kirjailija, joka on esiintynyt lukuisissa kotimaisissa elokuvissa ja tv-sarjoissa kuten esimerkiksi Putous. Kokanderin viimeisin, vuonna 2022 ilmestynyt romaani Yksi miljoonasta on psykologinen romaani, jossa tapahtuu henkirikos.</p><p>Tilaisuus alkaa kirjailijoiden puheenvuoroilla ja jatkuu paneelikeskusteluna. Paneelikeskustelussa pohditaan esimerkiksi kysymyksiä:</p><ul> <li>Miten kirjailija rakentaa uskottavaa miljöötä?</li> <li>Mikä on todellisen ja fiktiivisen paikan suhde?</li> <li>Miltä Vantaa näyttää dekkarin tapahtumapaikkana?</li> </ul><p>Yleisöllä on mahdollisuus osallistua paneelikeskusteluun lähettämällä kirjailijoillemme etukäteen kysymyksiä <a href=\"https://link.webropolsurveys.com/S/2CAF60D8C2787AE9\"><u>tällä lomakkeella</u></a> tai osallistumalla keskusteluun paikan päällä.</p><h2>Pakohuonepeli</h2><p>Voit osallistua myös jännittävään <strong>pakohuonepeliin Kuolema kirjastossa!</strong> Peli sopii kaikenikäisille pelaajille 12-vuotiaasta alkaen. Suositeltu ryhmäkoko on 4-6 henkilöä. Pelit alkavat tasatunnein kello 12.00, 13.00 ja 14.00. Pelinjohtajana toimii Nea Ristimäki. <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Tikkurilan_kirjasto/Tapahtumat/Kuolema_kirjastossa_pakohuone(269053)\">Ilmoittaudu pakopeliin tästä.</a></p><p>Tilaisuus järjestetään 1. kerroksen Lummesalissa. Tilaisuuden lopussa on mahdollista ostaa kirjailijoiden teoksia (maksuvälineena MobilePay) ja pyytää nimikirjoituksia.</p><p> <strong>Lämpimästi tervetuloa!</strong> </p><p> <em>Kirjailijoiden kuvat:</em> </p><p> Virpi Hämeen-Anttila: Jonne Räsänen / Otava </p><p> Ansu Kivekäs: Ville Juurikkala </p><p> JP Pulkkinen: Liisa Takala </p><p> Jenni Kokander: Otto Virtanen </p>" }, "name": { "fi": "Mustan marraskuun dekkarilauantai" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268653/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269054", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5482, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-16T10:53:31.660730Z", "last_modified_time": "2023-10-16T10:53:31.660751Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D4FFBF8E-581C-4731-B95B-7F815248D4C8}/106335", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-16T10:53:33.862028Z", "last_modified_time": "2023-11-14T06:22:37.851008Z", "date_published": "2023-10-16T09:12:00Z", "start_time": "2023-11-25T12:00:00Z", "end_time": "2023-11-25T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Dekkaripäivän kunniaksi kirjastossa ratkotaan mysteereitä suljetussa huoneessa. Kokoa siis 3–5 hengen porukka ja ryhdy ratkomaan päättelykykä vaativia pulmia." }, "location_extra_info": { "fi": "Lasten- ja nuortenosasto, Lukutila Laguuni" }, "info_url": null, "description": { "fi": "<p> Dekkaripäivän kunniaksi kirjastossa ratkotaan mysteereitä suljetussa huoneessa. </p> <p> Kokoa siis 4–6 hengen porukka ja ryhdy ratkaisemaan hyvää päättelykykyä vaativia pulmia. Pystyttekö selvittämään mysteerin ennen kuin aika kuluu loppuun? </p> <p> Pakohuoneeseen ovat tervetulleita niin vasta-alkajat kuin kokeneemmatkin pelaajat. Peliaikaa on noin 45 minuuttia. Peliohjaaja on tavoitettavissa koko pelin ajan ja antaa pyydettäessä vinkkejä. </p> <p> Huone on pelattavissa vain suomeksi. Alle 12-vuotiaat vain aikuisen seurassa. </p> <p> Peliaikoja on vain rajoitetusti! Pakohuoneeseen ilmoittautuminen alla. Huomioithan, että ilmoittautumalla, ilmoitat koko 4-6 hengen peliporukkasi. </p> </p>" }, "name": { "fi": "Kuolema kirjastossa -pakohuone TÄYNNÄ" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269054/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269218", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11375/?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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5044, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-05T19:01:38.788657Z", "last_modified_time": "2023-10-05T19:01:38.788677Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B5D48BA2-5E33-45A3-9A74-3B6BD4177D48}/106525", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5044/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" } ], "audience": [], "created_time": "2023-10-08T19:33:31.581137Z", "last_modified_time": "2023-11-14T06:22:37.709395Z", "date_published": "2023-10-06T21:00:00Z", "start_time": "2023-11-25T11:00:00Z", "end_time": "2023-11-25T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kulttuurimaratonilla Gallerie esittää yleisölle hengellistä musiikkia, joululauluja ja suosittua joulumusiikkia.", "ru": "На культурном марафоне хор Gallerie представит публике духовные произведения, колядки, популярную рождественскую музыку." }, "location_extra_info": null, "info_url": null, "description": { "fi": "<p>Naisten Gallerie-kuoron konsertti järjestetään <strong>la 25.11. klo 13.00 Rikhardinkadun kirjastossa, </strong>Kirjatornissa.</p><p>Gallerie-kamarikuoro perustettiin vuonna 2003. Tässä monikansallisessa kollektiivissa on 25 naiskuorolaista, ja heidän yhteiseksi kielekseen on valikoitunut venäjä.</p><p>Gallerie-kuoro on osallistunut ja saavuttanut palkintoja kansainvälisillä festivaaleilla ja kilpailuissa: erityispalkinto parhaasta ortodoksisen musiikin esityksestä Kreikassa, Prevezassa 2008, paras kuoronjohtaja -palkinto ja hopeamitali kilpailussa \"Voci d'europa\" Sardiniassa 2010, erityispalkinto parhaalle naisten kuorolle Riminissä 2011, paras esitys pop- ja jazzmusiikkikategoriassa Lloret de Mar/Barcelonassa vuonna 2019.</p><p>Kollektiivi on osallistunut kuorofestivaaleille Georgiassa, Virossa, Italiassa, Irlannissa, Espanjassa ja Kreikassa ja heidän ohjelmistonsa on monipuolinen. Se sisältää hengellisiä lauluja, kansanlauluja sekä pop- ja jazz-kappaleita.</p><p>Kulttuurimaratonin aikana Gallerie esittää yleisölle hengellistä musiikkia, joululauluja ja suosittua joulumusiikkia.</p><p>Tapahtumaan on vapaa pääsy. Tervetuloa!</p><p>***********<br> Tapahtuma kuuluu Venäjänkielisen kirjaston kulttuurimaratonin ohjelmaan. Kulttuurimaraton pidetään 13.-26.11.2023. Projekti on Suomen Opetus- ja kulttuuriministeriön rahoittama ja sen iskulause on \"Kulttuuri yhdistää ihmiset\".</p><p> <a href=\"https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Vinkit/Venajankielisen_kirjaston_kulttuurimarat(269330)\">Kulttuurimaratonin koko ohjelma</a> </p><p> <br> </p>", "ru": "<p>Концерт женского хора Gallerie <strong>в библиотеке Рикхардинкату 25 ноября в 13.00</strong>, Kirjatorni.</p><p>Женский камерный хор Gallerie основан в 2003 году. В этом многонациональном коллективе 25 хористок, объединяющим языком стал русский. </p><p>Хор Gallerie - участник и лауреат международных фестивалей и конкурсов: специальный приз за лучшее исполнение православной музыки в Греции, Превеза 2008, приз лучшему дирижеру и серебряная медаль на конкурсе “Voci d’europa” в Сардинии 2010, специальный приз лучшему женскому хору в Римини 2011, приз за лучшее исполнение в категории поп- и джазовой музыки в Lloret de Mar/Barcelona в 2019.</p><p>Коллектив участвовал в хоровых фестивалях в Грузии, Эстонии, Италии, Ирландии, Испании, Греции. </p><p>Репертуар хора разнообразен и включает в себя духовные песнопения, обработки народных песен, поп- и джазовые композиции. </p><p>На культурном марафоне Gallerie представит публике духовные произведения, колядки, популярную рождественскую музыку. </p><p>Вход свободный. Добро пожаловать!</p><p>***********<br> Мероприятие входит в программу \"Культурного марафона Русскоязычной библиотеки Финляндии\", проходящего с 13 по 26 ноября 2023. \"Культурный марафон Русскоязычной библиотеки\" проходит при поддержке Министерства образования и культуры Финляндии. Слоган проекта: \"Культура объединяет людей\".</p><p> <a href=\"https://www.helmet.fi/ru-RU/Rekomenduem/Chto_pochitat/Kulturnyi_marafon_Russkoiazychnoi_biblio(269318)\">Полная программа Культурного марафона</a> </p>" }, "name": { "fi": "Naisten Gallerie-kuoron konsertti", "ru": "Концерт женского хора Gallerie" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269218/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269053", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5482, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-16T10:53:31.660730Z", "last_modified_time": "2023-10-16T10:53:31.660751Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D4FFBF8E-581C-4731-B95B-7F815248D4C8}/106335", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-16T10:53:31.864098Z", "last_modified_time": "2023-11-14T06:22:37.641704Z", "date_published": "2023-10-16T09:12:00Z", "start_time": "2023-11-25T11:00:00Z", "end_time": "2023-11-25T11:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Dekkaripäivän kunniaksi kirjastossa ratkotaan mysteereitä suljetussa huoneessa. Kokoa siis 3–5 hengen porukka ja ryhdy ratkomaan päättelykykä vaativia pulmia." }, "location_extra_info": { "fi": "Lasten- ja nuortenosasto, Lukutila Laguuni" }, "info_url": null, "description": { "fi": "<p> Dekkaripäivän kunniaksi kirjastossa ratkotaan mysteereitä suljetussa huoneessa. </p> <p> Kokoa siis 4–6 hengen porukka ja ryhdy ratkaisemaan hyvää päättelykykyä vaativia pulmia. Pystyttekö selvittämään mysteerin ennen kuin aika kuluu loppuun? </p> <p> Pakohuoneeseen ovat tervetulleita niin vasta-alkajat kuin kokeneemmatkin pelaajat. Peliaikaa on noin 45 minuuttia. Peliohjaaja on tavoitettavissa koko pelin ajan ja antaa pyydettäessä vinkkejä. </p> <p> Huone on pelattavissa vain suomeksi. Alle 12-vuotiaat vain aikuisen seurassa. </p> <p> Peliaikoja on vain rajoitetusti! Pakohuoneeseen ilmoittautuminen alla. Huomioithan, että ilmoittautumalla, ilmoitat koko 4-6 hengen peliporukkasi. </p> </p>" }, "name": { "fi": "Kuolema kirjastossa -pakohuone TÄYNNÄ" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269053/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270165", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8369/?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:10841/?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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5765, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-31T12:25:25.405320Z", "last_modified_time": "2023-10-31T12:25:25.405368Z", "name": "", "url": "https://www.helmet.fi/download/noname/{FDCDF841-2CB4-41B0-BC6B-DA1B89679515}/107130", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5765/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-31T10:25:23.681283Z", "last_modified_time": "2023-11-14T06:22:37.571947Z", "date_published": "2023-10-31T09:53:00Z", "start_time": "2023-11-25T08:00:00Z", "end_time": "2023-11-25T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa salapoliisitapahtumaan Roihuvuoren kirjastoon!", "sv": "Välkommen till Kasbergets biblioteks detektivskola!" }, "location_extra_info": { "fi": "Roihuvuoren kirjasto" }, "info_url": null, "description": { "fi": "Olisiko sinusta etsiväksi? Tule salapoliisikouluun Roihuvuoren kirjastoon! Ratko arvoituksia, selvitä salaisia viestejä, etsi johtolankoja, paljasta syyllisiä - luvassa monta hauskaa puuhapistettä!", "sv": "Vill du leka detektiv? Välkommen till Kasbergets biblioteks detektivskola! Lös gåtor och hemliga meddelanden, sök efter ledtrådar, avslöja de misstänkta - kom med!" }, "name": { "fi": "Salapoliisikoulu", "sv": "Detektivskola" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270165/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270297", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10791/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5834, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-02T17:22:56.870241Z", "last_modified_time": "2023-11-02T17:22:56.870256Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B4324715-E368-4DD8-B5B7-ADDF3E0899FD}/107237", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5834/?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-11-02T17:22:56.851160Z", "last_modified_time": "2023-11-14T06:22:37.502984Z", "date_published": "2023-11-02T16:18:00Z", "start_time": "2023-11-25T10:00:00Z", "end_time": "2023-11-25T10:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Satutyöpaja tunne- ja kaveritaidoista" }, "location_extra_info": null, "info_url": null, "description": { "fi": "<p>Satutyöpaja tunne- ja kaveritaidoista </p><p>Työpajan aluksi luetaan riemukas tarina Murkens ja luminen nujakka.</p><p>Sen jälkeen yhdessä lasten ja vanhempien kanssa pohditaan taiteillen ja jutellen, miten pinnaa saa pidemmäksi, suuttumuksen sulamaan sekä miten monin tavoin harmituksen hetkellä erilaiset temperamentit toimivat unohtamatta miten paljon maailmaan mahtuu tunteita. </p><p>Työpajaa ohjaa Pienperheyhdistyksen perhetoiminnan koordintaattori Susanna Ruuhilahti, joka on kirjan toinen kirjoittaja.</p><p>Mukaan mahtuu 10 lasta vanhempineen. Ikäsuositus 4+.</p><p>Ennakkoilmoittautumiset sähköpostitse: itakeskuksen.lapsetjanuoret@hel.fi</p><p> <b> Murkens ja Luminen nujakka </b> : Maaret Kallio ja Susanna Ruuhilahti, kuvitus Julia Savtchenko </p><p> Tuhiksella on TAAS mennyt hermot. Pienellä tuhatjalkaisella on tuhat kenkää laitettavana jalkaansa ja kova kiire ulos leikkimään! Kun Tuhiksen lumipallo rikkoo muiden rakentaman hienon linnan, on Murkensin vuoro leimahtaa. Alkaa kunnon lumisota, mikä on herkälle Hentolalle aivan liikaa... <br> Kirjassa kuvataan erilaisia tunteita ja temperamentteja asiantuntevasti ja suurella sydämellä. Vaikka välillä tulisi erimielisyyksiä, kulkee tarinan pohjavireenä ystävyys ja tunne luottamuksesta. </p><p> kuva:Susanna Ruuhilahti </p>" }, "name": { "fi": "Murkens ja luminen nujakka" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270297/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269052", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5482, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-16T10:53:31.660730Z", "last_modified_time": "2023-10-16T10:53:31.660751Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D4FFBF8E-581C-4731-B95B-7F815248D4C8}/106335", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-16T10:53:31.513739Z", "last_modified_time": "2023-11-14T06:22:37.432481Z", "date_published": "2023-10-16T09:12:00Z", "start_time": "2023-11-25T10:00:00Z", "end_time": "2023-11-25T10:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Dekkaripäivän kunniaksi kirjastossa ratkotaan mysteereitä suljetussa huoneessa. Kokoa siis 3–5 hengen porukka ja ryhdy ratkomaan päättelykykä vaativia pulmia." }, "location_extra_info": { "fi": "Lasten- ja nuortenosasto, Lukutila Laguuni" }, "info_url": null, "description": { "fi": "<p> Dekkaripäivän kunniaksi kirjastossa ratkotaan mysteereitä suljetussa huoneessa. </p> <p> Kokoa siis 4–6 hengen porukka ja ryhdy ratkaisemaan hyvää päättelykykyä vaativia pulmia. Pystyttekö selvittämään mysteerin ennen kuin aika kuluu loppuun? </p> <p> Pakohuoneeseen ovat tervetulleita niin vasta-alkajat kuin kokeneemmatkin pelaajat. Peliaikaa on noin 45 minuuttia. Peliohjaaja on tavoitettavissa koko pelin ajan ja antaa pyydettäessä vinkkejä. </p> <p> Huone on pelattavissa vain suomeksi. Alle 12-vuotiaat vain aikuisen seurassa. </p> <p> Peliaikoja on vain rajoitetusti! Pakohuoneeseen ilmoittautuminen alla. Huomioithan, että ilmoittautumalla, ilmoitat koko 4-6 hengen peliporukkasi. </p> </p>" }, "name": { "fi": "Kuolema kirjastossa -pakohuone TÄYNNÄ" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269052/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:260549", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2791, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:09.862678Z", "last_modified_time": "2024-02-06T13:38:39.450870Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B92373FF-BD23-428F-B5E2-D3E9EC134C70}/93620", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2791/?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-15T16:04:27.094328Z", "last_modified_time": "2023-11-14T06:22:37.368945Z", "date_published": "2022-12-12T22:00:00Z", "start_time": "2023-11-25T09:00:00Z", "end_time": "2023-11-25T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa virittäytymään tarinoiden taajuudelle!" }, "location_extra_info": null, "info_url": null, "description": { "fi": "<p>Munkan kirjastossa virittäydytään taas tarinoiden taajudelle, kun satutuokio pyörähtää käyntiin tuttuun tapaan lauantaina klo 11:00. Satutuokio on suunnattu erityisesti 3 - 6-vuotiaille, mutta kaikki sadunnälkäiset ovat tottakai tervetulleita kuuntelemaan!</p>" }, "name": { "fi": "Satutuokio lauantaisin" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:260549/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268466", "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: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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4812, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-18T17:39:09.652881Z", "last_modified_time": "2023-09-18T17:39:09.652903Z", "name": "", "url": "https://www.helmet.fi/download/noname/{27F71D9E-BD8D-45E3-8783-566C37E793C7}/105956", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4812/?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-09-19T14:03:42.730863Z", "last_modified_time": "2023-11-14T06:22:37.297712Z", "date_published": "2023-09-19T12:07:00.803000Z", "start_time": "2023-11-25T08:30:00Z", "end_time": "2023-11-25T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa musiikilliseen taaperotuokioon Kontulan kirjastoon!" }, "location_extra_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa musiikilliseen taaperotuokioon Kontulan kirjastoon!</p><p>Tuokiossa lauletaan, leikitään, musisoidaan ja luetaan kirjaa. Aiempaa musiikillista kokemusta ei tarvita.</p><p>Tuokio pidetään kirjaston lastenosastolla klo 10.30.</p><p>Vapaa pääsy!</p><p>Kuva: Jelleke Vanooteghem/ Unsplash</p>" }, "name": { "fi": "Musiikillinen taaperotuokio" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268466/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269804", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8277/?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:10847/?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, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5944, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-11T15:23:15.527660Z", "last_modified_time": "2023-11-11T15:23:15.527681Z", "name": "", "url": "https://www.helmet.fi/download/noname/{EE66AE9E-F75F-4E84-9C95-D09733B08988}/107410", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5944/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-19T09:24:10.984041Z", "last_modified_time": "2023-11-14T06:22:37.227745Z", "date_published": "2023-10-19T08:40:00Z", "start_time": "2023-11-24T15:00:00Z", "end_time": "2023-11-24T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Levähdä hetki kirjan äärellä." }, "location_extra_info": null, "info_url": null, "description": { "fi": "<p>Kaipaatko pientä hengähdyshetkeä marraskuun pimeyden keskellä? Tule perjantaina 24.11. klo 17 alkaen lukuretriittiin Suutarilan kirjastoon. Kirjaston sulkeuduttua järjestämme lukuretriitin, jossa voit vetäytyä mieleisen kirjan kanssa rauhalliseen nurkkaukseen kolmeksi tunniksi. Kirjasto tarjoaa teetä ja pikkupurtavaa. Voit ottaa mukaan myös omaa pientä syötävää, viltin, tyynyn tai jotain muuta, mikä saa olosi kodikkaaksi.</p><p>Tervetuloa!<br><br> Pohjoisen alueen kirjastot järjestävät lukuretriitti-kiertueen. Kierrä vaikka kaikki!</p><p>Pukinmäen kirjasto 3.11. klo 17-20</p><p>Tapanilan kirjasto 10.11. klo 17-20</p><p>Tapulikaupungin kirjasto 17.11. klo 17-19</p><p>Viikin kirjasto 17.11. klo 20-23</p><p>Suutarilan kirjasto 24.11. klo 17-20</p><p>Jakomäen kirjasto 25.11. klo 17-19</p><p>Puistolan kirjasto 8.12. 17-19</p><p>Kuva: Unsplash/JasMin</p>" }, "name": { "fi": "Lukuretriitti" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269804/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19281, "next": "