Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default 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/?data_source=helmet&format=api&page=245
https://linkedevents.api.test.hel.ninja/v1/event/?data_source=helmet&format=api&page=246", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?data_source=helmet&format=api&page=244" }, "data": [ { "id": "helmet:273940", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 3495, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-21T13:28:19.729903Z", "last_modified_time": "2024-02-06T13:39:32.335596Z", "name": "", "url": "https://www.helmet.fi/download/noname/{94FA7A80-3535-4178-956E-AE38960E2283}/101519", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3495/?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-12-15T16:23:30.519364Z", "last_modified_time": "2024-02-06T13:40:31.197374Z", "date_published": "2023-12-14T22:00:00Z", "start_time": "2024-02-20T15:30:00Z", "end_time": "2024-02-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, "location_extra_info": null, "provider": null, "description": { "fi": "<p> <strong>Meditaatiokurssi on täynnä. Kiitos kiinnostuksestasi! Kannattaa seurata Lumon kirjaston Helmet-tapahtumasivua mahdollisten uusien kurssien varalta.</strong> </p><p>-----------------------------------------</p><p>Ota hetki aikaa itsellesi ja tule pitämään pieni hengähdystauko! Meditaatiokurssilla opit meditaation alkeet.</p><p>Meditaatiokurssi järjestetään tiistaisin 6.2.-27.2.2024 klo 17.30-18.30 Lumon kirjaston lukusalissa. Ohjaajana toimii Tarakini Rainaho. Kurssi on maksuton.</p><p>Ilmoittaudu mukaan kurssille alla olevasta linkistä 5.2.2023 mennessä. Yhdellä ilmoittautumisella ilmoittaudut mukaan kaikille neljälle tapaamiskerralle. Kurssin maksimiosallistujamäärä 10 henkilöä.</p><p>Voit ottaa halutessasi oma jumppa- tai joogamaton mukaan. Meditoida voi myös tuolilla istuen. </p><p> . </p><p> <em>Kuva: Pixabay/ leninscape / 9 images</em> </p>" }, "name": { "fi": "Meditaatiokurssi" }, "provider_contact_info": null, "short_description": { "fi": "Ota hetki aikaa itsellesi ja tule pitämään pieni hengähdystauko! Meditaatiokurssilla opit meditaation alkeet." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:273940/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:273797", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10801/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 2827, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:46.980837Z", "last_modified_time": "2024-02-06T13:38:27.277030Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F777A5B2-A74E-44DF-9B6C-FE8F1AEEDCA5}/97433", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2827/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-12-15T16:23:30.418059Z", "last_modified_time": "2024-02-06T13:40:31.115927Z", "date_published": "2023-12-15T08:11:00Z", "start_time": "2024-02-20T15:00:00Z", "end_time": "2024-02-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, "location_extra_info": { "fi": "Meri, Kari ja Aalto", "en": "Meri, Kari and Aalto" }, "provider": null, "description": { "fi": "<p>Haluatko harjoitella suomen puhumista? Kielikahvila on kaikille eri kulttuureista ja suomen kielestä kiinnostuneille avoin keskusteluhetki.</p><p>Kielikahvila järjestetään kokoushuoneissa (Meri, Kari tai Aalto) joka tiistai klo 17-18.30.</p><p>Ilmoittaudu kielikahviloihin webropol linkin kautta: <strong><a href=\"https://link.webropol.com/s/kielikahvila23\" title=\"https://link.webropol.com/s/kielikahvila23\">https://link.webropol.com/s/kielikahvila23</a></strong></p><p>Mukaan mahtuu 24 hlöä (12 / kokoushuone).</p><p>Tervetuloa!</p>", "en": "<p>Do you want to practise speaking finnish? Language cafe is an open discussion group for people interested in different cultures and the Finnish language.</p><p>Language cafe is hosted in Meeting rooms (Meri, Aalto or Kari) every Tuesday at 5 PM to 6.30 PM (12 persons / room).</p><p>Pre-register to Language cafe: <strong><a href=\"https://link.webropol.com/s/kielikahvila23\" title=\"https://link.webropol.com/s/kielikahvila23\">https://link.webropol.com/s/kielikahvila23</a></strong></p><p>Welcome!</p>" }, "name": { "fi": "Kielikahvila", "en": "Language cafe" }, "provider_contact_info": null, "short_description": { "fi": "Haluatko harjoitella suomen puhumista? Kielikahvila on kaikille eri kulttuureista ja suomen kielestä kiinnostuneille avoin keskusteluhetki.", "en": "Do you want to practise speaking finnish? Language cafe is an open discussion group for people interested in different cultures and the finnish language." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:273797/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:273221", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8308/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 2828, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:48.057324Z", "last_modified_time": "2024-02-06T13:38:08.591168Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D4324FE7-A9B1-44FB-947B-4DF355320121}/104502", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2828/?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-12-12T15:22:05.047389Z", "last_modified_time": "2024-02-06T13:40:31.030773Z", "date_published": "2023-12-11T22:00:00Z", "start_time": "2024-02-20T15:00:00Z", "end_time": "2024-02-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, "location_extra_info": null, "provider": null, "description": { "fi": "<p> <strong>Finnish language discussion group, Spring 2024</strong> </p><p>Welcome to talk and learn Finnish together! Finnish language discussion group meets on Tuesdays from 5 pm to 6:30 pm in Viikki Library/ group room Puro. First meeting of is on Tuesday January 9, 2024.</p><p>Organized by Malmi parish (Lutheran Church).</p>" }, "name": { "fi": "Finnish language discussion group" }, "provider_contact_info": null, "short_description": { "fi": "Welcome to talk and learn Finnish together!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:273221/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:280801", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10791/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7456, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-31T14:31:04.591441Z", "last_modified_time": "2024-02-06T13:40:30.909660Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D562EE4C-EFC1-4648-ABED-F4B7BD7B2D9A}/109127", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7456/?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": "2024-01-31T14:31:04.568168Z", "last_modified_time": "2024-02-06T13:40:30.946571Z", "date_published": "2024-01-31T12:40:00Z", "start_time": "2024-02-20T13:00:00Z", "end_time": "2024-02-20T16: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, "location_extra_info": { "fi": "Kaupunkiverstas" }, "provider": null, "description": { "fi": "<p>Printtipajassa pääset suunnittelemaan ja toteuttamaan itse printtikuvan tekstiiliin kirjaston henkilökunnan opastuksella! </p><p>Ota mukaan oma tekstiilisi, kuten t-paita tai kangaskassi. Puuvilla toimii tarkoitukseen hyvin. Printti suunnitellaan iPadilla ja toteutetaan vinyylileikkurin ja lämpöprässin avulla.</p><p>Pajaan ei tarvitse ilmoittautua etukäteen. Voit saapua klo 15-18 välillä silloin kun sinulle sopii, ja viipyä kunnes printtisi on valmis. Otathan kuitenkin huomioon, että eri työvaiheissa voit joutua odottelemaan omaa vuoroasi. Paja on maksuton ja avoin kaikille.</p><p>Tervetuloa!</p>" }, "name": { "fi": "Talviloman printtipaja" }, "provider_contact_info": null, "short_description": { "fi": "Printtipajassa pääset suunnittelemaan ja toteuttamaan itse printtikuvan tekstiiliin kirjaston henkilökunnan opastuksella!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280801/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:280258", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10817/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 2639, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:38.067145Z", "last_modified_time": "2024-02-06T13:39:09.508698Z", "name": "", "url": "https://www.helmet.fi/download/noname/{CD66F78D-6AED-451D-BA2A-808C0C717A45}/79633", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2639/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-01-25T14:26:37.836481Z", "last_modified_time": "2024-02-06T13:40:30.775867Z", "date_published": "2023-01-12T13:50:00Z", "start_time": "2024-02-20T10:30:00Z", "end_time": "2024-02-20T16: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Ongelmia tietokoneen tai tabletin kanssa? Nyt on mahdollisuus saada apua tietoteknisiin ongelmiin. Digitalkkari päivystää Lauttasaaren kirjastossa maanantaisin ja tiistaisin klo 12.30–18.</p><p>Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Opastukseen voi tuoda oman laitteen mukaan. Digitalkkari on opiskelija, joka suorittaa kirjastossa opintoihinsa liittyvää harjoittelujaksoa.</p><p>Varaa opastusaika puhelimitse: 09-3108 5020, kirjaston asiakaspalvelupisteestä tai sähköisestä ajanvarauskalenterista: <a href=\"https://outlook.office365.com/owa/calendar/Lauttasaarenkirjasto@helsinginkaupunki.onmicrosoft.com/bookings/\">Digitalkkari ajanvaraus</a></p>" }, "name": { "fi": "Digitalkkari Lauttasaaren kirjastossa" }, "provider_contact_info": null, "short_description": { "fi": "Digitalkkari opastaa tietokoneen, läppärin, tabletin tai älypuhelimen kanssa. Varaa aika opastukseen." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280258/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276143", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8350/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 6843, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-12-27T14:21:22.089904Z", "last_modified_time": "2024-02-06T13:40:30.654286Z", "name": "", "url": "https://www.helmet.fi/download/noname/{FF7EE3C0-B3C8-4BC7-A331-9E836C8A1DF9}/96167", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6843/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-12-27T14:21:22.052379Z", "last_modified_time": "2024-02-06T13:40:30.694337Z", "date_published": "2023-12-27T13:39:00Z", "start_time": "2024-02-20T10:00:00Z", "end_time": "2024-02-20T16: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>\"Velho Avius kutsuu sinut suorittamaan opintojesi viimeisen vaiheen - saatko kokeen lopuksi todistuksen käteesi?\"</p><p>Haluatko jännitystä hiihtolomalle? Maunulan kirjastossa voi kokeilla aloittelijaystävällistä pakohuonetta! Peli on suunnattu koulu-ikäisille ja opiskelijoille, suositusikä 10-vuotiaista ylöspäin. Pakopeli sisältää pulmia ja loogista päättelyä, sekä vaatii myös pitkien tekstien itsenäistä lukemista. Yhteen peliin mahtuu kerralla 5 henkilöä ja sen kesto on noin 45 minuuttia.<br> Peli on sama, jota pelattiin Maunulan kirjastossa syyslomalla 2022 ja Paloheinän kirjastossa hiihtolomalla 2023.</p><p>Pelit alkavat klo 12.00, 13.00, 14.00, 15.00, 16.00 ja 17.00.</p><p>Ennakkoilmoittautuminen tekstiviestillä tai WhatsAppilla: 040 4870 892.<br> Ilmoittautuminen alkaa 6.2.2024.</p>" }, "name": { "fi": "Velhouden loppukoe -pakohuonepeli" }, "provider_contact_info": null, "short_description": { "fi": "Tule kokeilemaan pakohuonepeliä kirjastoon!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276143/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:280912", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10844/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7499, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-01T15:29:37.545787Z", "last_modified_time": "2024-02-06T13:40:30.480383Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DEC96604-0B59-4C9C-BA08-C6EA497A4B8F}/109192", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7499/?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": "2024-02-01T15:29:37.516906Z", "last_modified_time": "2024-02-06T13:40:30.517620Z", "date_published": "2024-02-01T13:19:55.493000Z", "start_time": "2024-02-20T14:00:00Z", "end_time": "2024-02-20T15: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, "location_extra_info": { "fi": "Pointti" }, "provider": null, "description": { "fi": "Minkälaiseen turnaukseen haluaisit osallistua? Kerro toiveesi Pointin henkilökunnalle. Turnaukset järjestetään nuorten toiveiden pohjalta talvilomaviikon tiistaina ja torstaina. Turnaukset ovat 12-20-vuotialle. Tervetuloa mukaan!" }, "name": { "fi": "Nuorten toiveturnaus" }, "provider_contact_info": null, "short_description": { "fi": "Nuorten toive turnaus" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280912/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:280785", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7455, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-31T14:31:04.166970Z", "last_modified_time": "2024-02-06T13:40:30.306561Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6E67363D-DD1C-4732-B83A-D13F98712E80}/109112", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7455/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2024-01-31T14:31:04.142825Z", "last_modified_time": "2024-02-06T13:40:30.344622Z", "date_published": "2024-01-31T11:51:00Z", "start_time": "2024-02-20T13:00:00Z", "end_time": "2024-02-20T15: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, "location_extra_info": { "fi": "Kokoushuone Kanerva, 1. krs", "en": "Kokoushuone Kanerva, 1. krs" }, "provider": null, "description": { "fi": "<p> <strong>HEI NUORI!</strong> </p><p> <strong>Haluatko kuulla nuorten kokemuksia toisen asteen opinnoista? </strong> </p><p> <strong>Haluatko saada tietoa eri oppimispoluista peruskoulun jälkeen?</strong> </p><p>Rohkee - hanke järjestää infotilaisuuden toisen asteen yhteishausta maahanmuuttajataustaisille nuorille. Tilaisuuden aikana sinulla on mahdollisuus kysyä ammattilaisilta ja opintojaan suorittavilta nuorilta peruskoulun jälkeen tarjolla olevista tutkinnoista (lukio, toisen asteen koulutus ja oppisopimus jne.)</p><p> <strong>Tilaisuuden kielet:</strong> suomi, englanti, arabia, ukraina, venäjä ja somali.</p><p>*****</p><p> <strong>Привіт,молодь!</strong> </p><p> <strong>Хотіли б дізнатися про досвід молоді у старших класах середньої школи та отримати інформацію про різні шляхи навчання після закінчення школи?</strong> </p><p>Rohkee-проєкт організовує інформаційний захід, присвячений спільному вступу до вищих навчальних закладів для молоді з числа іммігрантів. Під час заходу у вас буде можливість розпитати професіоналів та молодь, яка вже навчається, про різні напрамки та варіанти здобуття освіти (вища школа-лукіо, професійне навчання, поєднання навчання і роботи і т.п.)</p><p> <strong>Мови заходу:</strong> фінська, англійська, арабська, українська, російська та сомалійська.</p><p>*****</p><p> <strong>Привет,молодежь!</strong> </p><p> <strong>Хотели бы узнать об опыте молодежи в старших классах средней школы и получить информацию о различных путях обучения после окончания школы?</strong> </p><p>Rohkee-проект организует информационное мероприятие, посвященное совместному поступлению в высшие учебные заведения для молодежи из числа иммигрантов. Во время мероприятия у вас будет возможность расспросить профессионалов и молодежь, которая уже учится, о различных вариантах получения образования (высшая школа-лукио, профессиональное обучение, совмещение учебы и работы и т.п.)</p><p> <strong>Языки мероприятия:</strong> финский, английский, арабский, украинский, русский и сомалийский.</p><p>*****</p>", "en": "<p> <strong>HI YOUTH!</strong> </p><p> <strong>Would you like to hear about young people's experiences of upper secondary education? </strong> </p><p> <strong>Do you want to get information about different learning paths after comprehensive school?</strong> </p><p>Rohkee - project organises an information event on the joint application process for upper secondary education for immigrant youth. During the event, you will have the opportunity to ask professionals and youth studying about the degrees available after comprehensive school (upper secondary school, upper secondary education, apprenticeship contract, etc.)</p><p> <strong>Languages of the event:</strong> Finnish, English, Arabic, Ukrainian, Russian, and Somali.</p><p>*****</p><p> <strong>Привіт,молодь!</strong> </p><p> <strong>Хотіли б дізнатися про досвід молоді у старших класах середньої школи та отримати інформацію про різні шляхи навчання після закінчення школи?</strong> </p><p>Rohkee-проєкт організовує інформаційний захід, присвячений спільному вступу до вищих навчальних закладів для молоді з числа іммігрантів. Під час заходу у вас буде можливість розпитати професіоналів та молодь, яка вже навчається, про різні напрамки та варіанти здобуття освіти (вища школа-лукіо, професійне навчання, поєднання навчання і роботи і т.п.)</p><p> <strong>Мови заходу:</strong> фінська, англійська, арабська, українська, російська та сомалійська.</p><p>*****</p><p> <strong>Привет,молодежь!</strong> </p><p> <strong>Хотели бы узнать об опыте молодежи в старших классах средней школы и получить информацию о различных путях обучения после окончания школы?</strong> </p><p>Rohkee-проект организует информационное мероприятие, посвященное совместному поступлению в высшие учебные заведения для молодежи из числа иммигрантов. Во время мероприятия у вас будет возможность расспросить профессионалов и молодежь, которая уже учится, о различных вариантах получения образования (высшая школа-лукио, профессиональное обучение, совмещение учебы и работы и т.п.)</p><p> <strong>Языки мероприятия:</strong> финский, английский, арабский, украинский, русский и сомалийский.</p><p>*****</p>", "ar": "<p> <strong> مرحباً </strong> </p><p> <strong> هل </strong> <strong> تود </strong> <strong> أن </strong> <strong> تسمع </strong> <strong> عن </strong> <strong> تجارب </strong> <strong> الشباب </strong> <strong> فيما </strong> <strong> يخص </strong> <strong> التعليم </strong> <strong> الثانوي؟ </strong> </p><p> <strong> هل </strong> <strong> ترغب </strong> <strong> في </strong> <strong> الحصول </strong> <strong> على </strong> <strong> معلومات </strong> <strong> حول </strong> <strong> مسارات </strong> <strong> التعلم </strong> <strong> المختلفة </strong> <strong> بعد </strong> <strong> المدرسة </strong> <strong> الإعدادية؟ </strong> </p><p> ينظم المشروع جلسة معلومات حول تقديم الطلبات المشتركة للتعليم الثانوي للشباب ذوي الأصول المهاجرة . خلال هذا الحدث ، ستتاح لك الفرصة لسؤال المهنيين والشباب عن الدراسات المتاحة بعد المدرسة الإعدادية ( المدرسة الثانوية، التعليم الثانوي، إلخ .) </p><p> <strong> لغات </strong> <strong> الحدث: </strong> الفنلندية، الإنجليزية، العربية، الأوكرانية، الروسية والصومالية </p><p>*****</p><p> <strong>HEY DHALINYARO!</strong> </p><p> <strong>Ma rabtaa inaad ogaato arimaha ku saabsan dhalinyarada ee waxbarashada dugsiga sare? </strong> </p><p> <strong>Ma doonaysaa inaad hesho macluumaad ku saabsan dariiqooyinka waxbarasho ee kala duwan ka dib dugsiga hoose?</strong> </p><p>Rohkee - Mashruucu wuxuu qabanqaabiyaa munaasabad macluumaad loogu talagalay dhalinyarada asalkoodu yahay soo-galootiga. Inta ay xafladani socoto waxa aad fursad u heli doontaa in aad wax ka waydiiso aqoonyahanada iyo dhalinyarada dhamaysanaysa waxbarashada shahaadooyinka la heli karo kadib dugsiga hoose dhexe (dugsiga sare, waxbarashada sare iyo tababarka iwm.)</p><p> <strong>Luqadaha xafladda:</strong> Finnish, Ingiriis, Carabi, Yukreeniyaan, Ruush iyo Soomaali.</p>" }, "name": { "fi": "Infotilaisuus toisen asteen yhteishausta maahanmuuttajataustaisille nuorille", "en": "Information about different learning paths after comprehensive school" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Rohkee-hankkeen infotilaisuuteen toisen asteen yhteishausta maahanmuuttajataustaisille nuorille", "en": "Information event on the joint application process for upper secondary education for immigrant youth" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280785/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:273388", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8289/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 4858, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-20T17:14:17.327018Z", "last_modified_time": "2024-02-06T13:38:08.156262Z", "name": "", "url": "https://www.helmet.fi/download/noname/{32CEA8BF-D4AB-432E-AEF8-E58EEE0FAFDF}/99578", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4858/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-12-13T16:23:08.218552Z", "last_modified_time": "2024-02-06T13:40:30.256721Z", "date_published": "2023-12-13T09:47:21.627000Z", "start_time": "2024-02-20T13:00:00Z", "end_time": "2024-02-20T15: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Puistolan kirjastossa järjestetään iltapäivätoimintaa alakoululaisille tiistaisin ja torstaisin 24.8.-22.12.</p><p> <strong>Ti klo 15-17</strong> <br> PlayStation pelaamista 3.-luokkalaisille ja sitä vanhemmille alakoululaisille.</p><p> <strong>To klo 14-15</strong> <br> Puuhatorstai: vaihtuvaa ohjelmaa, kuten askartelua, ääneenlukua ja yllätyksiä!<br> </p><p> <em>Kuva: Maarit Hohteri / Helsingin kaupunki</em> </p>" }, "name": { "fi": "Iltapäivätoimintaa alakoululaisille" }, "provider_contact_info": null, "short_description": { "fi": "Tule pelaamaan PlayStationilla!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:273388/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:281100", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7530, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-02T12:26:38.694875Z", "last_modified_time": "2024-02-06T13:40:29.910448Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9F00E884-21BC-4C63-8F6E-03C917D39072}/109265", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7530/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-02-02T12:26:38.677026Z", "last_modified_time": "2024-02-06T13:40:29.947403Z", "date_published": "2024-02-02T11:39:00Z", "start_time": "2024-02-20T13:00:00Z", "end_time": "2024-02-20T14: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, "location_extra_info": { "fi": "Maijansali" }, "provider": null, "description": { "fi": "<p>Tutut kirjojen ystävät esittelevät itselleen merkityksellisen kirjan Minun kirjani -iltapäivissä</p><p>Keskustakirjasto Oodissa. 20.2. vieraana on vuoden 2023 Finlandia-palkinnon voittanut kirjailija <strong>Sirpa Kähkönen</strong>. Hän kertoo omakohtaisesta teoksestaan <em>36 uurnaa</em>. Vierailijaa jututtaa HelsinkiMission toiminnanjohtaja <strong>Tuula Colliander</strong>.</p> Olet lämpimästi tervetullut paikan päälle Keskustakirjasto Oodin Maijansaliin.<br><br> Voit myös seurata tapahtumaa verkossa suorana lähetyksenä osoitteessa <a href=\"https://l.facebook.com/l.php?u=http%3A%2F%2Fvideonet.fi%2FHelsinkiMissio%2FMinunKirjani%3Ffbclid%3DIwAR0nY1bFdTzAjTfnhDQryRhr6xGOJ9VnbfeZ9UbLZLpBOL6ai7YvFtDb-oI&h=AT2MBvEOyLdoUcLB7eazg0ATgLAPOijQCzumsC3WTO77jQPCVVLLFEA8HO2At67LVIJKXIC5NjbeSogRqa470JWd0HYtp6L9ui_6sCt_n4Jmvlem26cgoMTymhTLVEVTMg&__tn__=q&c[0]=AT3mLz-YMftU2i42a8IHJyBp1qu_58JI6H-pajwWXDI4U6Nx_GZqw2xeBUjCfEc18h2Oy8v6n9BsPCi56f-mXMJvOAqd9eTPji3CJ4kSgOTxNJ0JPBYSREDUq-FfH_-n2Pcd6H-m8PS2ILtlV8WtGHTUIZaO\">videonet.fi/HelsinkiMissio/MinunKirjani</a><br> Jos osallistut verkossa, voit esittää tilaisuuden aikana kysymyksiä ja kommentteja striimaussivulla näkyvän keskusteluikkunan kautta. Tilaisuuden jälkeen olet tervetullut jatkamaan keskustelua kirjasta ja sen teemoista klo 16.15-17 Oodin Ryhmätila 3:een. Lukupiiriä vetää FM <strong>Riitta Kulmanen</strong>.<br><br> Lämpimästi tervetuloa paikan päälle tai verkkoon kuuntelemaan ja keskustelemaan! <p> <br> Tapahtuman ja lukupuurin järjestää HelsinkiMissio yhteistyössä Keskustakirjasto Oodin kanssa.</p>" }, "name": { "fi": "Minun kirjani -iltapäivä: Sirpa Kähkönen" }, "provider_contact_info": null, "short_description": { "fi": "Keskustakirjasto Oodissa. 20.2. vieraana on vuoden 2023 Finlandia-palkinnon voittanut kirjailija Sirpa Kähkönen. Hän kertoo omakohtaisesta teoksestaan 36 uurnaa. Vierailijaa jututtaa HelsinkiMission toiminnanjohtaja Tuula Colliander." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:281100/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:275881", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8141/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10652/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10655/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10795/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:23/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 6796, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-12-21T13:21:05.694517Z", "last_modified_time": "2024-02-06T13:38:08.070661Z", "name": "", "url": "https://www.helmet.fi/download/noname/{C4B7131E-134B-4BFD-8076-D68D05682789}/108283", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6796/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2023-12-21T13:21:31.656452Z", "last_modified_time": "2024-02-06T13:40:29.689311Z", "date_published": "2023-12-21T12:20:00Z", "start_time": "2024-02-20T12:00:00Z", "end_time": "2024-02-20T14: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Onko sinulla ongelmia tietokoneen, kännykän, tabletin tai läppärin kanssa, tai haluatko oppia uutta sähköisistä palveluista? Varaa tunnin aika Enterin vertaisopastajalle! Tunnin mittaiset opastukset ovat Kannelmäen kirjastossa tiistai-iltapäivisin (klo 14-15 ja 15-16). Varaathan ajan etukäteen esim. kirjaston tiskiltä tai puhelimitse. Tuttu opastajamme Hanspeter opastaa. Enterin digiopastus on henkilökohtaista ja siinä edetään opastettavan omaan tahtiin ja rauhallisesti. Opastus on avointa ja maksutonta kaikille senioreille.</p><p>Maaliskuussa 19.3. ja 26.3.2024 ei ole opastusta hiihtoloman takia.</p><p>Jos joudut perumaan aikasi, ilmoitathan siitä hyvissä ajoin eli mielellään edellisenä päivänä tai opastuspäivän aamuna. Näin voimme antaa peruuntuneen aikasi jollekulle toiselle.</p><p>Kirjaston p. 09 310 85042.</p><p>Tervetuloa oppimaan uutta!</p>" }, "name": { "fi": "Enter ry:n tietotekniikan vertaisopastukset senioreille" }, "provider_contact_info": null, "short_description": { "fi": "Enter ry opastaa digiasioissa." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:275881/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:275751", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 6755, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-12-20T16:24:49.602045Z", "last_modified_time": "2024-02-06T13:38:07.980599Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D200CEAF-1D48-477D-A7B2-33CB4D6DAFCB}/108247", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6755/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-12-20T16:25:45.495451Z", "last_modified_time": "2024-02-06T13:40:29.609636Z", "date_published": "2023-12-20T15:49:00Z", "start_time": "2024-02-20T12:00:00Z", "end_time": "2024-02-20T14: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, "location_extra_info": { "fi": "Lastenalue" }, "provider": null, "description": { "fi": "<p>Tule lukemaan kirjoja, pelaamaan lautapelejä, puuhaamaan jotain muuta kivaa, tai vain juttelemaan kanssani. Löydät minut lastenosastolta. Nähdään!</p>" }, "name": { "fi": "Kikka-kirjastomummo" }, "provider_contact_info": null, "short_description": { "fi": "Tule tapaamaan Vuosaaren ihanaa kirjastomummoa!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:275751/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:272322", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 2823, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:41.266195Z", "last_modified_time": "2024-02-06T13:38:26.231017Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9CE549DD-B62E-4EB2-A7E7-97F741C842BF}/101697", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2823/?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-12-07T14:25:18.998615Z", "last_modified_time": "2024-02-06T13:40:29.527406Z", "date_published": "2023-01-24T11:05:00Z", "start_time": "2024-02-20T12:00:00Z", "end_time": "2024-02-20T13: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, "location_extra_info": { "en": "0. Floor" }, "provider": null, "description": { "en": "<p>Are you looking for an informal way to improve your Finnish? Join our language café!</p><p>The Language Café is an open meeting place for anyone interested in different cultures and the Finnish language. </p><p>Your language skills need not be fluent, but we hope that you speak some Finnish. There will be coffee and tea in a safe and friendly environment.</p><p>The event is organized on Tuesdays at 2pm from 16th of Jan until 14th of May.</p>" }, "name": { "en": "Töölö Library´s Finnish Language Café" }, "provider_contact_info": null, "short_description": { "en": "Welcome to Töölö Library´s Finnish Language Café" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272322/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:279660", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8324/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7252, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-18T15:25:40.193123Z", "last_modified_time": "2024-02-06T13:38:07.896790Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D0F00BCC-2F07-4C08-8C85-4AB4E5E7AC5B}/108795", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7252/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-18T15:26:25.998846Z", "last_modified_time": "2024-02-06T13:40:29.447145Z", "date_published": "2024-01-18T14:10:00Z", "start_time": "2024-02-20T12:00:00Z", "end_time": "2024-02-20T13: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Jakomäen kirjastossa joka tiistai 9.1.-21.5. klo 14-15.30</p><p>Koululaisten tiistaikerhossa tapahtuu. Parillisilla viikoilla on luvassa askartelua, parittomilla viikoilla askartelun lisäksi pelaamista, kirjavinkkauksia, sekä kirjastokoira Neela! Tarjolla on hyvää seuraa ja mielekästä tekemistä. </p><p>Toiminnallista tiistaita järjestetään yhdessä Malmin seurakunnan kanssa. </p><p>Tervetuloa!</p>" }, "name": { "fi": "Toiminnallinen tiistai" }, "provider_contact_info": null, "short_description": { "fi": "Toiminnallinen tiistai" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:279660/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276311", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8220/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10821/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 4731, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-12T09:24:31.646892Z", "last_modified_time": "2024-02-06T13:38:45.226698Z", "name": "", "url": "https://www.helmet.fi/download/noname/{714813A1-79C1-4D38-948C-5A431CAB7EF8}/66946", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4731/?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-12-29T14:21:29.962310Z", "last_modified_time": "2024-02-06T13:40:29.367095Z", "date_published": "2023-12-29T13:39:50.063000Z", "start_time": "2024-02-20T12:00:00Z", "end_time": "2024-02-20T13: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>tiistaisin klo 14-15:30 /<br> Tuesdays at 2 p.m. starting Febr. 12th</p><p>Tule keskustelemaan ajankohtaisista aiheista ja harjoittelemaan suomen kieltä kanssamme.</p><p>Samalla voit tutustua uusiin ihmisiin.</p><p>Vapaa pääsy. Tervetuloa!</p><p>Join us to discuss topical issues, get practice in Finnish language and meet new people.</p><p>Free admission. Welcome!</p>" }, "name": { "fi": "Kielikahvila - Language Café" }, "provider_contact_info": null, "short_description": { "fi": "Tule keskustelemaan ajankohtaisista aiheista ja harjoittelemaan suomen kieltä kanssamme. Join us to discuss topical issues, get practice in Finnish language and meet new people." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276311/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:272296", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 2822, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:40.415944Z", "last_modified_time": "2024-02-06T13:38:25.972194Z", "name": "", "url": "https://www.helmet.fi/download/noname/{C222909C-B5AA-484A-820D-2811319FA512}/98902", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2822/?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-12-07T14:25:18.886564Z", "last_modified_time": "2024-02-06T13:40:29.285495Z", "date_published": "2022-12-21T08:47:00Z", "start_time": "2024-02-20T12:00:00Z", "end_time": "2024-02-20T13: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, "location_extra_info": { "fi": "Ryhmätila 1, 0. krs" }, "provider": null, "description": { "fi": "<p>Haluatko oppia suomea ja tutustua uusiin ihmisiin? Tule Töölön kirjaston kielikahvilaan! Kielikahvilassa keskustellaan rennosti suomeksi.<br><br> Kokoonnumme 0. kerroksen Ryhmätilassa<strong> tiistaisin 16.1.-14.5. klo 14.00-15.30.</strong></p><p>Suomen kielen taitosi ei tarvitse olla sujuvaa mutta toivomme, että osaat jo hiukan suomea ennestään. Tarjoamme kahvia ja teetä. Jännittää ei tarvitse – rohkeasti mukaan ja tuo kaverisikin!</p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Toolon_kirjasto\"> <u> Töölön kirjasto </u> </a> <br> Topeliuksenkatu 6<br> 00250 Helsinki<br> puh. 09 31085625</p><p> <em>Kuva: Riikka Kantinkoski</em> </p>" }, "name": { "fi": "Kielikahvila: keskustellaan suomeksi" }, "provider_contact_info": null, "short_description": { "fi": "Haluatko oppia suomea ja tutustua uusiin ihmisiin? Tule Töölön kirjaston kielikahvilaan!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272296/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:280711", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8277/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10847/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7439, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-30T18:26:11.342417Z", "last_modified_time": "2024-02-06T13:40:29.168996Z", "name": "", "url": "https://www.helmet.fi/download/noname/{AC6FB610-8783-41CA-811B-8CA9BEE0D9FF}/80973", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7439/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-30T18:26:11.324178Z", "last_modified_time": "2024-02-06T13:40:29.206008Z", "date_published": "2024-01-30T16:09:00Z", "start_time": "2024-02-20T11:00:00Z", "end_time": "2024-02-20T13: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p> <strong>Salapoliisitapahtuma lapsille Suutarilan kirjastossa tiistaina 20.2.2024 klo 13-15 (non stop).</strong> </p> <p>Kirjastossa on tapahtunut kauheita: joku on yöllä sotkenut hyllyjärjestyksen! <br> Tule avuksi selvittämään, mitä on tapahtunut.</p> <p>Tapahtuma on tarkoitettu alakouluikäisille sekä nuoremmille aikuisen seurassa.</p>" }, "name": { "fi": "Kirjastokelmin tapaus" }, "provider_contact_info": null, "short_description": { "fi": "Salapoliisitapahtuma lapsille." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:280711/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:278724", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19217/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 7122, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-11T08:24:09.346415Z", "last_modified_time": "2024-02-06T13:40:28.997809Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7DDBEA30-656A-45B7-BBCF-CAC41DDABFE3}/108598", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2024-01-11T08:24:09.327806Z", "last_modified_time": "2024-02-06T13:40:29.037447Z", "date_published": "2024-01-11T06:58:17.267000Z", "start_time": "2024-02-20T10:00:00Z", "end_time": "2024-02-20T13: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, "location_extra_info": { "fi": "Martinlaakson kirjaston Hiljainen huone" }, "provider": null, "description": { "fi": "<p>Legopajat palaavat pienen tauon jälkeen Martinlaakson kirjastoon!</p><p>Kyllästyttääkö ulkopelit? Kaipaatko erilaista tekemistä talvilomalla?</p><p>Tule Martinlaakson kirjastoon kokoamaan legoja yksin tai yhdessä kavereiden kanssa!</p><p>Kirjaston kolmipäiväisessä legotapahtumassa on luvassa rentoa ja hauskaa legojen kokoamista. Inspiraatioksi löytyy lego-oppaita.</p><p>Legopajat seuraavina aikoina:</p><p>Ti 20.2. klo 12–15.</p><p>Ke 21.2. klo 12–15.</p><p>To 22.2. klo 12–15.</p><p>Tule paikalle yhtenä tai useampana päivänä!</p><p>Tapahtumaan ei tarvitse ilmoittautua ennakkoon.</p><p>Kuva: Ilari Lehtinen / Vantaan kaupunki</p>" }, "name": { "fi": "Talvilomaviikon legopajat" }, "provider_contact_info": null, "short_description": { "fi": "Legopajat palaavat pienen tauon jälkeen Martinlaakson kirjastoon! Kyllästyttääkö ulkopelit? Kaipaatko erilaista tekemistä talvilomalla? Tule Martinlaakson kirjastoon kokoamaan legoja yksin tai yhdessä kavereiden kanssa! Kirjaston kolmipäiväisessä legotapahtumassa on luvassa rentoa ja hauskaa legojen kokoamista." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:278724/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:275731", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 4785, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T09:26:50.351341Z", "last_modified_time": "2024-02-06T13:38:25.796892Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BCE0271F-D15F-451D-A290-EDB4E519F93D}/95819", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4785/?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-12-20T16:25:45.273877Z", "last_modified_time": "2024-02-06T13:40:28.784955Z", "date_published": "2023-12-20T14:21:27.610000Z", "start_time": "2024-02-20T11:00:00Z", "end_time": "2024-02-20T13: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, "location_extra_info": { "fi": "Kanerva-sali (pohjakerros)" }, "provider": null, "description": { "fi": "<p>Lukuterveiset Itäkeskuksen kirjaston vanhimmasta lukupiiristä. Osa lukupiiriläisistä on ollut mukana jo vuodesta 2007, kun lukupiiri perustettiin.</p><p>Olemme lukeneet vuosien saatossa kaikkia kirjallisuuden lajeja ennakkoluulottomasti mutta kaunokirjallisuus on lempilajimme.</p><p>Lukupiiriin on tervetullut, vaikka ei olisi lukenutkaan käsiteltävää kirjaa, sillä myös kirjakeskustelun kuunteleminen virkistää. Mikään mielipide ei ole väärä, eikä ryhmässämme tarvitse jännittää.</p><p>Kokoonnumme kerran kuukaudessa yleensä kuukauden kolmantena tiistaipäivänä kello 13.00 - 15.00 kirjaston Kanerva-huoneessa. Tarjolla on kahvia ja keksejä!</p><p>Tiedustelut: satu.vahamaa@hel.fi</p><p> <b>Kevätkaudella 2024 teemanamme on ”Nainen ajassa”:</b> </p><p> <strong>ti 16.1.:</strong> Mitä luin joululomalla ja / tai <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2176458__SLukija%20aamujunassa__Orightresult__U__X7?lang=fin&suite=cobalt\">Jean-Paul Didierlaurent : Lukija aamujunassa</a>,Tammi, 2015</p><p> <strong>ti 20.2.: </strong> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2507882__S%20Durastanti%20%3A%20Tuntemani%20vieraat__Orightresult__U__X2?lang=fin&suite=cobalt\">Claudia Durastanti : Tuntemani vieraat</a>, S & S, 2022</p><p> <strong>ti 19.3.:</strong> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2452794__SSimone%20de%20Beauvoir%20%3A%20Erottamattomat%2C%20Kosmos%2C%202021__Orightresult__U__X1?lang=fin&suite=cobalt\">Simone de Beauvoir : Erottamattomat</a>, Kosmos, 2021</p><p> <strong>ti 23.4.: </strong> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2454585__SDeborah%20Levy%20%3A%20Mit%C3%A4%20en%20halua%20tiet%C3%A4%C3%A4%2C%20S%20%26%20S%2C%202021__Orightresult__U__X1?lang=fin&suite=cobalt\">Deborah Levy : Mitä en halua tietää</a>, S & S, 2021</p><p> <strong>ti 21.5.: </strong> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2452098__SAnneli%20Kanto%20%3A%20Rottien%20pyhimys%2C%20Gummerus%2C%202021__Orightresult__U__X1?lang=fin&suite=cobalt\">Anneli Kanto : Rottien pyhimys</a>, Gummerus, 2021</p><p>Kirjaa varataan lukupiiriläisten noudettavaksi Itäkeskuksen kirjastoon. Halutessasi voit myös varata kirjan itse haluamaasi noutokirjastoon. </p><p>Lukupiiriä vetää Satu Vähämaa (satu.vahamaa@hel.fi)</p><p>****</p><p>Kuva: pixabay.com</p>" }, "name": { "fi": "Tiistain päivälukupiiri" }, "provider_contact_info": null, "short_description": { "fi": "Itäkeskuksen kirjaston pitkäaikaisin lukupiiri kokoontuu kerran kuussa tiistaipäivisin." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:275731/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269113", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8141/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10795/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u48040050", "sub_events": [], "images": [ { "id": 4989, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-03T11:40:18.292326Z", "last_modified_time": "2024-02-06T13:40:28.592633Z", "name": "", "url": "https://www.helmet.fi/download/noname/{001900F2-F9DF-46AE-8D0C-158E625C0886}/99892", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4989/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-03T11:40:17.840309Z", "last_modified_time": "2024-02-06T13:40:28.629529Z", "date_published": "2024-01-23T10:36:00Z", "start_time": "2024-02-20T11:00:00Z", "end_time": "2024-02-20T13: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, "location_extra_info": null, "provider": null, "description": { "fi": "<p>Pelituokiossa pelaillaan kivoja lautapelejä. Kiva, jos myös vinkkaat omat lautapelisuosikkisi muille osallistujille!</p><p>Tuokioon ei ole ennakkoilmoittautumista.</p><p>Kuva: PIxabay</p>" }, "name": { "fi": "Pelituokio" }, "provider_contact_info": null, "short_description": { "fi": "Pelituokiossa pelaillaan kivoja lautapelejä." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269113/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 12709, "next": "