Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1100
https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1101", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1099" }, "data": [ { "id": "helmet:265164", "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: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:10823/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2750, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:04.762990Z", "last_modified_time": "2024-02-06T13:38:24.136307Z", "name": "", "url": "https://www.helmet.fi/download/noname/{CEA97C39-AD4F-4B4C-BE08-B5B0D98D8F0A}/104869", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2750/?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-08-15T15:52:06.577991Z", "last_modified_time": "2023-11-14T06:21:07.624983Z", "date_published": "2023-08-12T11:18:00Z", "start_time": "2023-10-31T08:00:00Z", "end_time": "2023-10-31T09: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Akvaario-monitoimitila" }, "description": { "fi": "<p>Kaikille avoimissa ja maksuttomissa tilaisuuksissa puhutaan muistiin liittyvistä tärkeistä<br> aiheista. Tervetuloa mukaan kuuntelemaan ja osallistumaan! Tarjoamme kahvit. </p><p>Paikka: Maunulan kirjaston Akvaario-tila</p><p>ti 29.8.2023 klo 10-11 Muistiluotsi esittäytyy. Helsingin ja Itä-Uudenmaan Muistiluotsi esittelee toimintaansa.</p><p>ti 3.10.2023 klo 10-11 Muistikummituokio<br> \"Uskomme, että muistisairaan ihmisen kohtaaminen lämpimästi<br> ja arvostavasti ja ymmärtävästi on tämän päivän kansalaistaito. Kummius kutsuu<br> asettumaan muistisairaan rinnalle ja tekemään omassa lähipiirissä ja arjessa<br> muistiystävällisiä tekoja\". Osallistu tunnin mittaiseen tuokioon ja opi sekä oivalla<br> viisi tärkeää asiaa muistisairauksista.</p><p>ti 31.10. klo 10-11 Puhutaan aivoterveydestä<br> Tule kuulemaan, mitkä tekijät vaikuttavat aivoterveyteen ja kuinka voit lisätä<br> aivoterveyttä tukevia valintoja arjessasi.</p><p>ti 28.11. klo 10-11 Kysy muistista<br> Tule esittämään mieltäsi askarruttavia kysymyksiä muistiin ja muistisairauksiin<br> liittyen. Sinä kysyt - me vastaamme.</p><p>Järjestää: </p><p>Helsingin ja Itä-Uudenmaan Muistiluotsi</p><p>Helsingin Muistiyhdistys ry</p><p>Maunulan kirjasto</p><p>Lisätietoja: sofia.halme@muistihelsinki.fi tai p. 044 765 3999</p><p> <a href=\"https://muistihelsinki.fi/\">Muistihelsinki.fi</a> </p><p> <br> </p>" }, "short_description": { "fi": "Muistikahvilat ovat kaikille avoimia ja maksuttomia tunnin pituisia tilaisuuksia,joissa teemoina ovat erilaiset muistiin liittyvät asiat." }, "provider": null, "name": { "fi": "Muistikahvila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265164/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261603", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2814, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:32.178117Z", "last_modified_time": "2023-08-15T15:32:32.178139Z", "name": "", "url": "https://www.helmet.fi/download/noname/{2F465256-70F5-4865-A23E-8F4EA86D9978}/96942", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:52:06.236071Z", "last_modified_time": "2023-11-14T06:21:07.472064Z", "date_published": "2022-12-18T22:00:00Z", "start_time": "2023-10-31T08:00:00Z", "end_time": "2023-10-31T08: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Lorutuokioissa nautitaan riimeistä ja loruista. Tuokio on suunnattu vauvaikäisille huoltajineen, isommat sisarukset ovat tervetulleita mukaan. Ei ennakkoilmoittautumista, tervetuloa!</p>" }, "short_description": { "fi": "Lorutuokioissa nautitaan riimeistä ja loruista. Tuokio on suunnattu vauvaikäisille huoltajineen, isommat sisarukset ovat tervetulleita mukaan." }, "provider": null, "name": { "fi": "Lorutuokio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261603/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:259788", "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: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:10795/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2749, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:04.104777Z", "last_modified_time": "2024-02-06T13:38:06.129624Z", "name": "", "url": "https://www.helmet.fi/download/noname/{2FFEF16F-7813-4713-AAA6-220B3A3AB550}/87982", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2749/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:52:05.886694Z", "last_modified_time": "2023-11-14T06:21:07.405406Z", "date_published": "2023-06-12T06:00:00Z", "start_time": "2023-10-31T08:00:00Z", "end_time": "2023-10-31T08: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Satutuokiossa tutustutaan yhdessä erilaisiin tarinoihin.</p><p>Kannelmäen kirjastossa satutuokiot pidetään tiistaisin 29.8.- 28.11.2023 klo 10.00-10.30. Ne on suunnattu 3-6 -vuotiaille lapsille. </p><p>Ryhmien ilmoittautuminen etukäteen <a href=\"https://kultus.fi/fi\">kultus.fi</a>-palvelussa: <a href=\"https://kultus.fi/event/kultus:agei6lggxe?places=tprek%3A8141&returnPath=%2Fsearch\">Kannelmäen kirjaston satutuokiot</a>. Satutuokioon mahtuu useampi ryhmä kerrallaan. </p><p>Kerran kuussa satutuokio on kaksikielinen:</p><p>Ti 12.9. suomi-venäjä</p><p>Ti 10.10. suomi-somali</p><p>Ti 7.11. suomi-englanti</p><p>Tervetuloa mukaan!</p><p>Kuva: Helsingin kaupunki / Maarit Hohteri</p>" }, "short_description": { "fi": "Tervetuloa satujen maailmaan!" }, "provider": null, "name": { "fi": "Satutuokiot" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:259788/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266166", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3513, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T07:29:35.636143Z", "last_modified_time": "2023-08-22T07:29:35.636163Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BDAE6A45-5E1F-40BC-A7C0-7E7400C476D5}/97963", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3513/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-22T07:35:39.806063Z", "last_modified_time": "2023-11-14T06:21:07.338487Z", "date_published": "2022-11-10T12:21:00Z", "start_time": "2023-10-31T07:30:00Z", "end_time": "2023-10-31T08: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Hyppää hetkeksi tarinoiden maailmaan Entressen kirjastossa!</p><p>Aamuinen satuhetki kuukauden viimeinen tiistai lastenosastolla kello 9:30-10:00.</p><p>Syksyllä 2023 päivät ovat 26.9 , 31.10 , 28.11 ja 19.12.</p><p>Suurempien ryhmien toivotaan ilmoittautuvan etukäteen osoitteeseen kirjasto.entresse@espoo.fi</p><p>Tervetuloa!</p>" }, "short_description": { "fi": "Tervetuloa satujen maailmaan!" }, "provider": null, "name": { "fi": "Entressen aamun avoin satuhetki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266166/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269046", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5314, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-09T19:06:46.878126Z", "last_modified_time": "2023-10-09T19:06:46.878145Z", "name": "", "url": "https://www.helmet.fi/download/noname/{A3093579-942E-4083-B8C2-1330322BAF37}/106332", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5314/?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-10-09T19:06:50.405838Z", "last_modified_time": "2023-11-14T06:21:07.271387Z", "date_published": "2023-10-09T15:12:42.547000Z", "start_time": "2023-10-04T21:00:00Z", "end_time": "2023-10-30T22: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "en": "Kauno, 2nd floor" }, "description": { "en": "<h3>Kaleidoscope City</h3><p>Kaleidoscope City is a series of graphic works I created, in which I study the details of the urban environment. I study both buildings and urban nature from different perspectives. In the works, a small detail creates a bigger story. I am particularly interested of the the art nouveau houses of Helsinki. The works are kaleidoscope-like digital works that I made from my city photographs.</p><p>As an artist, I am interested in combining different materials and ways of working. I make art with traditional and digital ways, sometimes also combining them. The main focus is strongly on media art and graphic expression. Scientific art is also of interest. I create art that studies different phenomenon by combining different art forms.</p><p>***<br> Kallio Library<br> Viides linja 11<br> (09) 310 85053<br><a href=\"https://www.facebook.com/kirjastokallio/\"><u>Facebook</u></a></p>" }, "short_description": { "en": "Kaleidoscope City is a series of graphic works I created, in which I study the details of the urban environment." }, "provider": null, "name": { "en": "Carol Collan: Kaleidoscope City" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269046/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269045", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5314, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-09T19:06:46.878126Z", "last_modified_time": "2023-10-09T19:06:46.878145Z", "name": "", "url": "https://www.helmet.fi/download/noname/{A3093579-942E-4083-B8C2-1330322BAF37}/106332", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5314/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-10-09T19:06:47.405513Z", "last_modified_time": "2023-11-14T06:21:07.199726Z", "date_published": "2023-10-09T15:13:46.490000Z", "start_time": "2023-10-04T21:00:00Z", "end_time": "2023-10-30T22: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "sv": "Kauno, 2. våning" }, "description": { "sv": "<h3>Kaleidoscope City</h3><p>Kaleidoscope City är en serie grafiska bilder, där jag studerar detaljer från stadsmiljön. Jag använder både byggnader och stadsnatur från olika perspektiv. I konstverk skapar en liten detalj en större helhet. Jag är särskilt intresserad av jugend byggnader i Helsingfors. Bilderna är kalejdoskop liknande digitala konstverk som jag har gjort av mina stadsfotografier.</p><p>Som konstnär är jag intresserad av att kombinera olika arbetssätt. Jag gör konst med traditionella och digitala sätt och ibland kombinerar jag dem. Huvudfokus ligger starkt på mediekonst och grafisk stil. Jag är också intresserad av vetenskaplig konst. Jag gör undersökande konst som kombinerar olika konstformer.</p><p>***<br> Berghälls bibliotek<br> Femte linjen 11<br> (09) 310 85053<br><a href=\"https://www.facebook.com/kirjastokallio/\"><u>Facebook</u></a></p>" }, "short_description": { "sv": "Kaleidoscope City är en serie grafiska bilder, där jag studerar detaljer från stadsmiljön." }, "provider": null, "name": { "sv": "Carol Collan: Kaleidoscope City" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269045/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269044", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5314, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-09T19:06:46.878126Z", "last_modified_time": "2023-10-09T19:06:46.878145Z", "name": "", "url": "https://www.helmet.fi/download/noname/{A3093579-942E-4083-B8C2-1330322BAF37}/106332", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5314/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-09T19:06:46.733495Z", "last_modified_time": "2023-11-14T06:21:07.129732Z", "date_published": "2023-10-09T15:13:22.267000Z", "start_time": "2023-10-04T21:00:00Z", "end_time": "2023-10-30T22: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Kauno, 2. krs." }, "description": { "fi": "<h3>Kaleidoscope City</h3><p>Kaleidoscope City on luomani sarja graafisia teoksia, joissa nostan esiin urbaanin ympäristön yksityiskohtia. Tutkin niin rakennuksia kuin kaupunkiluontoa eri näkökulmista. Teoksissa pieni yksityiskohta voi luoda suuren kokonaisuuden. Erityisiä mielenkiinnonkohteita ovat olleet Helsingin jugend talot. Teokset ovat ottamistani kaupunkivalokuvista tehtyjä kaleidoskooppimaisia digiteoksia.</p><p>Taiteilijana olen kiinnostunut erilaisten työtapojen ja materiaalien yhdistämisestä. Teen taidetta perinteisin sekä digitaalisin keinoin, toisinaan myös yhdistäen niitä. Pääpaino on vahvasti mediataiteessa ja graafisessa ilmaisussa. Myös tieteellinen taide kiinnostaa. Työni ovat usein tutkivia ja monitaiteellisia.</p><p>***<br> Kallion kirjasto<br> Viides linja 11<br> (09) 310 85053<br><a href=\"https://www.facebook.com/kirjastokallio/\"><u>Kallion kirjasto Facebookissa</u></a></p>" }, "short_description": { "fi": "Kaleidoscope City on luomani sarja graafisia teoksia, joissa nostan esiin urbaanin ympäristön yksityiskohtia." }, "provider": null, "name": { "fi": "Näyttely: Carol Collan" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269044/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269043", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4969, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-02T11:47:59.000765Z", "last_modified_time": "2023-10-02T11:47:59.000789Z", "name": "", "url": "https://www.helmet.fi/download/noname/{5321DE18-DA58-4B1E-85C1-EA37F563247A}/106330", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4969/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-02T11:47:58.512239Z", "last_modified_time": "2023-11-14T06:21:07.060083Z", "date_published": "2023-10-02T08:52:24.753000Z", "start_time": "2023-10-01T21:00:00Z", "end_time": "2023-10-30T22: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Kupolisali, 1. krs." }, "description": { "fi": "<h3>Tervetuloa elämysten maailmaan – Vizual Muzik: Juha Seila 20 vuotta musiikkikuvauksen lumossa!</h3><p>Ylpeinä esitämme teille ainutlaatuisen valokuvanäyttelyn, joka juhlistaa valokuvaaja Juha Seilan 20-vuotista uraa musiikkikuvauksen parissa. Vizual Muzik on näyttely, joka lumoaa katsojan musiikin taikavoimalla.</p><p>Seila on onnistunut taltioimaan taiteellisesti ja herkästi konserttihetkien sielun, ja hänen valokuvissaan artistien intohimo ja musiikin voima heräävät henkiin. Näyttely koostuu valikoiduista konserttikuvasarjoista, jotka kertovat tarinaa musiikin voimasta ja sen yhteydestä taiteeseen. Voitte odottaa näkevänne upeita otoksia niin maailmanlaajuisista supertähdistä kuin kotimaan sankareistakin.</p><p>Mikä tekee tästä näyttelystä vieläkin mielenkiintoisemman, on se, että osa kuvista vaihtuu kuukauden aikana. Näin jokainen vierailu tarjoaa uusia visuaalisia elämyksiä ja yllätyksiä.</p><p>Vizual Muzik -näyttely avaa ovensa lokakuussa Kallion kirjaston Kupolisalissa. Kannattaa pysyä kuulolla, sillä avajaistilaisuudesta tiedotetaan myöhemmin. Tule siis mukaan nauttimaan musiikista ja taiteesta, jotka yhdistyvät tällä ainutlaatuisella tavalla?</p><p>Merkitkää kalenteriinne lokakuu ja saapukaa kokemaan Vizual Muzik -näyttelyn lumoava maailma – tämä on elämys, jota ette halua jättää väliin!</p><p> <a href=\"https://www.juhaseila.com/index\">www.juhaseila.com</a> </p><p>***<br> Kallion kirjasto<br> Viides linja 11<br> (09) 310 85053<br><a href=\"https://www.facebook.com/kirjastokallio/\"><u>Kallion kirjasto Facebookissa</u></a></p>" }, "short_description": { "fi": "Tervetuloa elämysten maailmaan – Vizual Muzik: Juha Seila 20 vuotta musiikkikuvauksen lumossa!" }, "provider": null, "name": { "fi": "Näyttely: Juha Seila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269043/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268812", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4896, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-25T10:23:22.962238Z", "last_modified_time": "2023-09-25T10:23:22.962265Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E03087AD-8F1F-47D8-B447-E5D0688675FF}/106166", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4896/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-25T10:23:22.808213Z", "last_modified_time": "2023-11-14T06:21:06.986535Z", "date_published": "2023-09-25T08:34:00Z", "start_time": "2023-10-01T21:00:00Z", "end_time": "2023-10-30T22: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Lasten- ja musiikkiosasto, 3. krs.", "en": "Children and music section, 3rd floor" }, "description": { "fi": "<h3>Between cultures</h3><p>Valokuvanäyttely kertoo Suomeen 1970-luvulla tulleiden chileläispakolaisten lapsista ja heidän elämäntarinoistaan. Näyttelyssä tuodaan esille pohdintoja kahden kulttuurin keskellä varttumisesta, identiteetistä ja kuuluvuuden tunteesta.</p><p>Chile50-ryhmä<br><a href=\"https://www.chile50.fi/\">www.chile50.fi</a></p><p>Puolet töistä on esillä Rikhadinkadun kirjastossa. Lisätiedot: <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Rikhardinkadun_kirjasto/Tapahtumat/Valentina_Morales_Buschmann__Between_cul(268341)\">https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Rikhardinkadun_kirjasto/Tapahtumat/Valentina_Morales_Buschmann__Between_cul(268341)</a></p><p>***</p><p>A photography exhibition that features the life stories of those whose parents came to Finland from Chile as refugees in the 1970s.</p><p>The exhibition explores questions around identity, growing up between two cultures, and the feeling of belonging.<br><br><a href=\"https://www.chile50.fi/\">www.chile50.fi</a></p><p>Half of this photography exhibition is in Rikhardinkatu Library. More info: https://www.helmet.fi/en-US/Libraries_and_services/Rikhardinkatu_Library/Events/Valentina_Morales_Buschmann__Between_cul(268342)</p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 857 53</p><p> <a href=\"https://www.facebook.com/kirjastokallio\">facebook.com/kirjastokallio</a> </p>", "en": "<h3>Between cultures</h3></p><p>A photography exhibition that features the life stories of those whose parents came to Finland from Chile as refugees in the 1970s.</p><p>The exhibition explores questions around identity, growing up between two cultures, and the feeling of belonging.<br><br><a href=\"https://www.chile50.fi/\">www.chile50.fi</a></p><p>***</p><p>Half of this photography exhibition is in Rikhardinkatu Library. More info:<a href=\"http:// https://www.helmet.fi/en-US/Libraries_and_services/Rikhardinkatu_Library/Events/Valentina_Morales_Buschmann__Between_cul(268342)\">http:// https://www.helmet.fi/en-US/Libraries_and_services/Rikhardinkatu_Library/Events/Valentina_Morales_Buschmann__Between_cul(268342)</a></p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 857 53</p><p> <a href=\"https://www.facebook.com/kirjastokallio\">facebook.com/kirjastokallio</a> </p>" }, "short_description": { "fi": "Valokuvanäyttely kertoo Suomeen 1970-luvulla tulleiden chileläispakolaisten lapsista ja heidän elämäntarinoistaan.", "en": "A photography exhibition that features the life stories of those whose parents came to Finland from Chile as refugees in the 1970s." }, "provider": null, "name": { "fi": "Näyttely: Valentina Morales Buschmann", "en": "Valentina Morales Buschmann: Between cultures" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268812/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268341", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10840/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11930/?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:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4792, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T14:01:28.205999Z", "last_modified_time": "2023-09-15T14:01:28.206020Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1C68EE10-87F4-4B6A-9DEE-CCFC3B1F1DC5}/105900", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4792/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-15T15:06:33.258887Z", "last_modified_time": "2023-11-14T06:21:06.917567Z", "date_published": "2023-09-15T13:00:00Z", "start_time": "2023-10-01T21:00:00Z", "end_time": "2023-10-30T22: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Käytävägalleria, 3. krs", "en": "Käytävägalleria, 3rd floor" }, "description": { "fi": "<p>Valokuvanäyttely kertoo Suomeen 1970-luvulla tulleiden chileläispakolaisten lapsista ja heidän elämäntarinoistaan.</p><p>Näyttelyssä tuodaan esille pohdintoja kahden kulttuurin keskellä varttumisesta, identiteetistä ja kuuluvuuden tunteesta.</p><p>Puolet töistä on esillä Kallion kirjastossa</p><p> <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.helmet.fi%2Ffi-FI%2FKirjastot_ja_palvelut%2FKallion_kirjasto%2FTapahtumat%2FNayttely_Valentina_Morales_Buschmann(268812)&data=05%7C01%7Cleeni.vantulder%40hel.fi%7C81551b588ae2493d9f1708dbcaf53e25%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638326926883006371%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=M7hCFlSH%2B%2FVWRfyMN%2FVjdDrR0W2n8ASLx5ky%2BZdqwxM%3D&reserved=0\">https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Kallion_kirjasto/Tapahtumat/Nayttely_Valentina_Morales_Buschmann(268812)</a> </p><p>Chile50-ryhmä<br><a href=\"http://www.chile50.fi\">www.chile50.fi</a></p>", "en": "<p>A photography exhibition that features the life stories of those whose parents came to Finland from Chile as refugees in the 1970s.</p><p>The exhibition explores questions around identity, growing up between two cultures, and the feeling of belonging.</p><p>Half of this photography exhibition is in Kallio Library</p><p> <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.helmet.fi%2Ffi-FI%2FKirjastot_ja_palvelut%2FKallion_kirjasto%2FTapahtumat%2FNayttely_Valentina_Morales_Buschmann(268812)&data=05%7C01%7Cleeni.vantulder%40hel.fi%7C81551b588ae2493d9f1708dbcaf53e25%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638326926883006371%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=M7hCFlSH%2B%2FVWRfyMN%2FVjdDrR0W2n8ASLx5ky%2BZdqwxM%3D&reserved=0\">https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Kallion_kirjasto/Tapahtumat/Nayttely_Valentina_Morales_Buschmann(268812)</a> </p><p> <a href=\"http://www.chile50.fi\">www.chile50.fi</a> </p>" }, "short_description": { "fi": "Valokuvanäyttely Suomeen 1970-luvulla tulleiden chileläispakolaisten lapsista ja heidän elämäntarinoistaan.", "en": "A photography exhibition that features the life stories of those whose parents came to Finland from Chile as refugees in the 1970s." }, "provider": null, "name": { "fi": "Valentina Morales Buschmann - Between cultures", "en": "Valentina Morales Buschmann - Between cultures" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268341/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269786", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5550, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-19T08:25:29.645735Z", "last_modified_time": "2023-10-19T08:25:29.645754Z", "name": "", "url": "https://www.helmet.fi/download/noname/{AC5BF182-F048-441B-8033-ACCAF17DDB93}/106893", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5550/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-19T08:25:55.071870Z", "last_modified_time": "2023-11-14T06:21:06.781799Z", "date_published": "2023-10-19T06:58:00Z", "start_time": "2023-10-30T06:00:00Z", "end_time": "2023-10-30T18: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "</p><p>Kampanja-aikana 23.10.–12.11. nostamme kirjastoissa Nenäpäivän hengessä esille kirjoja, joissa käsitellään kampanjan kohdemaita ja teemoja. Kirjanäyttelyistä voi lainata kirjoja kotiin tavalliseen tapaan. Kirjanäyttelyitä löytyy Espoossa seuraavista kirjastoista:</p><ul> <li>Entressen kirjasto</li> <li>Lippulaivan kirjasto</li> <li>Sellon kirjasto</li> </ul><p>Tervetuloa tutustumaan ja lainaamaan aineistoja!</p>" }, "short_description": { "fi": "Nenäpäivä-kampanjan inspiroimat kirjanäyttelyt Entressen, Lippulaivan ja Sellon kirjastoissa. Tervetuloa tutustumaan!" }, "provider": null, "name": { "fi": "Nenäpäivä-kirjanäyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269786/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268252", "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: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:10821/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4774, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-14T12:42:54.122078Z", "last_modified_time": "2024-02-06T13:39:27.595673Z", "name": "", "url": "https://www.helmet.fi/download/noname/{195AF82A-9002-47C7-9473-EBDBD0849975}/34495", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4774/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-14T12:55:56.757965Z", "last_modified_time": "2023-11-14T06:21:06.641788Z", "date_published": "2023-09-14T11:52:43.350000Z", "start_time": "2023-10-30T16:00:00Z", "end_time": "2023-10-30T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p> <strong>LUKIJAN PAIKKA - Kohtaamisia kirjojen äärellä</strong> </p><p>Juttelemme vapaamuotoisesti kirjoista laidasta laitaan: romaanit, runot, tietokirjat, sarjakuvat eivätkä leffat tai musiikkikaan ole kiellettyjä. Voit ottaa mukaan suosikki-, inhokki- tai vaikka juuri lukemasi kirjan tai tulla muuten vaan juttelemaan tai kuuntelemaan.</p><p>Vapaa pääsy. Rento tunnelma. Ja luonnollisesti kahvi-/teetarjoilu. Tervetuloa</p>" }, "short_description": { "fi": "Tuo lempikirjasi, kirjalöytösi ja ajatuksesi yhteiseen kirjoja koskevaan keskusteluun! Myös etäosallistumismahdollisuus!" }, "provider": null, "name": { "fi": "Lukijan paikka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268252/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263712", "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: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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2613, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:27:51.931902Z", "last_modified_time": "2024-02-06T13:38:05.683653Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E7372B6C-C5A2-4FB8-9266-08746D3B7D7B}/104493", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2613/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-08-15T15:52:01.494248Z", "last_modified_time": "2023-11-14T06:21:06.571566Z", "date_published": "2023-07-12T09:26:00Z", "start_time": "2023-10-30T16:00:00Z", "end_time": "2023-10-30T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Mangapiiri yli 15-vuotiaille nuorille sekä nuorille aikuisille kokoontuu Vuosaaren kirjaston kokoushuoneessa parillisten viikkojen maanantai-iltaisin. Vapaamuotoisissa tapaamisissa mm. keskustellaan mangasta ja jaetaan sarjasuosituksia.</p><p>Mangapiirin omalle Discord-kanavalle pääset osoitteesta <a href=\"https://discord.gg/5U24BwR\">https://discord.gg/5U24BwR</a></p><p>Tervetuloa mukaan!</p><p> <em>Kuva: amerei / Pixabay</em> </p>" }, "short_description": { "fi": "Mangapiiri yli 15-vuotiaille nuorille sekä nuorille aikuisille kokoontuu Vuosaaren kirjaston kokoushuoneessa parillisten viikkojen maanantai-iltaisin. Vapaamuotoisissa tapaamisissa mm. keskustellaan mangasta ja jaetaan sarjasuosituksia." }, "provider": null, "name": { "fi": "Mangapiiri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263712/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262505", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8177/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10829/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2747, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:01.770590Z", "last_modified_time": "2024-02-06T13:39:05.937573Z", "name": "", "url": "https://www.helmet.fi/download/noname/{417E1B7A-E326-483F-A53D-07A2527A3601}/94790", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2747/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:52:01.142096Z", "last_modified_time": "2023-11-14T06:21:06.498958Z", "date_published": "2023-06-28T11:20:00Z", "start_time": "2023-10-30T16:00:00Z", "end_time": "2023-10-30T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Dekkarilukupiiri kokoontuu kerran kuukaudessa Oulunkylän kirjastossa. Jos olet intohimoinen dekkareiden lukija, tervetuloa mukaan!</p><p>Syksyn tapaamiskerrat:</p><p>Ma 28.8. Mick Herron: Luupäät<br> Ma 25.9. Tove Alsterdal: Juurakko<br> Ma 30.10. Fredrik Backman: Ahdistunutta porukkaa<br> Ma 27.11. Cara Hunter: Jäljettömiin<br> Ma 18.12. William Burroughs ja Jack Kerouac: Ja virtahevot kiehuivat altaissaan</p><p> <br> Seuraavaksi tapaamiskerraksi luettavan kirjan voi lainata Oulunkylän kirjaston asiakaspalvelupisteestä kuukautta ennen lukupiiriä. Lukupiiriin mahtuu 12 osallistujaa.</p><p> <br> Lisätiedot ja ilmoittautumiset: antti.lehtovirta(at)hel.fi.</p><p>Lämpimästi tervetuloa!<br> </p>" }, "short_description": { "fi": "Tervetuloa mukaan dekkarilukupiiriin!" }, "provider": null, "name": { "fi": "Dekkarilukupiiri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262292", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?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:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2812, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:29.107456Z", "last_modified_time": "2024-02-06T13:38:05.947859Z", "name": "", "url": "https://www.helmet.fi/download/noname/{8CCB6D8C-1735-4C5D-B8ED-38CCAB24A603}/101294", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2812/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:52:00.511689Z", "last_modified_time": "2023-11-14T06:21:06.423982Z", "date_published": "2023-06-27T12:29:00Z", "start_time": "2023-10-30T16:00:00Z", "end_time": "2023-10-30T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Är det länge sedan du använt din svenska? Skulle du vilja öva dig i trevligt sällskap? Kom med till vårt svenska språkkafé och aktivera din svenska.</p><p>Språkkaféet leds av bibliotekets egen frivilligarbetare.</p><p>Onko ruotsin kielen taitosi ruosteessa ja haluaisit harjoitella puhumista? Tule rohkeasti mukaan herättelemään kielitaitoasi ruotsin kielen keskustelukerhoon. </p><p>Kerhoa vetää kirjaston oma vapaaehtoinen. </p>" }, "short_description": { "fi": "Haluatko herätellä ruotsin kielen taitoasi yhdessä muiden kanssa? Tule mukaan ruotsin keskustelukerhoon! Kom med till vårt svenska språkkafé och aktivera din svenska." }, "provider": null, "name": { "fi": "Vardagssvenska - Svenskt språkcafé" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262292/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265628", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?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:10690/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3315, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-16T07:31:43.157987Z", "last_modified_time": "2023-08-16T07:31:43.158006Z", "name": "", "url": "https://www.helmet.fi/download/noname/{79DF55E8-FE59-4986-B314-239F76C10B7C}/97943", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3315/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-16T07:59:13.696191Z", "last_modified_time": "2023-11-14T06:21:06.290211Z", "date_published": "2022-11-08T14:36:00Z", "start_time": "2023-10-30T16:00:00Z", "end_time": "2023-10-30T17: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!</p><p> <strong>Nekun ja Pätkiksen</strong> voi tavata parittomien viikkojen maanantaisin klo 18-19.</p><p> <strong>Veitin </strong>voi tavata parillisten viikkojen maanantaisin klo 18-19.</p><p>Tervetuloa tapaamaan lukukoiria!</p>" }, "short_description": { "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea kirjastokoirille!" }, "provider": null, "name": { "fi": "Lukukoira tavattavissa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265628/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262630", "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:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2770, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:30.927970Z", "last_modified_time": "2024-02-06T13:38:32.418590Z", "name": "", "url": "https://www.helmet.fi/download/noname/{8F68B848-502F-4D74-BF0A-3898D6F0D9C0}/98980", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2770/?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-08-15T15:51:56.669543Z", "last_modified_time": "2023-11-14T06:21:06.221115Z", "date_published": "2023-09-28T08:00:00Z", "start_time": "2023-10-25T14:00:00Z", "end_time": "2023-10-30T17: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "</p><p>Jakomäen kirjastossa</p><p>Keskiviikkoisin klo 17–19</p><p>(30.8., 27.9., 25.10. ja 22.11.)</p><p>Tule mukaan sukeltamaan tarinoihin ja neulomaan yhdessä!</p><p>Novellikoukussa voit tehdä omia neuletöitäsi tai hyväntekeväisyystöitä – tai istahtaa ihan vain nauttimaan ääneen luetuista novelleista.</p><p>Tervetuloa! Teetarjoilu!</p>" }, "short_description": { "fi": "Novellikoukku Jakomäen kirjastossa" }, "provider": null, "name": { "fi": "Novellikoukku" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262630/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261580", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2743, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:59.045477Z", "last_modified_time": "2023-08-15T15:30:59.045500Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6C79680D-C080-4F8D-B3B5-F0FE633F272A}/75016", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:51:56.296115Z", "last_modified_time": "2023-11-14T06:21:06.154626Z", "date_published": "2022-12-27T08:00:00Z", "start_time": "2023-10-30T15:00:00Z", "end_time": "2023-10-30T17: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, "provider_contact_info": null, "info_url": null, "location_extra_info": null, "description": { "fi": "<p>Kiinnostaako huovutus, kirjonta, tekstaus tai tuunaus? Tapanilan kirjaston askartelukerhossa tutustutaan erilaisiin askartelu- ja käsityötekniikoihin yhdessä teekupin äärellä. Tervetuloa näpräämään! Lisätietoja: anni.forselius@hel.fi</p><p> <strong>Aikuisten askartelukerho kokoontuu joka kuun viimeisenä maanantaina klo 17-19:</strong> </p><p>28.8. Näkyvä paikkaus: opetellaan tapoja paikata vaatteita niin, että paikka saa näkyä. Voit tuoda oman paikattavan vaatteen tai tekstiilin mukaan halutessasi.</p><p>25.9.. Neulahuovutusta: tutustutaan neulahuovutukseen koristelutekniikkana. Voit tuoda oman villaisen vaatteen, kankaan, laukun ym ja huovutusvälineitä, jos sinulla on, tai kokeilla kerhon välineillä.</p><p>30.10. Heijastimet: askarrellaan heijastimia itselle tai lahjaksi. Voit ottaa mukaan omia heijastavia lankoja ym.</p><p>27.11. Jouluaskartelua: tehdään lehtileikkeistä joulukortteja, pakettikortteja, koristeita ja magneetteja. Et tarvitse mitään mukaan.</p><ul></ul>" }, "short_description": { "fi": "Kiinnostaako huovutus, kirjonta, tekstaus tai tuunaus? Tutustutaan erilaisiin askartelu- ja käsityötekniikoihin yhdessä teekupin äärellä." }, "provider": null, "name": { "fi": "Aikuisten askartelukerho" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261580/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263828", "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: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3908, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-06T11:22:08.871228Z", "last_modified_time": "2023-09-06T11:22:08.871253Z", "name": "", "url": "https://www.helmet.fi/download/noname/{09D1B39A-83E1-4082-ADC2-0AB5D78CA352}/86537", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3908/?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-08-15T15:51:54.795253Z", "last_modified_time": "2023-11-14T06:21:06.084020Z", "date_published": "2023-07-18T10:30:00Z", "start_time": "2023-10-30T15:00:00Z", "end_time": "2023-10-30T16: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "2. krs Oppimistila 3" }, "description": { "fi": "<p> <strong>Tervetuloa kielikahvilaan!</strong> </p><p>Suomen kielen kielikahvila jatkuu syksyllä 2023 4.9. alkaen. Tapaamiset järjestetään maanantaisin klo 17, Oppimistila 3, toinen kerros.</p><p>Ilmoittaudu sähköpostitse osoitteessa oodinetakielikahvila@gmail.com tai tule suoraan paikan päälle.<br> </p><p>Photo: Unsplash.com / Avel Chuklanov</p>", "en": "<p> <strong>Welcome to Finnish language café!</strong> </p><p>Finnish Language café meets every Monday at 5:00 PM in Learning room 3, second floor.</p><p>You can sing up in advance by sending email to: oodinetakielikahvila@gmail but it's not mandatory. Welcome!</p><p> <strong>Tervetuloa kielikahvilaan!</strong> </p><p>Suomen kielen kielikahvila jatkuu syksyllä 2023 4.9. alkaen. Tapaamiset järjestetään maanantaisin klo 17, Oppimistila 3, toinen kerros.</p><p>Ilmoittaudu sähköpostitse osoitteessa oodinetakielikahvila@gmail.com tai tule suoraan paikan päälle.<br> </p><p>Photo: Unsplash.com / Avel Chuklanov</p>" }, "short_description": { "fi": "Suomen kielen kielikahvila jatkuu keväällä 2023 16.1. klo 17 alkaen.", "en": "Welcome to Finnish language café!" }, "provider": null, "name": { "fi": "Suomen kielen kielikahvila", "en": "Finnish language café" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263828/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263020", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18241/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?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:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2742, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:30:58.694329Z", "last_modified_time": "2023-08-15T15:30:58.694350Z", "name": "", "url": "https://www.helmet.fi/download/noname/{C9DA4DA4-2640-4CBB-868F-2255CF851521}/98446", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2742/?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:p16486/?format=api" } ], "created_time": "2023-08-15T15:51:52.592078Z", "last_modified_time": "2023-11-14T06:21:06.014172Z", "date_published": "2023-06-30T21:00:00Z", "start_time": "2023-10-30T15:00:00Z", "end_time": "2023-10-30T16: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, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Hymiö, 2 kerros" }, "description": { "fi": "<h3>Tarvitsetko apua läksyjen teossa?</h3><p>Suomen Punaisen Ristin Läksyhelppi-kerhon ohjaajat auttavat sinua. Toiminta on tarkoitettu kaikille peruskoulun ja toisen asteen oppilaille ja opiskelijoille. Toiminta on maksutonta. Tervetuloa mukaan!</p><p>Lisätietoja:</p><p>laksyhelppi.lansivantaa@gmail.com</p><p>Kuva: SPR:n kuvapankki</p>" }, "short_description": { "fi": "Apua läksyjen tekoon kaikille koululaisille ja toisen asteen opiskelijoille maanantaisin klo 17-18.30!" }, "provider": null, "name": { "fi": "Läksyhelppi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263020/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26769, "next": "