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&include=location%2Ckeywords&page=682
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=683", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=681" }, "data": [ { "id": "helmet:280547", "has_user_editable_resources": false, "location": { "id": "tprek:8192", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:39.318952Z", "last_modified_time": "2024-02-06T13:09:55.947599Z", "custom_data": null, "email": "malmin_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 229, "image": 7816, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.014954, 60.25052 ] }, "name": { "fi": "Malmin kirjasto", "sv": "Malms bibliotek", "en": "Malmi Library" }, "info_url": { "fi": "http://www.helmet.fi/malminkirjasto", "sv": "http://www.helmet.fi/malmbibliotek", "en": "http://www.helmet.fi/malmilibrary" }, "description": null, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "telephone": { "fi": "+358 9 310 85070" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.454486Z", "last_modified_time": "2024-02-06T13:24:05.464056Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 8055, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki", "ru": "Helsinki RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11108, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-28T21:28:59.584533Z", "last_modified_time": "2024-02-28T21:28:59.584558Z", "name": "", "url": "https://www.helmet.fi/download/noname/{19ED9E54-8660-4CE5-AE1B-EEDDFEAC04D8}/101199", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11108/?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": "2024-02-28T21:28:59.540496Z", "last_modified_time": "2024-02-28T21:28:59.687204Z", "date_published": "2023-03-16T09:28:00Z", "start_time": "2024-01-31T06:00:00Z", "end_time": "2024-01-31T18: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, "name": { "sv": "Presidentvalets förhandsröstning" }, "info_url": null, "description": { "sv": "<p>Förhandsröstningen i presidentvalet 2024 på Malms bibliotek den 31.1.-6.2.2024</p><p>Öppet:</p><ul> <li>ons–fre 8–20, lö–sö 10–16, må–ti 8–20</li> <li></li> </ul><p>Instruktioner till väljaren: <a href=\"https://vaalit.fi/sv/forhandsrostning\">https://vaalit.fi/sv/forhandsrostning</a></p>" }, "short_description": { "sv": "Förhandsröstningen i presidentvalets andra omgång fr.o.m. onsdagen den 31 januari till tisdagen den 6 februari." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280547/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282387", "has_user_editable_resources": false, "location": { "id": "tprek:8184", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:39.190761Z", "last_modified_time": "2024-11-30T06:09:27.009846Z", "custom_data": null, "email": "itakeskuksen_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 909, "image": 7815, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.080221, 60.21196 ] }, "name": { "fi": "Itäkeskuksen kirjasto", "sv": "Östra centrums bibliotek", "en": "Itäkeskus Library" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84927", "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84927", "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84927" }, "description": null, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "telephone": { "fi": "+358 9 310 85090" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10737", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:49.911434Z", "last_modified_time": "2024-02-06T13:24:10.386541Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 255, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Helmet", "sv": "Helmet", "en": "Helmet", "ru": "Helmet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11193", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.465802Z", "last_modified_time": "2024-02-06T13:24:10.002830Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 989, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Kirjallisuus", "sv": "Litteratur", "en": "Literature", "ru": "Литературные события" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11286", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-20T16:57:45.993391Z", "last_modified_time": "2024-02-28T20:25:31.832523Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 7, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Афиша", "ru": "Афиша" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11286/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11756", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:52.137936Z", "last_modified_time": "2024-02-06T13:24:10.343327Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 298, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "venäjä", "sv": "ryska", "en": "Russian", "ru": "venäjä RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11756/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7643", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:12:10.788513Z", "last_modified_time": "2023-08-16T05:12:10.788533Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 200, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "venäjän kieli", "sv": "ryska", "en": "Russian language" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7643/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3141, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11107, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-28T20:26:50.012204Z", "last_modified_time": "2024-02-28T20:26:50.012225Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9E1C2F7D-AD4B-42B5-AF0D-AFC87A3D19D4}/109881", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11107/?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": "2024-02-28T20:26:49.959960Z", "last_modified_time": "2024-02-28T20:26:50.108984Z", "date_published": "2024-02-27T22:00:00Z", "start_time": "2024-03-01T14:30:00Z", "end_time": "2024-03-01T15: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, "name": { "fi": "Venäjänkielinen luento: Fiktio ja elämä Jevgeni Švartsin näytelmissä.", "ru": "Лекция: Для того, чтобы придумывать, надо знать. Литературная сказка и жизнь в пьесах Евгения Шварца" }, "info_url": null, "description": { "fi": "<p>Tervetuloa luentoon \"Fiktio ja elämä Jevgeni Švartsin näytelmissä\" Itäkeskuksen kirjastoon pe 1.3. klo 16.30 (Kanerva-kokoushuone, 1 krs.). Luennoitsija on Helsingin yliopiston dosentti Marina Vituhnovskaja- Kauppala.</p><p>Luento on tarkoitettu yläasteikäisille, mutta kaikki venäläisestä kirjallisuudesta kiinnostuneet ovat tervetulleita. </p><p>Tapahtuma on venäjän kielellä.</p><p>Vapaa pääsy.</p>", "ru": "<p>Добро пожаловать на лекцию по литературе \"Для того, чтобы придумывать, надо знать. Литературная сказка и жизнь в пьесах Евгения Шварца\". Лекция будет в библиотеке Итякескус в пятницу <strong>1 марта в 16.30</strong> (Kanerva-kokoushuone, 1 этаж).</p><p>Читает лекцию доцент университета Хельсинки Марина Витухновская-Кауппала. </p><p>Лекция ориентирована на учеников старших классов, но открыта для всех интересующихся русской литературой.</p><p>Вход свободный.</p>" }, "short_description": { "fi": "Kaikki venäläisestä kirjallisuudesta kiinnostuneet ovat tervetulleita.", "ru": "Добро пожаловать на лекцию о творчестве Евгения Шварца." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282387/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282390", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4210, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10690", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.435139Z", "last_modified_time": "2024-02-06T13:24:05.676676Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 3875, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo", "ru": "Espoo RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11086, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-27T15:29:23.719700Z", "last_modified_time": "2024-02-27T15:29:23.719715Z", "name": "", "url": "https://www.helmet.fi/download/noname/{51E75C69-36A4-4328-B905-7EBE347C6794}/107634", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11086/?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": "2024-02-27T15:29:51.819337Z", "last_modified_time": "2024-02-28T17:27:43.366412Z", "date_published": "2024-02-27T14:00:00Z", "start_time": "2024-03-26T12:00:00Z", "end_time": "2024-03-26T14: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, "name": { "fi": "Espoo infon digineuvontaa" }, "info_url": null, "description": { "fi": "<p> <br> Espoo-infon palveluneuvojat auttavat!</p><p> <br> Annamme digineuvontaa Sellon kirjaston asiakastietokoneilla</p><p>Torstaina 14.3. klo 14-16</p><p>Tiistaina 26.3. klo 14-16</p><p>Tervetuloa!</p>" }, "short_description": { "fi": "Espoo Infon palveluneuvojat tarjoavat digineuvontaa." }, "location_extra_info": { "fi": "Paja" }, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282390/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282389", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4210, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10690", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.435139Z", "last_modified_time": "2024-02-06T13:24:05.676676Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 3875, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo", "ru": "Espoo RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11086, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-27T15:29:23.719700Z", "last_modified_time": "2024-02-27T15:29:23.719715Z", "name": "", "url": "https://www.helmet.fi/download/noname/{51E75C69-36A4-4328-B905-7EBE347C6794}/107634", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11086/?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": "2024-02-27T15:29:23.693942Z", "last_modified_time": "2024-02-28T17:27:17.100610Z", "date_published": "2024-02-27T14:00:00Z", "start_time": "2024-03-14T12:00:00Z", "end_time": "2024-03-14T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Espoo infon digineuvontaa" }, "info_url": null, "description": { "fi": "<p> <br> Espoo-infon palveluneuvojat auttavat!</p><p> <br> Annamme digineuvontaa Sellon kirjaston asiakastietokoneilla</p><p>Torstaina 14.3. klo 14-16</p><p>Tiistaina 26.3. klo 14-16</p><p>Tervetuloa!</p>" }, "short_description": { "fi": "Espoo Infon palveluneuvojat tarjoavat digineuvontaa." }, "location_extra_info": { "fi": "Paja" }, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282389/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:279272", "has_user_editable_resources": false, "location": { "id": "tprek:18703", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:vantaa", "municipality": null, "name": { "fi": "Vantaa", "sv": "Vanda" } } ], "created_time": "2023-08-15T08:15:06.242532Z", "last_modified_time": "2024-02-06T13:10:29.153239Z", "custom_data": null, "email": "tikkurila.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01300", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 660, "image": 8102, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.041939, 60.29517 ] }, "name": { "fi": "Tikkurilan kirjasto", "sv": "Dickursby bibliotek", "en": "Tikkurila Library" }, "info_url": { "fi": "https://www.helmet.fi/tikkurilankirjasto", "sv": "https://www.helmet.fi/dickursbybibliotek", "en": "https://www.helmet.fi/tikkurilalibrary" }, "description": { "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.", "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.", "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software." }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "street_address": { "fi": "Lummetie 4", "sv": "Näckrosvägen 4", "en": "Lummetie 4" }, "telephone": { "fi": "+358 43 824 8307" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10691", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.020768Z", "last_modified_time": "2024-02-06T13:24:10.723059Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2479, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa", "ru": "Vantaa RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7196, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-15T16:26:11.970348Z", "last_modified_time": "2024-02-06T13:39:11.012522Z", "name": "", "url": "https://www.helmet.fi/download/noname/{94E7B364-1AAF-4777-B33E-A2817F61A143}/108708", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7196/?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": "2024-01-15T16:28:05.980602Z", "last_modified_time": "2024-02-28T15:32:02.381734Z", "date_published": "2024-01-15T13:48:00Z", "start_time": "2024-04-08T15:00:00Z", "end_time": "2024-04-08T16: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, "name": { "fi": "Runopaja" }, "info_url": null, "description": { "fi": "<p>Tule kirjoittamaan runoja kanssamme! Pajan ohjaajina toimivat Kirsti Kortesmaa ja Laila Bröcker</p><p>Runopaja sopii kaikille, ota vain omat välineet mukaan.</p><p> <em>Kuva: Pixabay / cromaconceptovisual</em> </p>" }, "short_description": { "fi": "Tule mukaan runopajaan!" }, "location_extra_info": { "fi": "Voimala 2.krs" }, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:279272/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282373", "has_user_editable_resources": false, "location": { "id": "tprek:19580", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:vantaa", "municipality": null, "name": { "fi": "Vantaa", "sv": "Vanda" } } ], "created_time": "2023-08-15T08:15:27.303433Z", "last_modified_time": "2025-08-08T05:09:33.783809Z", "custom_data": null, "email": "hakunila.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01200", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 358, "image": 8146, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.10364, 60.277122 ] }, "name": { "fi": "Hakunilan kirjasto", "sv": "Håkansböle bibliotek", "en": "Hakunila Library" }, "info_url": { "fi": "https://www.helmet.fi/hakunilankirjasto", "sv": "https://www.helmet.fi/hakansbolebibliotek", "en": "https://www.helmet.fi/hakunilalibrary" }, "description": { "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.", "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.", "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software." }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "street_address": { "fi": "Kimokuja 5", "sv": "Skimmelgränden 5", "en": "Kimokuja 5" }, "telephone": { "fi": "+358 43 824 8306" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10691", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.020768Z", "last_modified_time": "2024-02-06T13:24:10.723059Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2479, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa", "ru": "Vantaa RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10778", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:22:35.871605Z", "last_modified_time": "2024-02-06T13:29:31.237819Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 261, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Näyttelyt", "sv": "Utställningar", "en": "Exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5121", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:37.715031Z", "last_modified_time": "2023-08-16T05:19:37.715048Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 694, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "näyttelyt", "sv": "utställningar", "en": "exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11062, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-27T11:26:40.318082Z", "last_modified_time": "2024-02-27T11:26:40.318097Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9A04ACB7-825F-43C9-8DFC-E1B38FA81B8E}/109834", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11062/?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": "2024-02-27T11:26:40.276998Z", "last_modified_time": "2024-02-28T15:30:43.570866Z", "date_published": "2024-02-27T10:28:00Z", "start_time": "2024-03-05T13:30:00Z", "end_time": "2024-03-05T16: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, "name": { "fi": "Valokuvanäyttelyn avajaiset" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Antero Nyströmin valokuvanäyttelyn avajaisiin tiistaina 5.3.2024 kello 15.30-18.</p><p>Kuva: Antero Nyström</p>" }, "short_description": { "fi": "Antero Nyströmin valokuvanäyttelyn avajaiset Hakunilan kirjastossa 5.3.2024, tervetuloa!" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282373/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:279275", "has_user_editable_resources": false, "location": { "id": "tprek:18703", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:vantaa", "municipality": null, "name": { "fi": "Vantaa", "sv": "Vanda" } } ], "created_time": "2023-08-15T08:15:06.242532Z", "last_modified_time": "2024-02-06T13:10:29.153239Z", "custom_data": null, "email": "tikkurila.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01300", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 660, "image": 8102, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.041939, 60.29517 ] }, "name": { "fi": "Tikkurilan kirjasto", "sv": "Dickursby bibliotek", "en": "Tikkurila Library" }, "info_url": { "fi": "https://www.helmet.fi/tikkurilankirjasto", "sv": "https://www.helmet.fi/dickursbybibliotek", "en": "https://www.helmet.fi/tikkurilalibrary" }, "description": { "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.", "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.", "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software." }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "street_address": { "fi": "Lummetie 4", "sv": "Näckrosvägen 4", "en": "Lummetie 4" }, "telephone": { "fi": "+358 43 824 8307" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10691", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.020768Z", "last_modified_time": "2024-02-06T13:24:10.723059Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2479, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa", "ru": "Vantaa RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7196, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-15T16:26:11.970348Z", "last_modified_time": "2024-02-06T13:39:11.012522Z", "name": "", "url": "https://www.helmet.fi/download/noname/{94E7B364-1AAF-4777-B33E-A2817F61A143}/108708", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7196/?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": "2024-01-15T16:27:09.568687Z", "last_modified_time": "2024-02-28T15:30:40.200462Z", "date_published": "2024-01-15T13:48:00Z", "start_time": "2024-03-04T16:00:00Z", "end_time": "2024-03-04T17: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, "name": { "fi": "Runopaja" }, "info_url": null, "description": { "fi": "<p>Tule kirjoittamaan runoja kanssamme! Pajan ohjaajina toimivat Kirsti Kortesmaa ja Laila Bröcker</p><p>Runopaja sopii kaikille, ota vain omat välineet mukaan.</p><p> <em>Kuva: Pixabay / cromaconceptovisual</em> </p>" }, "short_description": { "fi": "Tule mukaan runopajaan!" }, "location_extra_info": { "fi": "Voimala 2.krs" }, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:279275/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:279274", "has_user_editable_resources": false, "location": { "id": "tprek:18703", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:vantaa", "municipality": null, "name": { "fi": "Vantaa", "sv": "Vanda" } } ], "created_time": "2023-08-15T08:15:06.242532Z", "last_modified_time": "2024-02-06T13:10:29.153239Z", "custom_data": null, "email": "tikkurila.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01300", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 660, "image": 8102, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.041939, 60.29517 ] }, "name": { "fi": "Tikkurilan kirjasto", "sv": "Dickursby bibliotek", "en": "Tikkurila Library" }, "info_url": { "fi": "https://www.helmet.fi/tikkurilankirjasto", "sv": "https://www.helmet.fi/dickursbybibliotek", "en": "https://www.helmet.fi/tikkurilalibrary" }, "description": { "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.", "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.", "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software." }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "street_address": { "fi": "Lummetie 4", "sv": "Näckrosvägen 4", "en": "Lummetie 4" }, "telephone": { "fi": "+358 43 824 8307" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10691", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.020768Z", "last_modified_time": "2024-02-06T13:24:10.723059Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2479, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa", "ru": "Vantaa RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7196, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-15T16:26:11.970348Z", "last_modified_time": "2024-02-06T13:39:11.012522Z", "name": "", "url": "https://www.helmet.fi/download/noname/{94E7B364-1AAF-4777-B33E-A2817F61A143}/108708", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7196/?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": "2024-01-15T16:26:11.942781Z", "last_modified_time": "2024-02-28T15:29:22.522588Z", "date_published": "2024-01-15T13:48:00Z", "start_time": "2024-01-30T16:00:00Z", "end_time": "2024-01-30T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Runopaja" }, "info_url": null, "description": { "fi": "<p>Tule kirjoittamaan runoja kanssamme! Pajan ohjaajina toimivat Kirsti Kortesmaa ja Laila Bröcker</p><p>Runopaja sopii kaikille, ota vain omat välineet mukaan.</p><p> <em>Kuva: Pixabay / cromaconceptovisual</em> </p>" }, "short_description": { "fi": "Tule mukaan runopajaan!" }, "location_extra_info": { "fi": "Voimala 2.krs" }, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:279274/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:In-Realtime_linktest3", "has_user_editable_resources": false, "location": { "id": "tprek:73686", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:laajasalo", "municipality": "Helsinki", "name": { "fi": "Laajasalo", "sv": "Degerö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:yliskylä", "municipality": "Helsinki", "name": { "fi": "Yliskylä", "sv": "Uppby" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:laajasalo", "municipality": "Helsinki", "name": { "fi": "Laajasalo", "sv": "Degerö" } } ], "created_time": "2023-12-30T06:10:21.272874Z", "last_modified_time": "2025-01-30T06:10:17.359466Z", "custom_data": null, "email": "kolmenolla2019@gmail.com", "contact_type": null, "address_region": null, "postal_code": "00840", "post_office_box_num": null, "address_country": null, "deleted": true, "has_upcoming_events": false, "n_events": 46, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.051615, 60.179398 ] }, "name": { "fi": "3-0 Sports Bar", "sv": "3-0 Sports Bar", "en": "3-0 Sports Bar" }, "info_url": { "fi": "https://www.facebook.com/kolmenollasaari/", "sv": "https://www.facebook.com/kolmenollasaari/", "en": "https://www.facebook.com/kolmenollasaari/" }, "description": { "fi": "3-0 on Kauppakeskus Saaressa sijaitseva viihtyisä urheilubaari. Baarin lukuisilta ruuduilta näet parhaat matsit kaikista suurimmista sarjoista, lajista riippumatta. Baarin ohjelmassa monenlaista hauskaa livemusiikista biljardi- ja darts-kisoihin.", "sv": "3-0 är en idrottsbar som ligger i köpcentret Saari i Degerö.", "en": "3-0 is a sports bar located in Shopping Center Saari in Laajasalo. Sports games from several screens. Live music, pool and darts games." }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Yliskylän puistokatu 4", "sv": "Uppby parkgata 4", "en": "Yliskylän puistokatu 4" }, "telephone": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:73686/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:11687", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:49.722776Z", "last_modified_time": "2024-02-06T13:24:07.827439Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 794, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Pelitapahtumat", "sv": "Spel", "en": "Games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p318", "has_user_editable_resources": false, "alt_labels": [ "lastenleikit", "barnlekar" ], "created_time": "2023-08-16T05:19:10.824660Z", "last_modified_time": "2023-08-16T05:19:10.824677Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 64, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikit", "sv": "lekar", "en": "plays and games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6915", "has_user_editable_resources": false, "alt_labels": [ "alle kouluikäiset", "barn under skolåldern" ], "created_time": "2023-08-16T05:12:07.170505Z", "last_modified_time": "2023-08-16T05:12:07.170523Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 67, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikki-ikäiset", "sv": "barn i lekåldern", "en": "preschoolers (age group)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6915/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "1", "link": "https://www.youtube.com/live/RtBNiT4G0Bs?si=b68uksKs4ZhQKwR_", "language": "fi" }, { "name": "youtube", "link": "https://www.youtube.com/live/RtBNiT4G0Bs?si=b68uksKs4ZhQKwR_", "language": "en" } ], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "56€" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136" }, "description": { "fi": "Vain eur" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 10827, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-14T10:03:47.819719Z", "last_modified_time": "2024-02-14T10:03:47.819740Z", "name": "Realtime kuvateksti", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=3817086b-fd2a-42c0-8141-5aca3acd1f71&Timestamp=638423929622419713&Full=true", "cropping": "", "photographer_name": "Kuvaaja", "alt_text": "Alttiteksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10827/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Complete city tour", "url": "https://www.youtube.com/watch?v=oZ462vqo9_8", "alt_text": "Videokuvaus" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6915/?format=api" } ], "created_time": "2024-02-28T13:50:33.117737Z", "last_modified_time": "2024-02-28T13:50:33.117756Z", "date_published": "2024-02-01T08:41:28Z", "start_time": "2024-02-22T08:50:00Z", "end_time": "2024-02-29T10:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 5, "audience_max_age": 60, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 60, "enrolment_start_time": "2024-02-19T09:30:00+02:00", "enrolment_end_time": "2024-02-19T13:53:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "In-Realtime link testaus 3 28022024", "en": "In-Realtime link testing 3 28022024" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=In-Realtime_license_test3187912136" }, "description": { "fi": "test", "en": "test" }, "short_description": { "fi": "lyh kuvaus", "en": "short" }, "location_extra_info": null, "provider_contact_info": null, "provider": { "fi": "Hakeli", "en": "Hagel" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:In-Realtime_linktest3/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282392", "has_user_editable_resources": false, "location": { "id": "tprek:8215", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:torkkelinmäki", "municipality": "Helsinki", "name": { "fi": "Torkkelinmäki", "sv": "Torkelsbacken" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T08:12:40.497052Z", "last_modified_time": "2024-02-06T13:09:56.149787Z", "custom_data": null, "email": "kallion_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 305, "image": 7820, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.95356, 60.18372 ] }, "name": { "fi": "Kallion kirjasto", "sv": "Berghälls bibliotek", "en": "Kallio Library" }, "info_url": { "fi": "http://www.helmet.fi/kallionkirjasto", "sv": "http://www.helmet.fi/berghallsbibliotek", "en": "http://www.helmet.fi/kalliolibrary" }, "description": null, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Viides linja 11", "sv": "Femte linjen 11", "en": "Viides linja 11" }, "telephone": { "fi": "+358 9 310 85053" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.454486Z", "last_modified_time": "2024-02-06T13:24:05.464056Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 8055, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki", "ru": "Helsinki RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10778", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:22:35.871605Z", "last_modified_time": "2024-02-06T13:29:31.237819Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 261, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Näyttelyt", "sv": "Utställningar", "en": "Exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5121", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:37.715031Z", "last_modified_time": "2023-08-16T05:19:37.715048Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 694, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "näyttelyt", "sv": "utställningar", "en": "exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11090, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-27T15:30:01.201212Z", "last_modified_time": "2024-02-27T15:30:01.201239Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DADD8D0B-B113-4E2D-8F0A-2BC7E867C9FD}/109852", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11090/?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": "2024-02-27T15:30:01.174998Z", "last_modified_time": "2024-02-28T13:27:53.012333Z", "date_published": "2024-02-27T14:17:00Z", "start_time": "2024-03-02T22:00:00Z", "end_time": "2024-03-29T22: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, "name": { "fi": "Anne Buljugin: Tilaa leikille ja huumorille!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa tutustumaan tähän iloa, huumoria ja uskoa huomiseen välittävään taidenäyttelyyn!</p><p>Näyttely kutsuu sinut astumaan maailmaan, jossa ilo ja huumori kohtaavat taiteen kautta, luoden tunnelman täynnä positiivista energiaa ja optimismia tulevaisuudesta.</p><p>Huumori on läsnä teoksissa monin eri tavoin ja voit löytää teoksia, jotka saavat sinut hymyilemään ja ehkä jopa nauramaan ääneen. Vakavammankin vaikutelman takana voi olla kepeää tarina, joten rohkaistutaan leikilliseen irtiottoon!</p><p>Anne Buljugin</p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 850 53</p>" }, "short_description": { "fi": "Tervetuloa tutustumaan tähän iloa, huumoria ja uskoa huomiseen välittävään taidenäyttelyyn!" }, "location_extra_info": { "fi": "Kauno, 2. krs." }, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282392/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282410", "has_user_editable_resources": false, "location": { "id": "tprek:8215", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:torkkelinmäki", "municipality": "Helsinki", "name": { "fi": "Torkkelinmäki", "sv": "Torkelsbacken" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T08:12:40.497052Z", "last_modified_time": "2024-02-06T13:09:56.149787Z", "custom_data": null, "email": "kallion_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 305, "image": 7820, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.95356, 60.18372 ] }, "name": { "fi": "Kallion kirjasto", "sv": "Berghälls bibliotek", "en": "Kallio Library" }, "info_url": { "fi": "http://www.helmet.fi/kallionkirjasto", "sv": "http://www.helmet.fi/berghallsbibliotek", "en": "http://www.helmet.fi/kalliolibrary" }, "description": null, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Viides linja 11", "sv": "Femte linjen 11", "en": "Viides linja 11" }, "telephone": { "fi": "+358 9 310 85053" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10595", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.573028Z", "last_modified_time": "2024-02-06T13:24:05.656107Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3157, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lapset ja perheet", "sv": "Barn och familjer", "en": "Children and families", "ru": "Lapset ja perheet RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.454486Z", "last_modified_time": "2024-02-06T13:24:05.464056Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 8055, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki", "ru": "Helsinki RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:12005", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.085373Z", "last_modified_time": "2024-02-06T13:24:08.630047Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 3415, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lasten tapahtumat", "sv": "Barn", "en": "Kids", "ru": "Детям" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13050", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:15:07.041577Z", "last_modified_time": "2023-08-16T05:15:07.041594Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2890, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapsiperheet", "sv": "barnfamiljer", "en": "families with children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 10545, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11104, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-28T13:26:52.272744Z", "last_modified_time": "2024-02-28T13:26:52.272766Z", "name": "", "url": "https://www.helmet.fi/download/noname/{81663DB8-6F4B-461D-8E86-7366C1D0C4B5}/109878", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11104/?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": "2024-02-28T13:26:52.233016Z", "last_modified_time": "2024-02-28T13:26:52.379783Z", "date_published": "2024-02-28T12:30:00Z", "start_time": "2024-03-05T16:00:00Z", "end_time": "2024-03-05T17: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, "name": { "fi": "Maaliskuun Dekkari-ilta, teemana Raymond Chandler" }, "info_url": null, "description": { "fi": "<p> <strong>Maaliskuun Dekkari-illassa keskustellaan yhdestä kovaksikeitetyn rikoskirjallisuuden tärkeimmistä kirjailijoista eli Raymond Chandlerista (1888-1959), hänen tuotannostaan ja henkilöhahmoistaan, erityisesti yksityisetsivä Philip Marlowesta.</strong> </p><p>Chandler oli kovaksikeitetyn jännitysromaanin mestari, tyylitaituri, jolle tarinan juoni on vain keino kuvata yhteiskuntaa ja ihmisiä.</p><p>Kallion kirjaston Kupolisalissa (1. krs) tiistaina 5.3.2024 klo 18.<br> Raymond Chandlerista keskustelemassa ovat kirjailija <strong>Ari Wahlsten</strong>, kriitikko <strong>Kyösti Salovaara</strong> sekä Suomen dekkariseuran puheenjohtaja <strong>Sini Paloheimo</strong>. </p><p>Keskustelu myös striimataan: <a href=\"https://www.facebook.com/kirjastokallio/live?__cft__[0]=AZVIVF7wTc0XaQ9qyPGQKfuvFNfM7DxiwAEXtONXXzgZNaDFjQbymC3gzah-poJ5WBk-ovlXXA3HKr62g2y9FE2fOmIVikZUYX-VxQoMj77-lNRNDxk3s3ZJwnY2Gy3nLFE&__tn__=q\">https://www.facebook.com/kirjastokallio/live</a></p><p> <a href=\"https://www.facebook.com/hashtag/kalliolive?__eep__=6&__cft__[0]=AZVIVF7wTc0XaQ9qyPGQKfuvFNfM7DxiwAEXtONXXzgZNaDFjQbymC3gzah-poJ5WBk-ovlXXA3HKr62g2y9FE2fOmIVikZUYX-VxQoMj77-lNRNDxk3s3ZJwnY2Gy3nLFE&__tn__=q\">#KallioLIVE</a> <a href=\"https://www.facebook.com/hashtag/kallionkirjasto?__eep__=6&__cft__[0]=AZVIVF7wTc0XaQ9qyPGQKfuvFNfM7DxiwAEXtONXXzgZNaDFjQbymC3gzah-poJ5WBk-ovlXXA3HKr62g2y9FE2fOmIVikZUYX-VxQoMj77-lNRNDxk3s3ZJwnY2Gy3nLFE&__tn__=q\">#KallionKirjasto</a> <a href=\"https://www.facebook.com/hashtag/dekkariseura?__eep__=6&__cft__[0]=AZVIVF7wTc0XaQ9qyPGQKfuvFNfM7DxiwAEXtONXXzgZNaDFjQbymC3gzah-poJ5WBk-ovlXXA3HKr62g2y9FE2fOmIVikZUYX-VxQoMj77-lNRNDxk3s3ZJwnY2Gy3nLFE&__tn__=q\">#Dekkariseura</a> <a href=\"https://www.facebook.com/hashtag/dekkariilta?__eep__=6&__cft__[0]=AZVIVF7wTc0XaQ9qyPGQKfuvFNfM7DxiwAEXtONXXzgZNaDFjQbymC3gzah-poJ5WBk-ovlXXA3HKr62g2y9FE2fOmIVikZUYX-VxQoMj77-lNRNDxk3s3ZJwnY2Gy3nLFE&__tn__=q\">#DekkariIlta</a> <a href=\"https://www.facebook.com/hashtag/raymondchandler?__eep__=6&__cft__[0]=AZVIVF7wTc0XaQ9qyPGQKfuvFNfM7DxiwAEXtONXXzgZNaDFjQbymC3gzah-poJ5WBk-ovlXXA3HKr62g2y9FE2fOmIVikZUYX-VxQoMj77-lNRNDxk3s3ZJwnY2Gy3nLFE&__tn__=q\">#RaymondChandler</a> </p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 850 53</p><p> <a href=\"https://www.facebook.com/kirjastokallio\">facebook.com/kirjastokallio</a> </p>" }, "short_description": { "fi": "Chandler oli kovaksikeitetyn jännitysromaanin mestari, tyylitaituri, jolle tarinan juoni on vain keino kuvata yhteiskuntaa ja ihmisiä. Lue lisää..." }, "location_extra_info": { "fi": "Kupolisali, 1. krs" }, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282410/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281016", "has_user_editable_resources": false, "location": { "id": "tprek:18703", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:vantaa", "municipality": null, "name": { "fi": "Vantaa", "sv": "Vanda" } } ], "created_time": "2023-08-15T08:15:06.242532Z", "last_modified_time": "2024-02-06T13:10:29.153239Z", "custom_data": null, "email": "tikkurila.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01300", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 660, "image": 8102, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.041939, 60.29517 ] }, "name": { "fi": "Tikkurilan kirjasto", "sv": "Dickursby bibliotek", "en": "Tikkurila Library" }, "info_url": { "fi": "https://www.helmet.fi/tikkurilankirjasto", "sv": "https://www.helmet.fi/dickursbybibliotek", "en": "https://www.helmet.fi/tikkurilalibrary" }, "description": { "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.", "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.", "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software." }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "street_address": { "fi": "Lummetie 4", "sv": "Näckrosvägen 4", "en": "Lummetie 4" }, "telephone": { "fi": "+358 43 824 8307" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10691", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.020768Z", "last_modified_time": "2024-02-06T13:24:10.723059Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2479, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa", "ru": "Vantaa RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11767", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.835550Z", "last_modified_time": "2024-02-06T13:24:08.704117Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 949, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "muut kielet", "sv": "andra språk", "en": "other languages" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p556", "has_user_editable_resources": false, "alt_labels": [ "språk (språkvetenskap)", "kielet", "kieli (kielitiede)", "språk (typer)", "språket" ], "created_time": "2023-08-16T05:19:47.449652Z", "last_modified_time": "2023-08-16T05:19:47.449670Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3250, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kieli ja kielet", "sv": "språk", "en": "languages" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7524, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-02T11:24:15.467725Z", "last_modified_time": "2024-02-06T13:42:24.095522Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1F345322-3C04-482D-B94B-D3C78E8F2736}/109170", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7524/?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": "2024-02-02T11:24:15.458036Z", "last_modified_time": "2024-02-28T12:27:43.106163Z", "date_published": "2024-01-31T18:00:00Z", "start_time": "2024-03-20T14:00:00Z", "end_time": "2024-03-20T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Monikulttuurinen karaoke-ilta", "sv": "Mångkulturell karaokekväll", "en": "Multicultural karaoke at Tikkurila library" }, "info_url": null, "description": { "fi": "<p>Lähde mukaan musiikilliseen matkaan kanssamme, kun laulamme yhdessä ja vietämme monikulttuurista karaokeiltaa! Olit sitten kokenut esiintyjä tai etsit vain hauskanpitoa, tämä on sinun hetkesi loistaa!</p><p>Tule laulamaan yhdessä eri taustoista tulevien musiikin harrastajien kanssa. Jaa tarinoita, opi uusia lauluja ja tutustu uusiin ihmisiin laulamisen ilon kautta.</p><p>Tapahtuma on maksuton ja se on osa satakielikuukauden ohjelmistoa. Satakielikuukausi nostaa esille monikielisyyttä erilaisten tapahtumien ja tempausten kautta.</p><p>Lisätietoja satakielikuukaudesta löydät täältä: <a href=\"https://www.satakielikuukausi.fi/\">Satakielikuukausi.fi</a></p><p>Tervetuloa mukaan! </p><p>Valokuva: Israel Palacio - Unsplash</p>", "sv": "<p>Kom med på en världsomfattande musikalisk resa med oss i biblioteket, då vi sjunger tillsammans och firar tillsammans vår mångkulturella karaokekväll!</p><p>Oavsett om du är en erfaren artist eller om du bara letar efter nöje, så är det här din möjlighet att stråla!</p><p>Evenemanget hålls som en del av den <a href=\"https://satakielikuukausi.fi/\">flerspråkiga månaden</a></p><p>Välkommen med! </p>", "en": "<p>Embark on a global musical journey with us at the library as we sing together and celebrate at our multicultural karaoke night!</p><p>Whether you're a seasoned performer or just looking to have some fun, this is your stage to shine!.</p><p>The event is held as part of the<a href=\"http:// https://satakielikuukausi.fi/\"> Multilingual Month</a> celebrations.</p><p>Photo by Israel Palacio - Unsplash</p>" }, "short_description": { "fi": "Yhdisty muiden musiikin harrastajien kanssa eri taustoista. Jaa tarinoita, opi uusia lauluja ja rakenna siltoja laulamisen ilon kautta.", "sv": "Kom för att göra musik och för att fira mångfaldens skönhet, en låt i taget! Evenemanget är avgiftsfritt.", "en": "Connect with fellow music enthusiasts from different backgrounds. Share stories, learn new songs, and build bridges through the joy of singing." }, "location_extra_info": { "fi": "Soittohuone, musiikkiosasto 1. krs", "sv": "Soittohoune", "en": "Soittohoune (music studio) at ground floor" }, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281016/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:6759e9a7-ec6e-4c3d-9539-9dd520865e80", "has_user_editable_resources": false, "location": { "id": "tprek:20403", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:15:56.357287Z", "last_modified_time": "2024-02-06T13:10:39.026757Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "02100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 5, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.804728, 60.17173 ] }, "name": { "fi": "& Espoon teatteri", "sv": "& Esbo teater", "en": "& Espoo Theatre" }, "info_url": { "fi": "http://www.espoonteatteri.fi/?page=194&uselang=uk", "sv": "http://www.espoonteatteri.fi/?page=194&uselang=se", "en": "http://www.espoonteatteri.fi/?page=194&uselang=uk" }, "description": { "fi": "& Espoon teatteri perustettiin vuonna 1988. Ohjelmisto rakentuu omasta tuotannosta, yhteistuotannoista sekä koti- ja ulkomaisista vierailuesityksistä. Vierailulle kutsutaan valikoidusti kotimaan huippuesityksiä ja mielenkiintoisimpia avauksia maailmalta. Vierailuesitykset esitetään pääosin Espoon kulttuurikeskuksen tiloissa, joko Louhisalissa tai Tapiolasalissa. Pääosa esityksistä tekstitetään suomeksi ja/tai englanniksi. Espoon Kaupunginteatteria ylläpitää Espoon kaupunginteatterisäätiö.", "sv": "& Esbo teater grundades år 1988. Repertoaren bygger på egna produktioner samt inhemska och utländska gästföreställningar. Gästföreställningarna representerar inhemsk och utländsk toppnivå. Gästföreställningarna visas oftast i Esbo kulturcentrum, antingen i Louhisalen eller Tapiolasalen. Huvuddelen av föreställningarna textas på finska och/eller engelska. Esbo Stadsteater drivs av Esbo Stadsteaterns stiftelse.", "en": "& Espoo Theatre was founded in 1988. The theatre's programme is based on its own productions and both domestic and international guest performances. The theatre has two venues in the Tapiola area of Espoo, one at Revontulentie 8 and one in the Espoo Cultural Centre. Most plays are subtitled into Finnish and/or English. Espoo City Theatre is maintained by the Espoo City Theatre Foundation." }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "street_address": { "fi": "Revontulentie 8", "sv": "Norrskensvägen 8", "en": "Revontulentie 8" }, "telephone": { "fi": "+358 9 439 3550" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20403/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1432, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7708", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:13.687429Z", "last_modified_time": "2023-08-16T05:19:13.687454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 113, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työttömät", "sv": "arbetslösa", "en": "unemployed people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "youtube", "link": "https://youtube.com", "language": "fi" }, { "name": "instagram", "link": "https://instagram.com", "language": "fi" }, { "name": "whatsapp", "link": "https://wa.com", "language": "fi" }, { "name": "facebook", "link": "https://facebook.com", "language": "fi" }, { "name": "snapchat", "link": "https://snapchat.com", "language": "fi" }, { "name": "reddit", "link": "https://reddit.com", "language": "fi" }, { "name": "tumblr", "link": "https://tumblr.com", "language": "fi" }, { "name": "twitter", "link": "https://twitter.com", "language": "fi" }, { "name": "tiktok", "link": "https://tiktok.com", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/6acd9810-4e1e-4f46-95ab-44ea3d635186/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Test_Event_-_TL-DG-260220242340040150" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" } ], "created_time": "2024-02-26T13:57:56.961551Z", "last_modified_time": "2024-02-28T10:50:11.095793Z", "date_published": "2024-02-26T13:57:09Z", "start_time": "2024-02-29T10:00:00Z", "end_time": "2024-03-02T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-02-26T08:00:00+02:00", "enrolment_end_time": "2024-02-28T15:00:00+02:00", "local": false, "replaced_by": null, "name": { "fi": "Test Event - TL-DG-26.02.2024" }, "info_url": { "fi": "https://hel.fi" }, "description": { "fi": "<div><div>Lets Test Event Image Licence field<br>- Oletus lisenssi käytössä (Käyttörajattu tapahtumaan)</div></div>" }, "short_description": { "fi": "Lets Test Event Image Licence field" }, "location_extra_info": null, "provider_contact_info": null, "provider": { "fi": "Tomi Lepistö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:6759e9a7-ec6e-4c3d-9539-9dd520865e80/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:252938", "has_user_editable_resources": false, "location": { "id": "tprek:8310", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:45.320764Z", "last_modified_time": "2024-02-06T13:09:57.096632Z", "custom_data": null, "email": "vuosaaren_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 599, "image": 7836, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.14392, 60.20868 ] }, "name": { "fi": "Vuosaaren kirjasto", "sv": "Nordsjö bibliotek", "en": "Vuosaari Library" }, "info_url": { "fi": "http://www.helmet.fi/vuosaarenkirjasto", "sv": "http://www.helmet.fi/nordsjobibliotek", "en": "http://www.helmet.fi/vuosaarilibrary" }, "description": null, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "telephone": { "fi": "+358 9 310 85098" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10595", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.573028Z", "last_modified_time": "2024-02-06T13:24:05.656107Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3157, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lapset ja perheet", "sv": "Barn och familjer", "en": "Children and families", "ru": "Lapset ja perheet RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.454486Z", "last_modified_time": "2024-02-06T13:24:05.464056Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 8055, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki", "ru": "Helsinki RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:12005", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.085373Z", "last_modified_time": "2024-02-06T13:24:08.630047Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 3415, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lasten tapahtumat", "sv": "Barn", "en": "Kids", "ru": "Детям" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13050", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:15:07.041577Z", "last_modified_time": "2023-08-16T05:15:07.041594Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2890, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapsiperheet", "sv": "barnfamiljer", "en": "families with children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 10545, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11065, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-27T11:28:03.190119Z", "last_modified_time": "2024-02-27T11:28:03.190135Z", "name": "", "url": "https://www.helmet.fi/download/noname/{342D6E23-7744-4588-8108-29A76D151984}/109641", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11065/?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": "2024-02-27T11:28:03.163434Z", "last_modified_time": "2024-02-28T10:28:46.958456Z", "date_published": "2023-01-13T09:17:00Z", "start_time": "2024-04-11T13:00:00Z", "end_time": "2024-04-11T16: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, "name": { "fi": "Vuosaaren kirjaston maaginen ilta" }, "info_url": null, "description": { "fi": "<h3>Illan aikana kirjasto täyttyy lohikäärmeistä ja yksisarvisista. Luo oma nukkesi varjoteatteripajassa tai tutustu aarteisiin lohikäärmeen luolassa! Lisäksi paljon muuta taianomaista tekemistä.</h3><p>Ohjelma (maksuton): </p><p> <strong>Klo 16-19</strong>:</p><p>Lohikäärme- ja yksisarvisaskartelua lastenalueella</p><p>Lohikäärmeen luola, Lukupesä</p><p>Omatoiminen etsintärata lastenalueella</p><p>Kirja-arvonta</p><p> <strong>Klo 16 ja 18</strong> </p><p>Kasvata oma lohikäärmeesi -sanataidepaja, Kokoushuone Jyrki. Tila on rajallinen, joten mukaan mahtuu 12 ensimmäistä. Pajan kesto n. 45 min. </p><p> <strong>Klo 17 ja 18 </strong> </p><p>Varjoteatterityöpaja Kokoushuone Mosaiikissa. Pajan kesto n. 30 min. Ennakkoilmoittautuminen: vuosaaren.lapsetjanuoret(ät)hel.fi</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>" }, "short_description": { "fi": "Illan aikana kirjasto täyttyy lohikäärmeistä ja yksisarvisista." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:252938/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282408", "has_user_editable_resources": false, "location": { "id": "tprek:8149", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } } ], "created_time": "2023-08-15T08:12:37.860205Z", "last_modified_time": "2024-02-06T13:09:55.654187Z", "custom_data": null, "email": "toolon_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00250", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 502, "image": 7809, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.917463, 60.183304 ] }, "name": { "fi": "Töölön kirjasto", "sv": "Tölö bibliotek", "en": "Töölö Library" }, "info_url": { "fi": "http://www.helmet.fi/toolonkirjasto", "sv": "http://www.helmet.fi/tolobibliotek", "en": "http://www.helmet.fi/toololibrary" }, "description": null, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Topeliuksenkatu 6", "sv": "Topeliusgatan 6", "en": "Topeliuksenkatu 6" }, "telephone": { "fi": "+358 9 310 85025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.454486Z", "last_modified_time": "2024-02-06T13:24:05.464056Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 8055, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki", "ru": "Helsinki RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.512501Z", "last_modified_time": "2024-02-06T13:24:05.510383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2460, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Muut tapahtumat", "sv": "Övriga evenemang", "en": "Other events", "ru": "Другие " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11101, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-28T10:28:15.706948Z", "last_modified_time": "2024-02-28T10:28:15.706967Z", "name": "", "url": "https://www.helmet.fi/download/noname/{72A56D92-9FDF-41D2-8DFE-9C4364C260D0}/109874", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11101/?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": "2024-02-28T10:28:15.684266Z", "last_modified_time": "2024-02-28T10:28:15.775821Z", "date_published": "2024-02-28T09:21:00Z", "start_time": "2024-03-27T15:30:00Z", "end_time": "2024-03-27T16: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, "name": { "fi": "Omatoiminen varautuminen" }, "info_url": null, "description": { "fi": "<p> <strong>Mitä voin tehdä ennalta sekä miten olla avuksi häiriö- ja poikkeusoloissa?</strong> <br><br> Jokaisen kannattaa varautua siihen, että tavallinen arki voi häiriintyä onnettomuuden tai poikkeustilanteen takia. Varautuminen on ennaltaehkäisyä ja harjoittelua siltä varalta, että jotakin odottamatonta voi tapahtua. Pitkittynyt sähkökatko on esimerkki häiriötilanteesta, jonka takia yhteiskunnan tarjoamat palvelut häiriintyvät tai jopa keskeytyvät.<br><br> Kodeissa olisi hyvä olla vähintään kolmeksi vuorokaudeksi ruokaa ja lääkkeitä. Olisi myös tärkeää tuntea varautumisen perusteet eli tietää, mistä saa oikeaa tietoa häiriötilanteessa ja miten esimerkiksi pärjätä kylmenevässä asunnossa.<br><br> Luennon tavoitteena on lisätä tietoa, miten jokaisen kannattaa varautua siihen, että tavallinen arki voi häiriintyä onnettomuuden tai poikkeustilanteen takia ja mikä on kotivara.<br><br> Luennoitsijana on Niki Haake, varautumisen ja valmiuden asiantuntija (Suomen Punaisen Risti Helsingin- ja Uudenmaan piiri)<br><br> Ilmoittaudu mukaan luennolle: <a href=\"mailto:toolo@punainenristi.fi\">toolo@punainenristi.fi</a> (kahvitarjoilun vuoksi).</p><p>Tervetuloa!</p>" }, "short_description": { "fi": "Luennolla saat tietoa, miten jokaisen kannattaa varautua siihen, että tavallinen arki voi häiriintyä onnettomuuden tai poikkeustilanteen takia ja mikä on kotivara. Tervetuloa!" }, "location_extra_info": { "fi": "Tapahtumatila, 4. krs" }, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282408/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282237", "has_user_editable_resources": false, "location": { "id": "tprek:19580", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:vantaa", "municipality": null, "name": { "fi": "Vantaa", "sv": "Vanda" } } ], "created_time": "2023-08-15T08:15:27.303433Z", "last_modified_time": "2025-08-08T05:09:33.783809Z", "custom_data": null, "email": "hakunila.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01200", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 358, "image": 8146, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.10364, 60.277122 ] }, "name": { "fi": "Hakunilan kirjasto", "sv": "Håkansböle bibliotek", "en": "Hakunila Library" }, "info_url": { "fi": "https://www.helmet.fi/hakunilankirjasto", "sv": "https://www.helmet.fi/hakansbolebibliotek", "en": "https://www.helmet.fi/hakunilalibrary" }, "description": { "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.", "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.", "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software." }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "street_address": { "fi": "Kimokuja 5", "sv": "Skimmelgränden 5", "en": "Kimokuja 5" }, "telephone": { "fi": "+358 43 824 8306" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10594", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.988683Z", "last_modified_time": "2024-02-06T13:24:09.272513Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2210, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Koululaiset", "sv": "Skolelever", "en": "Pupils", "ru": "Koululaiset RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10595", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.573028Z", "last_modified_time": "2024-02-06T13:24:05.656107Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3157, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lapset ja perheet", "sv": "Barn och familjer", "en": "Children and families", "ru": "Lapset ja perheet RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10691", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.020768Z", "last_modified_time": "2024-02-06T13:24:10.723059Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2479, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa", "ru": "Vantaa RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:12005", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.085373Z", "last_modified_time": "2024-02-06T13:24:08.630047Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 3415, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lasten tapahtumat", "sv": "Barn", "en": "Kids", "ru": "Детям" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13050", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:15:07.041577Z", "last_modified_time": "2023-08-16T05:15:07.041594Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2890, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapsiperheet", "sv": "barnfamiljer", "en": "families with children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16485", "has_user_editable_resources": false, "alt_labels": [ "peruskoululaiset" ], "created_time": "2023-08-16T05:19:09.385735Z", "last_modified_time": "2023-08-16T05:19:09.385751Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 8529, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "koululaiset", "sv": "skolelever", "en": "pupils" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 10545, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11002, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-22T18:32:08.174452Z", "last_modified_time": "2024-02-22T18:32:08.174485Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D7D73DB5-4425-41B3-9D33-DFDE2546D872}/109731", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11002/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-02-22T18:32:21.870400Z", "last_modified_time": "2024-02-28T09:28:43.166337Z", "date_published": "2024-02-22T17:18:00Z", "start_time": "2024-04-12T11:00:00Z", "end_time": "2024-04-12T12: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, "name": { "fi": "Maaginen viikko 2024: Piirretään ja maalataan taikaolentoja" }, "info_url": null, "description": { "fi": "<p>Maagista viikkoa vietetään Hakunilan kirjastossa 8.-12.4.2024. Viikon ajan luvassa on paljon hauskaa maagista ohjelmaa, jota et halua missata!</p><p>Perjantaina 12.4. viikko huipentuu taikaolentojen piirtämiseen ja maalaamiseen. Tule suunnittelemaan oma taikaolentosi ja herätä se henkiin paperille.</p><p>Kirjasto tarjoaa askartelutarvikkeet. Vapaa pääsy. Ei ennakkoilmoittautumista.</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>" }, "short_description": { "fi": "Hakunilan kirjaston maaginen viikko huipentuu perjantaina 12.4. Silloin piirretään ja maalataan taikaolentoja kello 14-15." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282237/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282236", "has_user_editable_resources": false, "location": { "id": "tprek:19580", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:vantaa", "municipality": null, "name": { "fi": "Vantaa", "sv": "Vanda" } } ], "created_time": "2023-08-15T08:15:27.303433Z", "last_modified_time": "2025-08-08T05:09:33.783809Z", "custom_data": null, "email": "hakunila.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01200", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 358, "image": 8146, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.10364, 60.277122 ] }, "name": { "fi": "Hakunilan kirjasto", "sv": "Håkansböle bibliotek", "en": "Hakunila Library" }, "info_url": { "fi": "https://www.helmet.fi/hakunilankirjasto", "sv": "https://www.helmet.fi/hakansbolebibliotek", "en": "https://www.helmet.fi/hakunilalibrary" }, "description": { "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.", "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.", "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software." }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "street_address": { "fi": "Kimokuja 5", "sv": "Skimmelgränden 5", "en": "Kimokuja 5" }, "telephone": { "fi": "+358 43 824 8306" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10594", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.988683Z", "last_modified_time": "2024-02-06T13:24:09.272513Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2210, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Koululaiset", "sv": "Skolelever", "en": "Pupils", "ru": "Koululaiset RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10595", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.573028Z", "last_modified_time": "2024-02-06T13:24:05.656107Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3157, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lapset ja perheet", "sv": "Barn och familjer", "en": "Children and families", "ru": "Lapset ja perheet RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10691", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.020768Z", "last_modified_time": "2024-02-06T13:24:10.723059Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2479, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa", "ru": "Vantaa RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11687", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:49.722776Z", "last_modified_time": "2024-02-06T13:24:07.827439Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 794, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Pelitapahtumat", "sv": "Spel", "en": "Games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:12005", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.085373Z", "last_modified_time": "2024-02-06T13:24:08.630047Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 3415, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lasten tapahtumat", "sv": "Barn", "en": "Kids", "ru": "Детям" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13050", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:15:07.041577Z", "last_modified_time": "2023-08-16T05:15:07.041594Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2890, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapsiperheet", "sv": "barnfamiljer", "en": "families with children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16485", "has_user_editable_resources": false, "alt_labels": [ "peruskoululaiset" ], "created_time": "2023-08-16T05:19:09.385735Z", "last_modified_time": "2023-08-16T05:19:09.385751Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 8529, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "koululaiset", "sv": "skolelever", "en": "pupils" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 10545, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3553, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11002, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-22T18:32:08.174452Z", "last_modified_time": "2024-02-22T18:32:08.174485Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D7D73DB5-4425-41B3-9D33-DFDE2546D872}/109731", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11002/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-02-22T18:32:19.737831Z", "last_modified_time": "2024-02-28T09:28:41.168965Z", "date_published": "2024-02-22T17:13:00Z", "start_time": "2024-04-11T14:00:00Z", "end_time": "2024-04-11T15: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, "name": { "fi": "Maaginen viikko 2024: Maaginen Kahoot-tietovisa" }, "info_url": null, "description": { "fi": "<p>Maagista viikkoa vietetään Hakunilan kirjastossa 8.-12.4.2024. Viikon ajan luvassa on paljon hauskaa maagista ohjelmaa, jota et halua missata!</p><p>Torstaina 11.4. järjestetään maaginen Kahoot-tietovisa. Luvassa on hauskoja taianomaisia tietovisakysymyksiä. Osaatko vastata kaikkiin?</p><p>Osallistumiseen tarvitset oman laitteen. Voit myös lainata kirjastosta tabletin, mikäli sinulla on voimassa oleva Helmet-kirjastokortti. Huomioithan, että tabletteja on rajoitettu määrä.</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>" }, "short_description": { "fi": "Maaginen Kahoot-tietovisa Hakunilan kirjastossa torstaina 11.4. kello 17-18." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282236/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282235", "has_user_editable_resources": false, "location": { "id": "tprek:19580", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:vantaa", "municipality": null, "name": { "fi": "Vantaa", "sv": "Vanda" } } ], "created_time": "2023-08-15T08:15:27.303433Z", "last_modified_time": "2025-08-08T05:09:33.783809Z", "custom_data": null, "email": "hakunila.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01200", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 358, "image": 8146, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.10364, 60.277122 ] }, "name": { "fi": "Hakunilan kirjasto", "sv": "Håkansböle bibliotek", "en": "Hakunila Library" }, "info_url": { "fi": "https://www.helmet.fi/hakunilankirjasto", "sv": "https://www.helmet.fi/hakansbolebibliotek", "en": "https://www.helmet.fi/hakunilalibrary" }, "description": { "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.", "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.", "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software." }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "street_address": { "fi": "Kimokuja 5", "sv": "Skimmelgränden 5", "en": "Kimokuja 5" }, "telephone": { "fi": "+358 43 824 8306" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10595", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.573028Z", "last_modified_time": "2024-02-06T13:24:05.656107Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3157, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lapset ja perheet", "sv": "Barn och familjer", "en": "Children and families", "ru": "Lapset ja perheet RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10691", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.020768Z", "last_modified_time": "2024-02-06T13:24:10.723059Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2479, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa", "ru": "Vantaa RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11777", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.604128Z", "last_modified_time": "2024-02-06T13:24:18.208667Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 613, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Satutunnit", "sv": "Sagostunder", "en": "Story hours", "ru": "Часы сказки" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13050", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:15:07.041577Z", "last_modified_time": "2023-08-16T05:15:07.041594Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2890, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapsiperheet", "sv": "barnfamiljer", "en": "families with children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p14710", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:05:27.253448Z", "last_modified_time": "2023-08-16T05:05:27.253465Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 920, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "satutunnit", "sv": "sagotimmar", "en": "story hours" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 10545, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11002, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-22T18:32:08.174452Z", "last_modified_time": "2024-02-22T18:32:08.174485Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D7D73DB5-4425-41B3-9D33-DFDE2546D872}/109731", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11002/?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": "2024-02-22T18:32:13.702788Z", "last_modified_time": "2024-02-28T09:28:35.332335Z", "date_published": "2024-02-22T17:07:00Z", "start_time": "2024-04-10T07:00:00Z", "end_time": "2024-04-10T07: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, "name": { "fi": "Maaginen viikko 2024: Maaginen satutuokio" }, "info_url": null, "description": { "fi": "<p>Maagista viikkoa vietetään Hakunilan kirjastossa 8.-12.4.2024. Viikon ajan luvassa on paljon hauskaa maagista ohjelmaa, jota et halua missata!</p><p>Keskiviikkona 10.4. vuorossa on maaginen satutuokio kello 10. Satutuokiossa luetaan taianomainen satu. Vapaa pääsy.</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>" }, "short_description": { "fi": "Hakunilan kirjastossa luetaan maaginen satu maagisen viikon maagisessa satutuokiossa keskiviikkona 10.4. kello 10." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282235/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282234", "has_user_editable_resources": false, "location": { "id": "tprek:19580", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:vantaa", "municipality": null, "name": { "fi": "Vantaa", "sv": "Vanda" } } ], "created_time": "2023-08-15T08:15:27.303433Z", "last_modified_time": "2025-08-08T05:09:33.783809Z", "custom_data": null, "email": "hakunila.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01200", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 358, "image": 8146, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.10364, 60.277122 ] }, "name": { "fi": "Hakunilan kirjasto", "sv": "Håkansböle bibliotek", "en": "Hakunila Library" }, "info_url": { "fi": "https://www.helmet.fi/hakunilankirjasto", "sv": "https://www.helmet.fi/hakansbolebibliotek", "en": "https://www.helmet.fi/hakunilalibrary" }, "description": { "fi": "Kirjasto on kaikille avoin kohtaamispaikka ja kulttuurikeskus. Kirjastossa on lehtiä, kirjoja, musiikkia, elokuvia ja muita aineistoja, joihin voit tutustua paikan päällä tai lainata kotiin. Kirjaston tiloissa voit opiskella, harrastaa ja oleskella. Siellä järjestetään myös opastuksia, neuvontaa, digitukea, tapahtumia ja näyttelyitä. Kirjastossa on käytössä langaton verkko, tietokoneita ja yleisimmät tietokoneohjelmat.", "sv": "Biblioteket är en mötesplats och ett kulturhus öppet för alla. I biblioteket finns tidningar, böcker, musik, filmer och annat material som du kan bekanta dig med på plats eller låna hem. I bibliotekets lokaler kan du studera, utöva hobbyer eller bara tillbringa din tid Där ordnas också handledning, rådgivning, digitalt stöd, evenemang och utställningar. I biblioteket finns tillgång till trådlösa nätverk, datorer och de mest allmänna dataprogrammen.", "en": "The library is an open meeting place and cultural center, meant for everybody. The library has magazines, books, music, movies, and other material that you can browse on the spot or borrow and take home with you. You can study, engage in a hobby and hang out on library premises. Libraries also arrange instruction, guidance, digital support, events, and exhibitions. Libraries provide the customers with a wLAN, computers and the most common software." }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "street_address": { "fi": "Kimokuja 5", "sv": "Skimmelgränden 5", "en": "Kimokuja 5" }, "telephone": { "fi": "+358 43 824 8306" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10594", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.988683Z", "last_modified_time": "2024-02-06T13:24:09.272513Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2210, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Koululaiset", "sv": "Skolelever", "en": "Pupils", "ru": "Koululaiset RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10595", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.573028Z", "last_modified_time": "2024-02-06T13:24:05.656107Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3157, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lapset ja perheet", "sv": "Barn och familjer", "en": "Children and families", "ru": "Lapset ja perheet RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10691", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.020768Z", "last_modified_time": "2024-02-06T13:24:10.723059Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2479, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa", "ru": "Vantaa RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:12005", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:45.085373Z", "last_modified_time": "2024-02-06T13:24:08.630047Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 3415, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lasten tapahtumat", "sv": "Barn", "en": "Kids", "ru": "Детям" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13050", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:15:07.041577Z", "last_modified_time": "2023-08-16T05:15:07.041594Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2890, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapsiperheet", "sv": "barnfamiljer", "en": "families with children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16485", "has_user_editable_resources": false, "alt_labels": [ "peruskoululaiset" ], "created_time": "2023-08-16T05:19:09.385735Z", "last_modified_time": "2023-08-16T05:19:09.385751Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 8529, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "koululaiset", "sv": "skolelever", "en": "pupils" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 10545, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11002, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-22T18:32:08.174452Z", "last_modified_time": "2024-02-22T18:32:08.174485Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D7D73DB5-4425-41B3-9D33-DFDE2546D872}/109731", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11002/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-02-22T18:32:08.145960Z", "last_modified_time": "2024-02-28T09:28:30.093359Z", "date_published": "2024-02-22T16:55:00Z", "start_time": "2024-04-08T13:00:00Z", "end_time": "2024-04-08T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maaginen viikko 2024: Taikasauvapaja & Loitsupaja" }, "info_url": null, "description": { "fi": "<p>Maagista viikkoa vietetään Hakunilan kirjastossa 8.-12.4.2024. Viikon ajan luvassa on paljon hauskaa maagista ohjelmaa, jota et halua missata!</p><p>Maanantaina 8.4. maaginen viikko pyörähtää käyntiin taikasauvapajalla kello 16-17. Taikasauvapajassa askarrellaan omat taikasauvat.</p><p>Taikasauvapajan jälkeen otetaan uudet taikasauvat heti käyttöön, kun vuorossa on loitsupaja kello 17-18. Loitsupajassa harjoitellaan kirjastolaisen johdolla erilaisia loitsuja. Osallistujat pääsevät myös keksimään omia loitsujaan.</p><p>Kirjasto tarjoaa askartelutarvikkeet. Vapaa pääsy. Ei ennakkoilmoittautumista.</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala</p>" }, "short_description": { "fi": "Maaginen viikko pyörähtää käyntiin Hakunilan kirjastossa maanantaina 8.4. taikasauvapajalla klo 16-17 ja heti perään loitsupajalla kello 17-18." }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282234/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:282406", "has_user_editable_resources": false, "location": { "id": "tprek:8184", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:39.190761Z", "last_modified_time": "2024-11-30T06:09:27.009846Z", "custom_data": null, "email": "itakeskuksen_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 909, "image": 7815, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.080221, 60.21196 ] }, "name": { "fi": "Itäkeskuksen kirjasto", "sv": "Östra centrums bibliotek", "en": "Itäkeskus Library" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84927", "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84927", "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84927" }, "description": null, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "telephone": { "fi": "+358 9 310 85090" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10595", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.573028Z", "last_modified_time": "2024-02-06T13:24:05.656107Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3157, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lapset ja perheet", "sv": "Barn och familjer", "en": "Children and families", "ru": "Lapset ja perheet RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10689", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.454486Z", "last_modified_time": "2024-02-06T13:24:05.464056Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 8055, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki", "ru": "Helsinki RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11767", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.835550Z", "last_modified_time": "2024-02-06T13:24:08.704117Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 949, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "muut kielet", "sv": "andra språk", "en": "other languages" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11777", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.604128Z", "last_modified_time": "2024-02-06T13:24:18.208667Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 613, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Satutunnit", "sv": "Sagostunder", "en": "Story hours", "ru": "Часы сказки" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13050", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:15:07.041577Z", "last_modified_time": "2023-08-16T05:15:07.041594Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2890, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapsiperheet", "sv": "barnfamiljer", "en": "families with children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p14710", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:05:27.253448Z", "last_modified_time": "2023-08-16T05:05:27.253465Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 920, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "satutunnit", "sv": "sagotimmar", "en": "story hours" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 10545, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p556", "has_user_editable_resources": false, "alt_labels": [ "språk (språkvetenskap)", "kielet", "kieli (kielitiede)", "språk (typer)", "språket" ], "created_time": "2023-08-16T05:19:47.449652Z", "last_modified_time": "2023-08-16T05:19:47.449670Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3250, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kieli ja kielet", "sv": "språk", "en": "languages" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 11097, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-28T09:27:19.981234Z", "last_modified_time": "2024-02-28T09:27:19.981253Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B6E25453-2183-4F03-A60E-5760BCA4461D}/100539", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11097/?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": "2024-02-28T09:27:19.958244Z", "last_modified_time": "2024-02-28T09:27:20.080790Z", "date_published": "2024-02-28T08:10:28.900000Z", "start_time": "2024-03-07T13:00:00Z", "end_time": "2024-03-07T13: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, "name": { "fi": "Albaniankielinen satutuokio" }, "info_url": null, "description": { "fi": "<p>Tervetuloa sukeltamaan satumaailmaan ja kuuntelemaan satua albaniaksi! </p><p>Satakielikuukauden aikana Itäkeskuksen kirjaston lastenosaston pelinurkassa koetaan elämyksellisiä satutuokioita eri kielillä. Tuokiot ovat suunnattu kaikenikäisille 3-vuotiaista ylöspäin. Satuhetken pituus on noin 30 minuuttia.</p>" }, "short_description": { "fi": "Tervetuloa sukeltamaan satumaailmaan ja kuuntelemaan satua albaniaksi!" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:282406/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27175, "next": "