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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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 normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
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=1526
{ "meta": { "count": 32753, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1527", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1525" }, "data": [ { "id": "kulke:60547", "has_user_editable_resources": false, "location": { "id": "tprek:7265", "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:ullanlinna", "municipality": "Helsinki", "name": { "fi": "Ullanlinna", "sv": "Ulrikasborg" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } } ], "created_time": "2023-08-15T08:12:17.902816Z", "last_modified_time": "2024-02-06T13:09:51.207351Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00130", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 251, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.950249, 60.16771 ] }, "telephone": { "fi": "+358 9 310 36566" }, "street_address": { "fi": "Eteläesplanadi 1", "sv": "Södra Esplanaden 1", "en": "Eteläesplanadi 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.espanlava.fi/", "sv": "http://www.espanlava.fi/", "en": "http://www.espanlava.fi/" }, "description": null, "name": { "fi": "Espan lava", "sv": "Esplanadestraden", "en": "Espa Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:48", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.680935Z", "last_modified_time": "2024-02-06T13:19:14.106891Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 382, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Espan lava" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5960, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4813, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5016, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4055, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:59.928649Z", "last_modified_time": "2023-09-07T14:19:59.928670Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731090.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4055/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:59.350911Z", "last_modified_time": "2023-10-21T20:13:57.566998Z", "date_published": null, "start_time": "2023-08-22T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Espan lavalla kuullaan nyt ensi kertaa Camilla Bäckmanin yhtyeen ja jousiyhtye Soul Stringsin yhteistyön tuloksia.", "sv": "Camilla Bäckmans band och stråkbandet Soul Strings presenterar sitt samarbetes frukter på Esplanadestraden för första gången.", "en": "The Espa Stage proudly presents the results of the collaboration between Camilla Bäckman and the string band Soul Strings for the first time." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/84C71CE570106EB3FC7A29380C7129D5/Open_Stage_Camilla_Backman", "sv": "http://www.espanlava.fi/sv/evenemang/event/84C71CE570106EB3FC7A29380C7129D5/Open_Stage_Camilla_Backman", "en": "http://www.espanlava.fi/en/events/event/84C71CE570106EB3FC7A29380C7129D5/Open_Stage_Camilla_Backman" }, "description": { "fi": "<p>Espan lavalla kuullaan nyt ensi kertaa Camilla Bäckmanin yhtyeen ja jousiyhtye Soul Stringsin yhteistyön tuloksia.</p><p>Laulaja-lauluntekijä ja viulisti <b>Camilla Bäckman</b> julkaisi esikoisalbuminsa <i>Give Me A Moment</i> syksyllä 2022. Suurin osa esikoislevyn kappaleista syntyi, kun Camilla kiersi Pohjois-Amerikkaa Cirque du Soleil -sirkuksen Volta-esityksen laulusolistina ja viulistina vuosien 2017–2020 ajan. Hän päätyi äänittämään sävellyksensä RCA-studiolle Nashvilleen tuottajapari Eddie Goren ja Justyna Kelleyn kanssa.</p><p>Levynjulkaisukonsertti kuultiin marraskuussa 2022 Musiikkiteatteri Kapsäkissä. Camilla on esittänyt omia kappaleitaan Los Angelesissa, Nashvillessä, New Yorkissa, San Franciscossa sekä keväällä 2023 Nojatuolikirkossa Ylen TV1:llä.</p><p>Jousiyhtye <b>Soul Strings</b> pyysi Camillan solistiksi konserttiinsa Käpylän kirkkoon maaliskuussa 2023 ja siitä alkoi yhteistyö, jonka tuloksia kuullaan nyt Espan lavalla ensi kertaa. Jousisovitukset ovat <b>Mikko Heleniuksen</b> sekä Camillan käsialaa.</p><p>Camilla on nähty The Voice of Finlandin kolmannella kaudella sekä syksyn 2021 The Voice of Finland All Stars-ohjelmassa Nelosella. Keväällä 2023 Camilla esiintyi Cirque du Soleil’n uuden esityksen Vizionin laulusolistina ja viulistina Saudi-Arabiassa.</p><p><b>Muusikot:</b><br>Camilla Bäckman, laulu, viulu, piano, kitara<br>Kati Sannelvuo, piano<br>Jyri Holttinen, koskettimet<br>Johannes Österlund, sähkökitara<br>Pasi Ryökkynen, basso<br> <br><b>Soul Strings -jousiyhtye</b></p>", "sv": "<p>Camilla Bäckmans band och stråkbandet Soul Strings presenterar sitt samarbetes frukter på Esplanadestraden för första gången.</p><p>Sångaren-låtskrivaren och violinisten <b>Camilla Bäckman</b> släppte sitt debutalbum Give Me A Moment hösten 2022.</p>", "en": "<p>The Espa Stage proudly presents the results of the collaboration between Camilla Bäckman and the string band Soul Strings for the first time.</p><p>Singer-songwriter and violinist <b>Camilla Bäckman</b> released her debut album, Give Me A Moment, in autumn 2022.</p>" }, "name": { "fi": "Open Stage: Camilla Bäckman", "sv": "Open Stage: Camilla Bäckman", "en": "Open Stage: Camilla Bäckman" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60547/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59903", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "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:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 794, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:350", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.556582Z", "last_modified_time": "2024-02-06T13:19:15.225361Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 429, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 984, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5960, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4813, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5016, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1170, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2023-09-02T04:40:32.318089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1134, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta", "sv": "verkstadsverksamhet", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4054, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:58.941531Z", "last_modified_time": "2023-09-07T14:19:58.941559Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731093.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4054/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:58.788791Z", "last_modified_time": "2023-10-21T20:13:57.478366Z", "date_published": null, "start_time": "2023-08-22T07:30:00Z", "end_time": "2023-08-22T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/914FCD618F18DC9CFAA4C1DD9E5F7408/Aamupaivatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/914FCD618F18DC9CFAA4C1DD9E5F7408/Formiddagsdans", "en": "http://www.stoa.fi/en/events/event/914FCD618F18DC9CFAA4C1DD9E5F7408/Dances_in_the_Morning" }, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.</p><p>Tänään Jussi Väänäsen kanssa tansseissa mukana Sanna Hento!</p><p>Aiempaa osaamista et tarvitse eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona. Vapaa pääsy. <br> <br>Ohjauskieli: suomi</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska <br>Fritt inträde.</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish <br>Free entry</p>" }, "name": { "fi": "Aamupäivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Förmiddagsdans", "en": "Dances in the Morning" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59903/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59742", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "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:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:105", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.060968Z", "last_modified_time": "2024-02-06T13:19:14.616316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1314, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Lastentapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1953, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:348", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.541371Z", "last_modified_time": "2024-02-06T13:19:15.204233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1061, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:46", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.650020Z", "last_modified_time": "2024-02-06T13:19:14.062702Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 712, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Annantalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5960, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4813, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5016, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?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": 13446, "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4053, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:58.554304Z", "last_modified_time": "2023-09-07T14:19:58.554357Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729767.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4053/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:19:58.389789Z", "last_modified_time": "2023-10-21T20:13:57.384526Z", "date_published": null, "start_time": "2023-08-22T07:30:00Z", "end_time": "2023-08-22T08:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FF58DB85E43B653C789622B653479EF2/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/FF58DB85E43B653C789622B653479EF2/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/FF58DB85E43B653C789622B653479EF2/Children_s_summer_music_classes" }, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59742/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269207", "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": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "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, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@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:10673", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.802978Z", "last_modified_time": "2024-02-06T13:24:11.621016Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 890, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Nuoret", "sv": "Unga", "en": "Youth", "ru": "Nuoret RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?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:12006", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:54.198666Z", "last_modified_time": "2024-02-06T13:24:11.600338Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 520, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Nuorten tapahtumat", "sv": "Ungdomar", "en": "Teens", "ru": "Подросткам" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9501, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5034, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-05T13:02:59.589926Z", "last_modified_time": "2023-10-05T13:02:59.589952Z", "url": "https://www.helmet.fi/download/noname/{16B5F7A1-372F-40D2-A541-B9B38137C254}/106507", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5034/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-10-05T13:02:59.421892Z", "last_modified_time": "2023-10-21T17:24:59.467480Z", "date_published": "2023-10-05T11:30:00Z", "start_time": "2023-10-21T15:30:00Z", "end_time": "2023-10-21T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Liity mukaan juhlistamaan Pointin 10-vuotista taivalta!" }, "info_url": null, "description": { "fi": "<p>Liity mukaan juhlistamaan Pointin 10-vuotista taivalta! Tämä iloinen tilaisuus on järjestetty yhteistyössä Nuori Espoon osallisuusryhmän kanssa. Luvassa on herkullista tarjoiluja, mahtavaa musiikkia ja pieniä kilpailuja!</p><p>Tapahtuma on suunnattu 12-20-vuotiaille nuorille ja se on täysin maksuton sekä päihteetön. Sisäänkäynti tapahtumaan on Sellosalin puolelta.</p><p>Nähdään Nuortentila Pointissa. Tervetuloa mukaan juhlimaan!🎈 #PointinSynttärit</p><p>Kuva: <a href=\"https://www.pexels.com/fi-fi/kuva/hauska-juhlinta-syntymapaiva-onnellisuus-5805042/\">Tima Miroshnichenko</a></p>" }, "name": { "fi": "Pointin 10v. syntymäpäiväjuhlat" }, "provider_contact_info": null, "location_extra_info": { "fi": "Nuortentila Pointti" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269207/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269731", "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": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "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, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5495, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-17T13:46:32.451422Z", "last_modified_time": "2023-10-17T13:46:32.451452Z", "url": "https://www.helmet.fi/download/noname/{9622999C-727A-4DE7-A55E-5BDB23F8376F}/106847", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5495/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-17T13:46:31.863033Z", "last_modified_time": "2023-10-21T14:25:15.549088Z", "date_published": "2023-10-17T11:15:22.737000Z", "start_time": "2023-10-21T08:00:00Z", "end_time": "2023-10-21T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Digiopastusta. Apua digiasioiden kanssa." }, "info_url": null, "description": { "fi": "<h3>Lauantaina 21.10. klo 11-13 aulassa</h3></p><p>Digiopastusta. Apua digiasioiden kanssa. Otathan mukaan oman mobiililaitteesi ja pankkitunnuksesi.</p><p>Lisätietoja nordea.fi/digineuvonta</p>" }, "name": { "fi": "Nordea tarjoaa digiopastusta" }, "provider_contact_info": null, "location_extra_info": { "fi": "aula" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269731/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264913", "has_user_editable_resources": false, "location": { "id": "tprek:45317", "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:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:jätkäsaari", "municipality": "Helsinki", "name": { "fi": "Jätkäsaari", "sv": "Busholmen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:länsisatama", "municipality": "Helsinki", "name": { "fi": "Länsisatama", "sv": "Västra Hamnen" } } ], "created_time": "2023-08-15T11:13:31.858009Z", "last_modified_time": "2025-10-11T05:09:43.856353Z", "custom_data": null, "email": "jatkasaaren_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00220", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 187, "image": 9558, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.920868, 60.159977 ] }, "telephone": { "fi": "+358 9 310 85815" }, "street_address": { "fi": "Tyynenmerenkatu 1", "sv": "Stillahavsgatan 1", "en": "Tyynenmerenkatu 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/jatkasaari", "sv": "http://www.helmet.fi/busholmen", "en": "http://www.helmet.fi/jatkasaarilibrary" }, "description": null, "name": { "fi": "Jätkäsaaren kirjasto", "sv": "Busholmens bibliotek", "en": "Jätkäsaari Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45317/?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:11699", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:49.241364Z", "last_modified_time": "2024-02-06T13:24:08.826070Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2655, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Opastukset ja kurssit", "sv": "Undervisning och kurser", "en": "Training and courses", "ru": "Курсы" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2623, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:05.767384Z", "last_modified_time": "2023-08-15T15:28:05.767414Z", "url": "https://www.helmet.fi/download/noname/{280DF597-F329-43B4-9BA1-55990A64A0FE}/104761", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2623/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:37:51.703058Z", "last_modified_time": "2023-10-21T14:23:35.371707Z", "date_published": "2023-08-07T15:27:49.910000Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-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, "short_description": { "en": "Bring a handicraft with you to Jätkäsaari handicraft evening" }, "info_url": null, "description": { "en": "<p>Jätkäsaari handicraft evenings take place every other Wednesday in Jätkäsaari library. Crab your knitting, crocheting or any other craft you are doing with you and come to enjoy doing handicrafts together! In addition to sharing a nice hobby you can get tips and ideas. You can come every time or whenever you have time.</p><p>Handicrafters of all ages and of all skill levels can join. You are welcome to join exactly as you are. Just bring a handicraft with you that you can work on. It’s also possible to get help from the organiser of the evenings for basic techniques. Tea and small snacks are also provided. See you in the library!</p>" }, "name": { "en": "Jätkäsaari handicraft evening" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264913/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268304", "has_user_editable_resources": false, "location": { "id": "tprek:18262", "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:14:55.530181Z", "last_modified_time": "2024-02-06T13:10:26.783987Z", "custom_data": null, "email": "lumo.kirjasto@vantaa.fi", "contact_type": null, "address_region": null, "postal_code": "01450", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 329, "image": 8075, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.076616, 60.352 ] }, "telephone": { "fi": "+358 43 825 1305" }, "street_address": { "fi": "Urpiaisentie 14", "sv": "Gråsiskvägen 14", "en": "Urpiaisentie 14" }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "info_url": { "fi": "https://www.helmet.fi/lumonkirjasto", "sv": "https://www.helmet.fi/lumosbibliotek", "en": "https://www.helmet.fi/lumolibrary" }, "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." }, "name": { "fi": "Lumon kirjasto", "sv": "Lumos bibliotek", "en": "Lumo Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4788, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T12:34:37.254179Z", "last_modified_time": "2023-09-15T12:34:37.254209Z", "url": "https://www.helmet.fi/download/noname/{9A4915E1-46BA-4D27-BC87-A8D7E7C10670}/105886", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4788/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-15T12:37:00.628514Z", "last_modified_time": "2023-10-21T14:23:35.289000Z", "date_published": "2023-09-15T11:03:00Z", "start_time": "2023-09-20T05:00:00Z", "end_time": "2023-09-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, "short_description": { "fi": "Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023." }, "info_url": null, "description": { "fi": "<p>Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023.</p><p>\"Värikäs maailmani -taidenäyttelyssä tarkastellaan luonnon kauneutta ja ihmisen yhteyttä siihen. Teosten abstraktisuus nostattaa maalaukset uudelle tasolle henkisesti, ja jokainen voi tulkita teoksia omasta värikkäästä maailmastaan käsin.\"</p><p> <em>Kuva: Sini-Maaria Vänttinen</em> </p>" }, "name": { "fi": "Värikäs maailmani -taidenäyttely 16.9.-3.10.23" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268304/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267868", "has_user_editable_resources": false, "location": { "id": "tprek:8269", "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:pasila", "municipality": "Helsinki", "name": { "fi": "Pasila", "sv": "Böle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itä-pasila", "municipality": "Helsinki", "name": { "fi": "Itä-Pasila", "sv": "Östra Böle" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:pasila", "municipality": "Helsinki", "name": { "fi": "Pasila", "sv": "Böle" } } ], "created_time": "2023-08-15T08:12:42.916028Z", "last_modified_time": "2024-02-06T13:09:56.614124Z", "custom_data": null, "email": "tietopalvelu.pasila@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00520", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 246, "image": 7827, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.935858, 60.200836 ] }, "telephone": { "fi": "+358 9 310 85001" }, "street_address": { "fi": "Kellosilta 9", "sv": "Klockbron 9", "en": "Kellosilta 9" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/pasilankirjasto", "sv": "http://www.helmet.fi/bolebibliotek", "en": "http://www.helmet.fi/pasilalibrary" }, "description": null, "name": { "fi": "Pasilan kirjasto", "sv": "Böle bibliotek", "en": "Pasila Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8269/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3913, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-06T14:28:05.588538Z", "last_modified_time": "2023-09-06T14:28:05.588557Z", "url": "https://www.helmet.fi/download/noname/{05EE714F-C7AD-4897-BA13-466951A883CD}/105657", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3913/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-06T14:28:05.446627Z", "last_modified_time": "2023-10-21T14:23:35.202880Z", "date_published": "2023-09-06T13:16:00Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-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, "short_description": { "fi": "Työpajan aikana perehdytään uskontolukutaidon käsitteeseen, uskontojen väliseen vuoropuheluun sekä uskonnollisen moninaisuuden mahdollisuuksiin." }, "info_url": null, "description": { "fi": "<p>Haluatko syventää ymmärrystäsi eri uskontojen vaikutuksesta yhteiskuntaan ja ihmisiin? Kaipaatko työkaluja uskontojen moninaisuuden hahmottamiseen ja eri uskontoihin kuuluvien kohtaamiseen?</p><p>USKOT-foorumin ja Helsingin kaupunginkirjaston Kulttuurinen moninaisuus ja kirjastot -hankkeen \"Uskontolukutaito – Avaimia yhteisymmärrykseen” -työpajassa pääset edistämään uskontolukutaitoasi keskustelevalla otteella! Uskontolukutaito on kyky ymmärtää erilaisia uskontoja ja nähdä niiden pintaa syvemmälle. Edellytyksenä on taito kohdata toisemme kunnioittavasti ja avoimesti.</p><p>Työpajan aikana perehdytään uskontolukutaidon käsitteeseen, uskontojen väliseen vuoropuheluun sekä uskonnollisen moninaisuuden mahdollisuuksiin. Kouluttajana toimivat uskontodialogin asiantuntija ja hindu Gurmann Saini (USKOT-foorumi) sekä antirasismin ja moninaisuustyön asiantuntija, Kulttuurinen moninaisuus ja kirjastot -hankkeen projektikoordinaattori ja muslimi Nahla Hewidy (Helsingin kaupunginkirjasto). Työpaja on avoin ja maksuton kaikille aiheesta kiinnostuneille kirjaston kävijöille.</p><p>Tervetuloa!</p><p> <strong>Työpajat muissa kirjastoissa:</strong> </p><ul> <li>Kannelmäen kirjastossa 5.10.2023</li> <li>Pitäjänmäen kirjastossa 18.10.2023</li> <li>Etelä-Haagan kirjastossa 2.11.2023</li> <li>Munkkiniemen kirjastossa 8.11.2023</li> </ul>" }, "name": { "fi": "Uskontolukutaito – Avaimia yhteisymmärrykseen" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267868/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267545", "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": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "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, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@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: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": 3159, "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: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:10844", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:20:31.382165Z", "last_modified_time": "2024-03-12T15:19:19.756890Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 147, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Sellon kirjasto ", "sv": "Sellobiblioteket", "ru": "Библиотека Селло" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10844/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11383", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T15:26:27.514853Z", "last_modified_time": "2024-02-06T13:37:47.200418Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 154, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Афиша", "ru": "Афиша" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11383/?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: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: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": 2896, "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": 13446, "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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2717, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:15.983282Z", "last_modified_time": "2024-02-06T13:38:13.903546Z", "url": "https://www.helmet.fi/download/noname/{C5912B48-ACE1-47D2-A3E7-F56FE6F9BDE4}/104918", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-01T10:28:56.099709Z", "last_modified_time": "2023-10-21T14:23:35.121901Z", "date_published": "2023-09-01T07:54:10.803000Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-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, "short_description": { "fi": "Добро пожаловать на Семейные посиделки, где можно познакомиться с другими родителями и найти детям компанию для игр их возраста! На посиделках можно приятно провести время, обменяться информацией, поделиться опытом и получить поддержку. Дети также смогут найти новых друзей в библиотеке.", "ru": "Добро пожаловать на Семейные посиделки, где можно познакомиться с другими родителями и найти детям компанию для игр их возраста! На посиделках можно приятно провести время, обменяться информацией, поделиться опытом и получить поддержку. Дети также смогут найти новых друзей в библиотеке." }, "info_url": null, "description": { "fi": "<p>Perhekahvila on kohtauspaikka venäjänkielisille vanhemmille ja lapsille.</p><p>Добро пожаловать на Семейные посиделки, где можно познакомиться с другими родителями и найти детям компанию для игр их возраста! На посиделках можно приятно провести время, обменяться информацией, поделиться опытом и получить поддержку. Дети также смогут найти новых друзей в библиотеке. </p><p>Семейные посиделки — это места встреч, созданные родителями и управляемые волонтерами, где каждый участник является важной частью сообщества. Вы можете играть вместе с детьми и планировать будущие мероприятия вместе с другими посетителями в соответствии с вашими пожеланиями. </p><p>Семейные посиделки организуют встречи в библиотеке Sello каждую вторую среду с 18:00 до 20:00. Мероприятие проводится на русском языке. Встречи открыты для всех желающих. Участие бесплатно.</p>", "ru": "<p>Добро пожаловать на Семейные посиделки, где можно познакомиться с другими родителями и найти детям компанию для игр их возраста! На посиделках можно приятно провести время, обменяться информацией, поделиться опытом и получить поддержку. Дети также смогут найти новых друзей в библиотеке. </p><p>Семейные посиделки — это места встреч, созданные родителями и управляемые волонтерами, где каждый участник является важной частью сообщества. Вы можете играть вместе с детьми и планировать будущие мероприятия вместе с другими посетителями в соответствии с вашими пожеланиями. </p><p>Семейные посиделки организуют встречи в библиотеке Sello каждую вторую среду с 18:00 до 20:00. Мероприятие проводится на русском языке. Встречи открыты для всех желающих. Участие бесплатно.</p>" }, "name": { "fi": "Tervetuloa Venäjänkieliseen perhekahvilaan!", "ru": "Семейные посиделки на русском языке" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka, отдел детской литературы", "ru": "Jaminurkka, отдел детской литературы" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267545/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264893", "has_user_editable_resources": false, "location": { "id": "tprek:45317", "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:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:jätkäsaari", "municipality": "Helsinki", "name": { "fi": "Jätkäsaari", "sv": "Busholmen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:länsisatama", "municipality": "Helsinki", "name": { "fi": "Länsisatama", "sv": "Västra Hamnen" } } ], "created_time": "2023-08-15T11:13:31.858009Z", "last_modified_time": "2025-10-11T05:09:43.856353Z", "custom_data": null, "email": "jatkasaaren_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00220", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 187, "image": 9558, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.920868, 60.159977 ] }, "telephone": { "fi": "+358 9 310 85815" }, "street_address": { "fi": "Tyynenmerenkatu 1", "sv": "Stillahavsgatan 1", "en": "Tyynenmerenkatu 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/jatkasaari", "sv": "http://www.helmet.fi/busholmen", "en": "http://www.helmet.fi/jatkasaarilibrary" }, "description": null, "name": { "fi": "Jätkäsaaren kirjasto", "sv": "Busholmens bibliotek", "en": "Jätkäsaari Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45317/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2622, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:05.394841Z", "last_modified_time": "2023-08-15T15:28:05.394863Z", "url": "https://www.helmet.fi/download/noname/{3FEA6CFA-6201-4034-A1D8-5F8BEF461E88}/102538", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2622/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:37:51.068371Z", "last_modified_time": "2023-10-21T14:23:35.043187Z", "date_published": "2023-07-07T08:50:00Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-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, "short_description": { "fi": "Käsitöitä ja yhdessäoloa" }, "info_url": null, "description": { "fi": "<p>Kaipaatko seuraa käsitöiden tekemiseen? Jätkäsaaren käsityöpiiri kokoontuu joka toinen keskiviikko Jätkäsaaren kirjastoon tekemään yhdessä käsitöitä. Nappaa mukaasi kudin, virkkuutyö, askartelu tai mitä sinulla onkaan työn alla, ja tule nauttimaan käsitöiden tekemisestä yhdessä! Yhteisen harrastuksen lisäksi ryhmässä voidaan jakaa vinkkejä ja ideoita. Paikalle voi tulla jokaisena kertana tai aina, kun aika sallii.</p><p>Kaikenikäiset ja -taitoiset käsitöiden tekijät ovat tervetulleita käsityöpiiriin. Olet tervetullut osallistumaan juuri sellaisena, kuin olet. Tuo mukanasi joku oma työ, jota voit tehdä. Käsityöpiirin ohjaajalta on mahdollista saada opastusta peruskäsityötekniikoihin. Käsityöpiireissä on tarjolla teetä ja keksejä. Tavataan käsityön merkeissä kirjastossa!</p>" }, "name": { "fi": "Jätkäsaaren käsityöpiiri" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264893/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264116", "has_user_editable_resources": false, "location": { "id": "tprek:51342", "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:vironniemi", "municipality": "Helsinki", "name": { "fi": "Vironniemi", "sv": "Estnäs" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kluuvi", "municipality": "Helsinki", "name": { "fi": "Kluuvi", "sv": "Gloet" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kluuvi", "municipality": "Helsinki", "name": { "fi": "Kluuvi", "sv": "Gloet" } } ], "created_time": "2023-08-15T12:11:22.597441Z", "last_modified_time": "2024-04-12T05:09:52.010183Z", "custom_data": null, "email": "oodi@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1220, "image": 9855, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.938158, 60.17397 ] }, "telephone": { "fi": "+358 9 310 85000" }, "street_address": { "fi": "Töölönlahdenkatu 4", "sv": "Tölöviksgatan 4", "en": "Töölönlahdenkatu 4" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.oodihelsinki.fi/", "sv": "https://oodihelsinki.fi/sv/", "en": "https://oodihelsinki.fi/en/" }, "description": { "fi": "Oodi on tapahtumapaikka, lukemisen talo ja monipuolinen kaupunkikokemus.\nOodi tarjoaa tietoja, taitoja ja tarinoita, ja sinne on helppo tulla oppimaan,\neläytymään, nauttimaan ja työskentelemään. Kaikille avoin uuden ajan kirjasto\non elävä ja toiminnallinen kohtaamispaikka.", "sv": "Ode är en evenemangsplats, ett läsandets hus och en mångsidig stadsupplevelse. Det bjuder på kunskap, nya färdigheter och berättelser, och är lättillgänglig för inlärning, inlevelse, arbete och avkoppling. Det är ett modernt bibliotek och en levande och funktionell mötesplats till för alla stadsbor.", "en": "Oodi is a venue for events, a house of reading and a diverse urban experience.\nIt will provide its users with knowledge, new skills and stories, and will be an\neasy place to access for learning, story immersion, work and relaxation. Oodi\nis a library of a new era, a living and functional meeting place open for all." }, "name": { "fi": "Keskustakirjasto Oodi", "sv": "Helsingfors centrumbibliotek Ode", "en": "Helsinki Central Library Oodi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?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:10672", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.706978Z", "last_modified_time": "2024-02-06T13:24:09.688763Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2814, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Maahanmuuttajat", "sv": "Immigranter", "en": "Immigrants", "ru": "Maahanmuuttajat RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?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:11733", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.739009Z", "last_modified_time": "2024-02-06T13:24:07.909651Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3118, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Kielikahvilat ja keskusteluryhmät", "sv": "Språkcafeér och diskussionsgrupper", "en": "Language Cafés and discussion groups", "ru": "Языковые кафе и дискуссионные клубы" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p14004", "has_user_editable_resources": false, "alt_labels": [ "diskussion" ], "created_time": "2023-08-16T05:19:31.102174Z", "last_modified_time": "2023-08-16T05:19:31.102192Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2665, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "keskustelu", "sv": "samtal", "en": "conversation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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": 3855, "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" }, { "id": "yso:p6165", "has_user_editable_resources": false, "alt_labels": [ "immigrantit", "immigranter" ], "created_time": "2023-08-16T05:19:19.055622Z", "last_modified_time": "2023-08-16T05:19:19.055643Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2220, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "maahanmuuttajat", "sv": "invandrare", "en": "immigrants" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2867, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:27.164650Z", "last_modified_time": "2024-02-06T13:38:52.477338Z", "url": "https://www.helmet.fi/download/noname/{ED14B8A4-76B1-425F-BFD7-BCD350D580E3}/101189", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2867/?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:p6165/?format=api" } ], "created_time": "2023-08-15T15:37:50.720517Z", "last_modified_time": "2023-10-21T14:23:34.972066Z", "date_published": "2023-07-19T09:30:00Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-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, "short_description": { "fi": "Puhutaan suomea" }, "info_url": null, "description": { "fi": "<p>Haluatko saada rohkeutta puhua suomea?</p><p> <strong>Puhutaan-ryhmässä</strong> keskustelemme suomeksi ja harjoittelemme puhekieltä yhdessä.</p><p>Puheenaiheina voi olla vaikkapa uutiset, työnhaku tai eri kulttuurit. Päätämme yhdessä kiinnostavat aiheet.</p><p>Voit osallistua ryhmään, jos osaat suomen kielen alkeet. Ryhmä on ilmainen eikä siihen tarvitse ilmoittautua. Tervetuloa!</p><p>Lisätietoa: <strong>vapaaehtoiset@pakolaisapu.fi </strong></p>" }, "name": { "fi": "Puhutaan-ryhmä" }, "provider_contact_info": null, "location_extra_info": { "fi": "Oppimistila 3, 2. krs" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264116/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262328", "has_user_editable_resources": false, "location": { "id": "tprek:8154", "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:ullanlinna", "municipality": "Helsinki", "name": { "fi": "Ullanlinna", "sv": "Ulrikasborg" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } } ], "created_time": "2023-08-15T08:12:38.106783Z", "last_modified_time": "2024-02-06T13:09:55.741684Z", "custom_data": null, "email": "rikhardinkadun_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00130", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 354, "image": 7811, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.946783, 60.166336 ] }, "telephone": { "fi": "+358 9 310 85013" }, "street_address": { "fi": "Rikhardinkatu 3", "sv": "Richardsgatan 3", "en": "Rikhardinkatu 3" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/rikhardinkadunkirjasto", "sv": "http://www.helmet.fi/richardsgatansbibliotek", "en": "http://www.helmet.fi/rikhardinkatulibrary" }, "description": null, "name": { "fi": "Rikhardinkadun kirjasto", "sv": "Richardsgatans bibliotek", "en": "Rikhardinkatu Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?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: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:11727", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.526740Z", "last_modified_time": "2024-02-06T13:24:10.745704Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 900, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lukupiirit", "sv": "Bokcirklar", "en": "Book clubs", "ru": "Литературные кружки" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p14004", "has_user_editable_resources": false, "alt_labels": [ "diskussion" ], "created_time": "2023-08-16T05:19:31.102174Z", "last_modified_time": "2023-08-16T05:19:31.102192Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2665, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "keskustelu", "sv": "samtal", "en": "conversation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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": 4029, "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2716, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:12.603004Z", "last_modified_time": "2024-02-06T13:41:07.319869Z", "url": "https://www.helmet.fi/download/noname/{C0777780-DF1D-4D55-98CA-6038419BB237}/104305", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2716/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:37:50.370748Z", "last_modified_time": "2023-10-21T14:23:34.897014Z", "date_published": "2023-06-29T16:16:00Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-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, "short_description": { "fi": "Tervetuloa englanninkieliseen lukupiiriin, welcome to the Bookworms Club!", "en": "Welcome to the Bookworms Club, an English language book club that gathers monthly in Rikhardinkatu Library." }, "info_url": null, "description": { "fi": "<p>Tervetuloa englanninkieliseen lukupiiriin, welcome to the Bookworms Club! Every book lover is welcome!</p><p>Lukupiiri kokoontuu kuukausittain Rikhardinkadun kirjastossa. Tapahtuma on englanninkielinen. Ei ennakkoilmoittautumista! Voit tulla suoraan paikalle kokoontumisiin. Lisätietoja Instagram-sivulta TheBookwormsClubFI </p><p>Syksyn 2023 ohjelma: </p><p>23.8. The Vanishing Half by Brit Bennett<br> 20.9. Brideshead Revisited by Evelyn Waugh<br> 25.10. The Unbearable Lightness of Being by Milan Kundera<br> 22.11. Natives: Race and Class in the Ruins of Empire by Akala<br> 13.12. Anxious People by Fredrik Backman</p>", "en": "<p>Welcome to the Bookworms Club, an English language book club that gathers monthly in Rikhardinkatu Library! Every book lover is welcome! </p><p>There is no need to register in advance, so feel free to show up at the meeting. For further information on our meetings and if you wish to contact us, please visit our Instagram page TheBookwormsClubFI</p><p>The list of the books which will be discussed in fall 2023:</p><p>August 23 - The Vanishing Half by Brit Bennett<br> September 20 - Brideshead Revisited by Evelyn Waugh<br> October 25 - The Unbearable Lightness of Being by Milan Kundera<br> November 22 - Natives: Race and Class in the Ruins of Empire by Akala<br> December 13 - Anxious People by Fredrik Backman</p>" }, "name": { "fi": "The Bookworms Club - Englanninkielinen lukupiiri", "en": "The Bookworms Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kokoustila Ture, 1. krs", "en": "Meeting room Ture, 1st floor" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262328/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261492", "has_user_editable_resources": false, "location": { "id": "tprek:8344", "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:lauttasaari", "municipality": "Helsinki", "name": { "fi": "Lauttasaari", "sv": "Drumsö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kotkavuori", "municipality": "Helsinki", "name": { "fi": "Kotkavuori", "sv": "Örnberget" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:lauttasaari", "municipality": "Helsinki", "name": { "fi": "Lauttasaari", "sv": "Drumsö" } } ], "created_time": "2023-08-15T08:12:46.059343Z", "last_modified_time": "2024-03-20T06:09:26.889177Z", "custom_data": null, "email": "lauttasaaren_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00200", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 301, "image": 7839, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.88338, 60.15862 ] }, "telephone": { "fi": "+358 9 310 85020" }, "street_address": { "fi": "Pajalahdentie 10 a", "sv": "Smedjeviksvägen 10 a", "en": "Pajalahdentie 10 a" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/lauttasaarenkirjasto", "sv": "http://www.helmet.fi/drumsobibliotek", "en": "http://www.helmet.fi/drumsobibliotek" }, "description": null, "name": { "fi": "Lauttasaaren kirjasto", "sv": "Drumsö bibliotek", "en": "Lauttasaari Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8344/?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:10817", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:50.153654Z", "last_modified_time": "2024-02-06T13:24:27.515288Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 274, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lauttasaaren kirjasto ", "sv": "Drumsö bibliotek " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10817/?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:12027", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:21:56.613884Z", "last_modified_time": "2024-02-06T13:24:11.640511Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 243, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Nuorten lomatekemistä ", "sv": "Nuorten lomatekemistä ", "en": "Nuorten lomatekemistä ", "ru": "Nuorten lomatekemistä " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?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": 4010, "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2621, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:02.476378Z", "last_modified_time": "2024-02-06T13:38:14.260125Z", "url": "https://www.helmet.fi/download/noname/{4CD54B7C-B645-4457-99BD-127A6A2498E8}/98897", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2621/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:37:48.991541Z", "last_modified_time": "2023-10-21T14:23:34.826688Z", "date_published": "2022-12-21T08:44:00Z", "start_time": "2023-09-20T14:00:00Z", "end_time": "2023-09-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, "short_description": { "fi": "Kaikenikäiset shakista kiinnostuneet ovat tervetulleita oppimaan shakin alkeita Lauttasaaren kirjastoon." }, "info_url": null, "description": { "fi": "<p>Shakkiopetusta Lauttasaaressa<br><br> Kaikenikäiset shakista kiinnostuneet ovat tervetulleita oppimaan shakin alkeita Lauttasaaren kirjastoon. Maksuton opetus (suomeksi ja englanniksi) järjestetään monitoimitilassa keskiviikkoisin klo 17–20.</p><p>Opetus on vapaamuotoista:</p><p>- Mukaan voi tulla mihin aikaan tahansa.<br> - Opastamme shakin sääntöihin ja pelin eri osa-alueisiin (avaukset, taktiikka, strategia, loppupeli, kilpapelaaminen).<br> - Pelailemme ilman shakkikelloa.<br> - Neuvottelupeleissä etsimme yhdessä ääneen analysoimalla peliaseman vahvuudet, heikkoudet, mahdollisuudet ja uhat.<br> - Ratkomme taktisia pulmia ja loppupelitehtäviä.<br> - Annamme vinkkejä shakin itseopiskeluun.</p><p>Tapahtuman järjestää Lauttasaaren suomalainen shakkikerho.</p><p>Lämpimästi tervetuloa!</p>" }, "name": { "fi": "Shakkikerho" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261492/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261406", "has_user_editable_resources": false, "location": { "id": "tprek:8177", "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:oulunkylä", "municipality": "Helsinki", "name": { "fi": "Oulunkylä", "sv": "Åggelby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:patola", "municipality": "Helsinki", "name": { "fi": "Patola", "sv": "Dammen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:oulunkylä", "municipality": "Helsinki", "name": { "fi": "Oulunkylä", "sv": "Åggelby" } } ], "created_time": "2023-08-15T08:12:38.612996Z", "last_modified_time": "2024-02-06T13:09:55.826412Z", "custom_data": null, "email": "oulunkylan_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00640", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 193, "image": 7813, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.962605, 60.22807 ] }, "telephone": { "fi": "+358 9 310 85064" }, "street_address": { "fi": "Kylänvanhimmantie 27", "sv": "Byäldstevägen 27", "en": "Kylänvanhimmantie 27" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/oulunkylankirjasto", "sv": "http://www.helmet.fi/aggelbybibliotek", "en": "http://www.helmet.fi/oulunkylalibrary" }, "description": null, "name": { "fi": "Oulunkylän kirjasto", "sv": "Åggelby bibliotek", "en": "Oulunkylä Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8177/?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:10673", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.802978Z", "last_modified_time": "2024-02-06T13:24:11.621016Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 890, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Nuoret", "sv": "Unga", "en": "Youth", "ru": "Nuoret RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?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:10829", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.483391Z", "last_modified_time": "2024-02-06T13:24:26.496595Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 127, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Oulunkylän kirjasto ", "sv": "Åggelby bibliotek ", "en": "Oulunkylä Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10829/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:12006", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:54.198666Z", "last_modified_time": "2024-02-06T13:24:11.600338Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 520, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Nuorten tapahtumat", "sv": "Ungdomar", "en": "Teens", "ru": "Подросткам" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9501, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2965, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:37:48.059889Z", "last_modified_time": "2024-02-06T13:40:12.000595Z", "url": "https://www.helmet.fi/download/noname/{D2CC3048-70F5-4D24-B264-BA8CD8DF8DF2}/99912", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2965/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-08-15T15:37:47.663808Z", "last_modified_time": "2023-10-21T14:23:34.739696Z", "date_published": "2023-06-14T10:41:00Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-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, "short_description": { "fi": "Tule mukaan tekemään luovan kirjoittamisen harjoituksia nuorten kirjoittajien klubille kirjailija Sini Helmisen johdatuksella." }, "info_url": null, "description": { "fi": "<p>Haaveiletko kirjoittamisesta? Tule mukaan tekemään luovan kirjoittamisen harjoituksia. Aiempaa kokemusta ei tarvita. Voit ottaa mukaan kynän ja muistikirjan tai tietokoneen, mutta ne saa myös lainaksi kirjastosta. Klubia vetää kirjailija Sini Helminen. Ei ennakkoilmoittautumista.<br><br> Lisätietoja: Sini 09 310 85064 tai sini.helminen@hel.fi </p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Oulunkylan_kirjasto\">Oulunkylän kirjasto</a> </p>" }, "name": { "fi": "Nuorten kirjoittajien klubi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261406/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:259596", "has_user_editable_resources": false, "location": { "id": "tprek:8359", "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:tapanila", "municipality": "Helsinki", "name": { "fi": "Tapanila", "sv": "Mosabacka" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:tapaninkylä", "municipality": "Helsinki", "name": { "fi": "Tapaninkylä", "sv": "Staffansby" } } ], "created_time": "2023-08-15T08:12:47.353888Z", "last_modified_time": "2024-02-06T13:09:57.465473Z", "custom_data": null, "email": "tapanilan_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00730", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 151, "image": 7842, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.018679, 60.26571 ] }, "telephone": { "fi": "+358 9 310 85073" }, "street_address": { "fi": "Hiidenkiventie 21", "sv": "Trollstensvägen 21", "en": "Hiidenkiventie 21" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/tapanilankirjasto", "sv": "http://www.helmet.fi/mosabackabibliotek", "en": "http://www.helmet.fi/tapanilalibrary" }, "description": null, "name": { "fi": "Tapanilan kirjasto", "sv": "Mosabacka bibliotek", "en": "Tapanila Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?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:11727", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.526740Z", "last_modified_time": "2024-02-06T13:24:10.745704Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 900, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lukupiirit", "sv": "Bokcirklar", "en": "Book clubs", "ru": "Литературные кружки" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p14004", "has_user_editable_resources": false, "alt_labels": [ "diskussion" ], "created_time": "2023-08-16T05:19:31.102174Z", "last_modified_time": "2023-08-16T05:19:31.102192Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2665, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "keskustelu", "sv": "samtal", "en": "conversation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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": 3855, "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2714, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:10.772579Z", "last_modified_time": "2024-02-06T13:38:33.314128Z", "url": "https://www.helmet.fi/download/noname/{1AAAEA5E-9E29-45F9-9DA8-006A39C07D9F}/102717", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2714/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:37:47.304107Z", "last_modified_time": "2023-10-21T14:23:34.663874Z", "date_published": "2023-05-25T06:00:00Z", "start_time": "2023-09-20T15:30:00Z", "end_time": "2023-09-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, "short_description": { "fi": "Tervetuloa lukupiiriin!" }, "info_url": null, "description": { "fi": "<p>Tapanilan kirjastossa kerran kuussa keskiviikkoisin klo 18.30-20. Lukupiirin vetäjänä toimii kirjailija, toimittaja Suvi Ahola. Tervetuloa mukaan! </p><p> <strong>23.8.</strong> Eleanor Catton: Valontuojat </p><p> <strong>20.9.</strong> Juha Itkonen: Kaikki oli heidän </p><p> <strong>18.10.</strong> Marina Lewycka: Traktorien lyhyt historia ukrainaksi </p><p> <strong>15.11.</strong> Johanna Sinisalo: Ennen päivänlaskua ei voi </p><p> <strong>13.12.</strong> Sally Rooney: Normaaleja ihmisiä </p><p>Mahdolliset yhteydenotot sekä lukupiirin sähköpostilistalle liittymishalukkuuttaan voi kertoilla osoitteeseen tarja.vuorinne@hel.fi</p>" }, "name": { "fi": "Suvin lukupiiri" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:259596/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268595", "has_user_editable_resources": false, "location": { "id": "tprek:8220", "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:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:malminkartano", "municipality": "Helsinki", "name": { "fi": "Malminkartano", "sv": "Malmgård" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:12:40.881613Z", "last_modified_time": "2024-03-28T06:09:29.566186Z", "custom_data": null, "email": "malminkartanon_kirjasto@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00410", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 210, "image": 7821, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.859592, 60.245884 ] }, "telephone": { "fi": "+358 9 310 85041" }, "street_address": { "fi": "Puustellintie 6", "sv": "Boställsvägen 6", "en": "Puustellintie 6" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/malminkartanonkirjasto", "sv": "http://www.helmet.fi/malmgardbibliotek", "en": "https://www.helmet.fi/malminkartanolibrary" }, "description": null, "name": { "fi": "Malminkartanon kirjasto", "sv": "Malmgårds bibliotek", "en": "Malminkartano Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8220/?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: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: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": 3855, "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" }, { "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": 4010, "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4856, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-20T15:47:43.112218Z", "last_modified_time": "2024-02-06T13:38:13.817229Z", "url": "https://www.helmet.fi/download/noname/{59D538C2-8CB2-461C-A3A3-C66088AEFF43}/100976", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4856/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-20T15:56:23.754039Z", "last_modified_time": "2023-10-21T14:23:34.591279Z", "date_published": "2023-09-20T15:00:05.473000Z", "start_time": "2023-09-20T14:30:00Z", "end_time": "2023-09-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Shanghai-pelikorttipiiri Malminkartanon kirjastossa" }, "info_url": null, "description": { "fi": "<p>Malminkartanon kirjastossa kokoontuu viikoittain korttipelipiiri, jossa pelataan helppoa mutta vähitellen vaikeutuvaa Shanghai-peliä. Yhden pelin kesto on noin 1,5 tuntia, mutta osallistua voi myös lyhyemmän ajan. Tervetuloa mukaan, aikaisempaa kokemusta pelistä et tarvitse. </p><p> <a href=\"https://fi.wikipedia.org/wiki/Shanghai_(peli)\">https://fi.wikipedia.org/wiki/Shanghai_(peli)</a> </p><p> <a href=\"https://www.korttipelit.net/shanghai\">https://www.korttipelit.net/shanghai</a> </p>" }, "name": { "fi": "Shanghai-pelikorttipiiri" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268595/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266796", "has_user_editable_resources": false, "location": { "id": "tprek:8269", "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:pasila", "municipality": "Helsinki", "name": { "fi": "Pasila", "sv": "Böle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itä-pasila", "municipality": "Helsinki", "name": { "fi": "Itä-Pasila", "sv": "Östra Böle" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:pasila", "municipality": "Helsinki", "name": { "fi": "Pasila", "sv": "Böle" } } ], "created_time": "2023-08-15T08:12:42.916028Z", "last_modified_time": "2024-02-06T13:09:56.614124Z", "custom_data": null, "email": "tietopalvelu.pasila@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00520", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 246, "image": 7827, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.935858, 60.200836 ] }, "telephone": { "fi": "+358 9 310 85001" }, "street_address": { "fi": "Kellosilta 9", "sv": "Klockbron 9", "en": "Kellosilta 9" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/pasilankirjasto", "sv": "http://www.helmet.fi/bolebibliotek", "en": "http://www.helmet.fi/pasilalibrary" }, "description": null, "name": { "fi": "Pasilan kirjasto", "sv": "Böle bibliotek", "en": "Pasila Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8269/?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: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:11727", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.526740Z", "last_modified_time": "2024-02-06T13:24:10.745704Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 900, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lukupiirit", "sv": "Bokcirklar", "en": "Book clubs", "ru": "Литературные кружки" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p14004", "has_user_editable_resources": false, "alt_labels": [ "diskussion" ], "created_time": "2023-08-16T05:19:31.102174Z", "last_modified_time": "2023-08-16T05:19:31.102192Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2665, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "keskustelu", "sv": "samtal", "en": "conversation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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": 4029, "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3711, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T11:01:55.560990Z", "last_modified_time": "2024-02-06T13:40:37.308232Z", "url": "https://www.helmet.fi/download/noname/{A6688C52-E520-445E-BA07-AEA3BDBF3528}/99778", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3711/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-25T11:10:08.695043Z", "last_modified_time": "2023-10-21T14:23:34.517561Z", "date_published": "2023-01-26T10:04:00Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Fantasiakirjallisuuden lukupiirissä luetaan laajasti fantasiakirjoja ja keskustellaan niistä." }, "info_url": null, "description": { "fi": "<h3>Fantasiakirjallisuuden lukupiiri järjestetään kerran kuukaudessa sovittuna keskiviikkona klo 18-19.30.</h3><p>2023 syyskauden kirjat:</p><ul> <li>30.8.2023 Reetta Vuokko-Syrjänen: <em>Syntykeho</em></li> <li>20.9.2023 Praedor<em>: kahden maailman seikkailijat</em></li> <li>19.10.2023<em> </em>Stephen King: <em>Musta torni 1: Revolverimies</em></li> <li>15.11.2023<em></em>Juhani Karila: <em>Pienen hauen pyydystys</em></li> <li>13.12.2023<em> tba</em></li> <li></li> </ul><p>Voit osallistua yksittäiseille kokoontumiskerralle, vaikka et haluaisi muuten olla mukana lukupiirissä. Luettavan kirjan voit hakea Pasilan kirjaston palvelualueelta. </p><p>Lukupiirien vetäjänä toimii Matti Järvinen.<br><br> Tervetuloa!<br><br><a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\"><u>Pasilan kirjasto</u></a><br><a href=\"http://pasilankirjasto.wordpress.com/info/\"><u>Pasilan kirjaston lukupiirit</u></a></p>" }, "name": { "fi": "Fantasiakirjallisuuden lukupiiri" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266796/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265568", "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": true, "n_events": 600, "image": 7836, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.14392, 60.20868 ] }, "telephone": { "fi": "+358 9 310 85098" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/vuosaarenkirjasto", "sv": "http://www.helmet.fi/nordsjobibliotek", "en": "http://www.helmet.fi/vuosaarilibrary" }, "description": null, "name": { "fi": "Vuosaaren kirjasto", "sv": "Nordsjö bibliotek", "en": "Vuosaari Library" }, "@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:10672", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.706978Z", "last_modified_time": "2024-02-06T13:24:09.688763Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 2814, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Maahanmuuttajat", "sv": "Immigranter", "en": "Immigrants", "ru": "Maahanmuuttajat RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?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:11405", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T15:26:26.611632Z", "last_modified_time": "2024-02-06T13:37:47.533358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 131, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Афиша", "ru": "Афиша" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11405/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11733", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:44.739009Z", "last_modified_time": "2024-02-06T13:24:07.909651Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3118, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Kielikahvilat ja keskusteluryhmät", "sv": "Språkcafeér och diskussionsgrupper", "en": "Language Cafés and discussion groups", "ru": "Языковые кафе и дискуссионные клубы" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p14004", "has_user_editable_resources": false, "alt_labels": [ "diskussion" ], "created_time": "2023-08-16T05:19:31.102174Z", "last_modified_time": "2023-08-16T05:19:31.102192Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2665, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "keskustelu", "sv": "samtal", "en": "conversation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?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": 3855, "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" }, { "id": "yso:p6165", "has_user_editable_resources": false, "alt_labels": [ "immigrantit", "immigranter" ], "created_time": "2023-08-16T05:19:19.055622Z", "last_modified_time": "2023-08-16T05:19:19.055643Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2220, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "maahanmuuttajat", "sv": "invandrare", "en": "immigrants" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2863, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:24.261046Z", "last_modified_time": "2024-02-06T13:38:51.882962Z", "url": "https://www.helmet.fi/download/noname/{5146EFE1-783F-4EE9-B59D-37CE29D68AE9}/89456", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2863/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T16:42:23.039156Z", "last_modified_time": "2023-10-21T14:23:34.443450Z", "date_published": "2023-08-15T15:00:00Z", "start_time": "2023-09-20T14:30:00Z", "end_time": "2023-09-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Keskustelemme suomeksi ja harjoittelemme puhekieltä yhdessä. Tule mukaan!", "en": "Welcome to improve your Finnish at our Puhutaan suomea! discussion group.", "ru": "Говорим на финском языке и практикуем разговорный язык. Присоединяйтесь!" }, "info_url": null, "description": { "fi": "<h3>Haluatko puhua paremmin suomea?</h3><p>Puhutaan! -ryhmässä keskustelemme suomeksi ja harjoittelemme puhekieltä yhdessä.<br> Puheenaiheina voi olla vaikkapa uutiset, työnhaku tai eri kulttuurit. Päätämme yhdessä kiinnostavat aiheet.</p><p>Ryhmä tapaa Vuosaaren kirjaston kokoushuoneessa keskiviikkoisin klo 17.30–19.30 Tervetuloa mukaan!</p><p> <em>Kysy lisää:<br> vapaaehtoiset(at)pakolaisapu.fi<br> Kaisa Honkala p. +358 44 025 6834</em> </p>", "en": "<h3>Do you want to improve your Finnish?</h3></p><p>In the group, we discuss in Finnish and practice spoken language together. Topics for discussion can be, for example, news, job search or different cultures. We decide on the topics togerher.</p><p>The group will meet in Vuosaari Library's meeting room on Wednesdays from 5:30 pm to 7:30 pm. Welcome aboard!</p><p> <em>More info:<br> vapaaehtoiset(at)pakolaisapu.fi<br> Kaisa Honkala p. +358 44 025 6834</em> </p>", "ru": "<h3>Хотите научиться свободно говорить по-фински?</h3><p>В группе \"Говорим по-фински!\" мы беседуем на финском языке и практикуем вместе разговорный язык. Темы беседы самые разные - новости, заявление на работу, культура и спорт. Мы решаем вместе, о чем будем говорить на нашей встрече.</p><p>Встречи проходят <strong>по средам с 17:30-19:30 в библиотеке Вуосаари</strong> в комнате для собраний.</p><p>Добро пожаловать!</p><p>Вход свободный.</p><p> <em>Дополнительная информация:<br><br> vapaaehtoiset(at)pakolaisapu.fi<br> Kaisa Honkala p. +358 44 025 6834</em> </p>" }, "name": { "fi": "Puhutaan!", "en": "Puhutaan!", "ru": "Говорим по-фински!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265568/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264815", "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 ] }, "telephone": { "fi": "+358 43 824 8307" }, "street_address": { "fi": "Lummetie 4", "sv": "Näckrosvägen 4", "en": "Lummetie 4" }, "address_locality": { "fi": "Vantaa", "sv": "Vanda", "en": "Vantaa" }, "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." }, "name": { "fi": "Tikkurilan kirjasto", "sv": "Dickursby bibliotek", "en": "Tikkurila Library" }, "@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:11194", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:58.414861Z", "last_modified_time": "2024-02-06T13:24:19.241254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 204, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Kurssit ", "sv": "Kurser", "en": "Courses", "ru": "Курсы" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11194/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2713, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:10.410026Z", "last_modified_time": "2023-08-15T15:30:10.410048Z", "url": "https://www.helmet.fi/download/noname/{06C9DD41-61DE-4DC0-BA5A-BF67491AB2DC}/104644", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2713/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:37:46.387394Z", "last_modified_time": "2023-10-21T14:23:34.357186Z", "date_published": "2023-07-31T09:00:00Z", "start_time": "2023-09-20T14:30:00Z", "end_time": "2023-09-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule kokemaan maalaamisen hyvää tekevä vaikutus taideterapiaohjaaja\nAnne Natusen voimauttavan maalaamisen ryhmässä." }, "info_url": null, "description": { "fi": "<p> <br> </p><h3> <strong>* HUOM! RYHMÄ ON TÄYNNÄ *</strong> </h3><h3> <br> </h3><p>Tule kokemaan maalaamisen hyvää tekevä vaikutus taideterapiaohjaaja<br> Anne Natusen voimauttavan maalaamisen ryhmässä.</p><p>Maalataan suorittamatta, annetaan värien puhua ja vaikuttaa. Aikaisempaa<br> kokemusta maalaamisesta ei tarvita.</p><p>Ryhmään ilmoittaudutaan etukäteen,<strong> ja ryhmässä on jo maksimimäärä ilmoittautuneita</strong>. Ryhmä kokoontuu viisi kertaa, joista ensimmäisen kerran <strong>23.8. keskiviikkona klo 17:30 - 19:30</strong> Tikkurilan kirjaston 2. kerroksen Voimala -tilassa.</p><p>Kokoontumiset tämän jälkeen ovat keskiviikkoisin 30.8., 6.9., 13.9., ja 20.9. klo 17:30 - 19:30.</p><p>Maalausmateriaaleja on ryhmän käytettävissä yhteisesti, mutta voit tuoda myös omia maaleja ja työvälineitä. </p><p>Ilmoittautumiset suoraan Anne Natuselle sähköpostitse mielenkuvitus(at)gmail.com tai numeroon 0503562726 (soitto tai tekstiviesti).<br><br><br><br> </p>" }, "name": { "fi": "Voimauttava maalausryhmä" }, "provider_contact_info": null, "location_extra_info": { "fi": "Voimala" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264815/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263627", "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 ] }, "telephone": { "fi": "+358 9 310 85025" }, "street_address": { "fi": "Topeliuksenkatu 6", "sv": "Topeliusgatan 6", "en": "Topeliuksenkatu 6" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.helmet.fi/toolonkirjasto", "sv": "http://www.helmet.fi/tolobibliotek", "en": "http://www.helmet.fi/toololibrary" }, "description": null, "name": { "fi": "Töölön kirjasto", "sv": "Tölö bibliotek", "en": "Töölö Library" }, "@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: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: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": "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": 8544, "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2860, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:21.494235Z", "last_modified_time": "2024-02-06T13:38:12.593937Z", "url": "https://www.helmet.fi/download/noname/{BE95DF29-CB26-4812-93E2-193C37BA7834}/98796", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2860/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-15T15:37:44.595044Z", "last_modified_time": "2023-10-21T14:23:34.279802Z", "date_published": "2023-07-10T11:49:30.683000Z", "start_time": "2023-09-20T14:30:00Z", "end_time": "2023-09-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule lukemaan, koira kuuntelee kaikilla kielillä!", "sv": "Läshunden lyssnar på alla språk - kom och prova!", "en": "Come and read aloud to library´s reading dog!" }, "info_url": null, "description": { "fi": "<p>Haluaisitko harjoitella ääneen lukemista?<br> Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää.</p><p>Varaa oma aikasi kirjaston asiakaspalvelusta tai numerosta 09 3108 5025.<br> Töölön kirjaston lukukoira on tavattavissa keskiviikkona 6.9., 20.9., 4.10., 1.11., 15.11., 29.11. ja 13.12. klo 17.30-19.30.</p><p>Yksi lukuhetki kestää noin 15 min. Lukuhetkeen osallistuvat lukija, koira ja koiran ohjaaja. Ohjaajan tehtävä on valvoa lukuhetkeä sivusta, mutta ei puuttua sen kulkuun.<br><br><em>Lukukoiratoiminnan tavoitteena on lukuharrastuksen edistäminen ja onnistuneen lukukokemuksen luominen. Koirien on todettu lisäävän ihmisen mielihyvähormonien määrää sekä rentouttavan mieltä, minkä vuoksi niiden vaikutus myös lukemiseen liittyvissä haasteissa on myönteinen. Koiralle lukemisen on todettu auttavan lukihäiriöisiä lapsia sekä aikuisia. Koiran läsnäolo vähentää lukemiseen liittyvää kynnystä ja stressiä. Koira ei arvostele, takerru virheisiin tai keskeytä vaan lukijalla on rauha harjoitella lukemista.</em><br><br> Tule lukemaan, koira kuuntelee kaikilla kielillä!<br><br><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliiton lukukoirat</a><br><br><a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Toolon_kirjasto\">Töölön kirjasto</a><br><br> © Helsingin kaupunki / Maarit Hohteri</p>", "sv": "<p>Vill du komma och läsa för en riktig läshund?</p><p>Boka då en tid vid kundtjänstdisken eller tel 09 310 85025.</p><p>En lässtund pågår 15 minuter.</p><p>Fråga gärna mer av personalen!</p><p> <a href=\"https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Tolo_bibliotek\">Tölö bibliotek</a> <br> <br> © Maarit Hohteri</p>", "en": "<p>Come and practice reading with library´s reading dog!</p><p>During a 15-minute reading session, you can read aloud to the dog. Reading dog listens patiently without criticism or interruptions. Dog´s trainer will be present at the session.</p><p>Book your time at the library´s info desk or by telephone 09 3108 5025.</p><p>Welcome!</p><p> <a href=\"https://www.helmet.fi/en-US/Libraries_and_services/Toolo_Library\">Töölö Library</a> <br> <br> © Maarit Hohteri</p>" }, "name": { "fi": "Töölön kirjaston lukukoira", "sv": "Läshund", "en": "Library´s Reading Dog" }, "provider_contact_info": null, "location_extra_info": { "fi": "1. krs", "sv": "1. vån.", "en": "1st floor" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263627/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }