Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1276®istration__remaining_waiting_list_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1277®istration__remaining_waiting_list_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1275®istration__remaining_waiting_list_capacity__isnull=true" }, "data": [ { "id": "helmet:267211", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3850, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-04T08:30:57.076077Z", "last_modified_time": "2023-09-04T08:30:57.076106Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9769C9A9-5E53-47F9-BD9C-4151106C56E2}/105355", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3850/?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-04T08:30:56.523192Z", "last_modified_time": "2023-10-18T05:57:33.770380Z", "date_published": "2023-09-04T06:54:34.137000Z", "start_time": "2023-10-03T15:00:00Z", "end_time": "2023-10-03T16: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, "info_url": null, "provider": null, "short_description": { "fi": "Tule kuuntelemaan ja keskustelemaan Meri ja Tove -kirjasta!" }, "location_extra_info": { "fi": "Mika Waltari -sali, 4. krs" }, "name": { "fi": "Kirjailta: Meri ja Tove – elämää saaristossa" }, "provider_contact_info": null, "description": { "fi": "<p>Syksyisessä kirjaillassa pääsemme kuulemaan ja keskustelemaan <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2510382__Stove%20ja%20meri__P0%2C3__Orightresult__U__X2?lang=fin&suite=cobalt\"><strong>Meri ja Tove – elämää saaristossa</strong></a> -kirjasta (<a href=\"https://kauppa.johnnurmisensaatio.fi/products/meri-ja-tove\">John Nurmisen Säätiö</a>, 2022)!<br><br> Syksyllä 2022 ilmestynyt kirja Meri ja Tove – elämää saaristossa kertoo Toven rakkaudesta mereen ja saaristoon aina lapsuudesta vanhuuteen saakka. Kirjaa esittelevät sen kirjoittajat, historian dosentti ja tietokirjailija Otto Latva ja kulttuurihistorian dosentti Maarit Leskelä-Kärki.<br><br> Kirjailijoista:<br><strong>Otto Latva</strong> on monilajisen historian dosentti, historioitsija ja tietokirjailija, jolla on erityinen kiinnostus meri- ja ympäristöhistorian tutkimukseen.<br><strong>Maarit Leskelä-Kärki </strong>on kulttuurihistorian dosentti, joka on tutkinut naisten kirjoittamisen kulttuurihistoriaa ja erikoistunut elämäkerrallisen aineiston tutkimiseen.<br><br> Tilaisuus on kaikille avoin, tervetuloa!<br><br> Tilaisuuden järjestää <a href=\"https://tovejanssonseura.fi/\">Tove Jansson -seura</a><br><br><a href=\"https://www.helmet.fi/toolonkirjasto\">Töölön kirjasto</a><br><br><br> Kirjan kansikuva: John Nurmisen Säätiö<br> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267211/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261651", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8205/?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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2833, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:53.472279Z", "last_modified_time": "2023-08-15T15:32:53.472300Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F4F7C62B-EAB0-46A7-8E00-D96951B9C84D}/103174", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2833/?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:47:14.606894Z", "last_modified_time": "2023-10-17T20:42:02.201695Z", "date_published": "2023-06-19T12:24:00Z", "start_time": "2023-10-17T15:00:00Z", "end_time": "2023-10-17T16: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, "info_url": null, "provider": null, "short_description": { "fi": "Eila Kautto kertoo Espanjankielisen maailman taiteilijoista ja heidän taiteestaan joka toisena tiistaina klo 18 aikavälillä 5.9.-28.11.23." }, "location_extra_info": null, "name": { "fi": "Tarinoita taiteilijoista: Goya" }, "provider_contact_info": null, "description": { "fi": "<p>Eila Kautto kertoo Espanjankielisen maailman taiteilijoista ja heidän taiteestaan Pohjois-Haagan kirjastossa syyslukukaudella joka toisena tiistaina klo 18 aikavälillä 5.9.-28.11.23. Voit tulla kuuntelemaan yhtä tai useampaa tilaisuutta. </p><p>Eila Kautto on perehtynyt Espanjan kieleen ja kulttuuriin. Hän on julkaissut espanjan kielen oppikirjoja, tarinankerronnallisen tietokirjan <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb1978959__SCid%20%3A%20sankari%201000-luvun%20Espanjasta__Orightresult__U__X4?lang=fin&suite=cobalt\">Cid : sankari 1000-luvun Espanjasta</a> sekä historiallisen seikkailutarinan <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2433118__S%20Victor.%20Suomalainen%20muskettisoturi.__Orightresult__U__X4?lang=fin&suite=cobalt\">Victor : suomalainen muskettisoturi</a>.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tervetuloa!</p><p> <strong>Syksyn sarja kokonaisuudessaan: </strong> </p><p> <strong>ti 5.9. </strong>Picasso</p><p> <strong>ti 19.9. peruttu</strong> </p><p> <strong>ti 3.10. </strong>Velázquez</p><p> <strong>ti 17.10. </strong>Goya</p><p> <strong>ti 31.10. </strong>Frida Kahlo ja Botero</p><p> <strong>ti 14.11. </strong>Gaudí</p><p> <strong>ti 28.11.</strong> El Greco </p><p> <em>Kuva: pixabay.com</em> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261651/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59797", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4040, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:50.244782Z", "last_modified_time": "2023-09-07T14:19:50.244801Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730187.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4040/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:50.091765Z", "last_modified_time": "2023-10-17T20:14:23.811453Z", "date_published": null, "start_time": "2023-08-18T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CC0F161D2E3264D9B32974C6810B5597/Muska_Hot_dogs_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CC0F161D2E3264D9B32974C6810B5597/Muska_Hot_dogs_", "en": "http://www.malmitalo.fi/en/events/event/CC0F161D2E3264D9B32974C6810B5597/Muska_Hot_dogs_" }, "provider": null, "short_description": { "fi": "”Nainen, joka teki ensimmäisen rock-levyn Suomessa”", "sv": "”Kvinnan som spelade in Finlands första rockplatta.”", "en": "“The woman who made the first rock album in Finland”" }, "location_extra_info": null, "name": { "fi": "Muska & Hot dogs – Malmin tapahtumakesä", "sv": "Muska & Hot dogs – Malms evenemangssommar", "en": "Muska & Hot dogs – Malmi Summer of Events" }, "provider_contact_info": null, "description": { "fi": "<p>”Nainen, joka teki ensimmäisen rock-levyn Suomessa”</p><p><b>Muska</b> aloitti edelleen jatkuvan laulajauransa vuonna 1969, jolloin hän oli ainoa suomalainen naispuolinen rocklaulaja. Ohjelmistossa hänellä oli mm. <b>Janis Joplinia</b> ja <b>Tina Turneria</b>. Heidän biisejään löytyy Muskan keikkaohjelmistosta edelleen.</p><p>Syksyllä 1971 Muskaa alkoi säestää <b>\"Kala-Hande\" Salakan</b> luotsaama legendaarinen <b>Orpheus-yhtye</b>, joka sittemmin aloitti yhteistyön <b>Dave \"Isokynä\" Lindholmin</b> kanssa.</p><p>Kala-Hande ja Muska perustivat uuden yhtyeen <b>Muska & Hot Dogs</b>, joka keikkaili paljon 70-luvun alussa tehden mm. yhteiskiertueita <b>Hurriganesin</b> ja <b>Rauli \"Badding\" Somerjoen</b> kanssa.</p><p>Muska juhlisti 50 keikkavuottaan konserttikiertueella syksyllä 2019 säestäjänään 5-miehinen yhtye, esittäen rock/pop-tuotantoaan eri vuosikymmeniltä.</p><p>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "sv": "<p>”Kvinnan som spelade in Finlands första rockplatta.”</p><p>År 1969, när Muska inledde sin ännu pågående sångarkarriär var hon Finlands enda kvinnliga rocksångare. Hon spelade bland annat musik av Janis Joplin och Tina Turner. Deras låtar står fortfarande på repertoaren på Muskas spelningar.</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "en": "<p>“The woman who made the first rock album in Finland”</p><p>Muska began her career as a singer in 1969 as the first female rock singer, and she is still going strong. At the time, her repertoire included Janis Joplin and Tina Turner. Their songs are still featured in Muska’s set lists.</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b><br>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59797/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60593", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4039, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:49.870771Z", "last_modified_time": "2023-09-07T14:19:49.870793Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731980.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4039/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:49.706787Z", "last_modified_time": "2023-10-17T20:14:23.614088Z", "date_published": null, "start_time": "2023-08-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6DD4FEE2265B78F25F3C12E4D5EC9DAE/Kanneltalon_avoimet_afrotunnit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6DD4FEE2265B78F25F3C12E4D5EC9DAE/Oppna_afroklasser_pa_Gamlasgarden", "en": "http://www.kanneltalo.fi/en/events/event/6DD4FEE2265B78F25F3C12E4D5EC9DAE/Open_Afro_dance_classes_at_Kanneltalo" }, "provider": null, "short_description": { "fi": "Tervetuloa tutustumaan länsiafrikkalaisiin tansseihin ja treenaamaan liverytmien tahdissa elokuun viimeisinä arkipäivinä Kannelmäen Sitratorille!", "sv": "Välkommen att bekanta dig och öva på västafrikanska danser i takt med liverytmer de sista vardagarna i augusti på Cittertorget i Gamlas!", "en": "Come and explore West African dances and get some exercise to the beat of live rhythms on the last weekdays of August at Sitratori square in Kannelmäki!" }, "location_extra_info": null, "name": { "fi": "Kanneltalon avoimet afrotunnit", "sv": "Öppna afroklasser på Gamlasgården", "en": "Open Afro dance classes at Kanneltalo" }, "provider_contact_info": null, "description": { "fi": "<p>Tervetuloa tutustumaan länsiafrikkalaisiin tansseihin ja treenaamaan liverytmien tahdissa elokuun viimeisinä arkipäivinä Kannelmäen Sitratorille!</p><p>Länsiafrikkalainen tanssi on iloista, energistä ja vauhdikasta. Se kohottaa kuntoa kuin huomaamatta sekä kehittää rytmitajua, keskittymistä ja koordinaatiokykyä. Liikekieli on kokonaisvaltaista ja liikeradat laajoja. Vuorovaikutus elävän musiikin kanssa antaa energiaa ja tuo tanssimiseen tunnelmaa!</p><p>Tunnit sisältävät alkulämmittelyn sekä tutustumista länsiafrikkalaiseen rytmiikkaan ja liikekieleen. Opit myös pienen koreografian. Lopuksi tehdään palauttava ja rentouttava loppuvenyttely.<br> <br><b>Tunnit sopivat kaikille</b>: voit tulla joko tutustumaan lajiin, tai konkarina ottamaan rennon varaslähdön alkavaan tanssisyksyyn!</p><p>Vapaa pääsy, sateen sattuessa tanssimme katoksen alla.</p><p>Mukaan rento tanssiasu, hikipyyhe ja vesipullo.<br> <br>Opettaja: Lilli Rannikko, KM, tanssinopettaja<br>Säestys: Aly Yattara, Adama Kone ja Aleksi Aalto<br> <br>Kesto: 45 min<br>Paikka: Sitratori<br>Vapaa pääsy</p>", "sv": "<p>Välkommen att bekanta dig och öva på västafrikanska danser i takt med liverytmer de sista vardagarna i augusti på Cittertorget i Gamlas!</p><p>Västafrikansk dans är glad, energisk och fartfylld! Klasserna innehåller uppvärmning och introduktion till västafrikanska rytmer och rörelsespråk. Du kommer också att få lära dig en liten koreografi.</p><p>Vi avslutar med stretching för återhämtning och avslappning.<br>Klasserna är lämpliga för alla: om du är nybörjare, kom och bekanta dig med dansstilen, eller om du är veteran, ta en tjuvstart till danshösten under avslappnade former!</p><p>Fritt inträde, vid regn dansar vi under tak! Ta med löst sittande danskläder, en svetthandduk och en vattenflaska.</p><p>Danslärare: Lilli Rannikko<br>Musikerna: Aly Yattara, Adama Kone, Aleksi Aalto</p>", "en": "<p>Come and explore West African dances and get some exercise to the beat of live rhythms on the last weekdays of August at Sitratori square in Kannelmäki!</p><p>West African dance is cheerful, energetic and fast-paced. The classes include a warm-up session and introduction to West African rhythm and movement. You also learn a short choreography. The class ends with relaxing and restorative stretches.</p><p>The classes are suitable for everyone: you can come as a beginner to explore a new dance, or with previous experience to get a laid-back early start to the autumn of dance!</p><p>Free admission; in case of rain we dance under the canopy. Bring a casual dance outfit, a gym towel and a bottle of water.</p><p>Dance instructor: Lilli Rannikko<br>Musicians: Aly Yattara, Adama Kone, Aleksi Aalto</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60593/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59886", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4038, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:49.463019Z", "last_modified_time": "2023-09-07T14:19:49.463048Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730136.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4038/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:49.052103Z", "last_modified_time": "2023-10-17T20:14:23.403627Z", "date_published": null, "start_time": "2023-08-18T14:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5CBB04D99F0B4D59D1C50A9F738BFF18/Kaupunkitanssit", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5CBB04D99F0B4D59D1C50A9F738BFF18/Stadsdans", "en": "http://www.malmitalo.fi/en/events/event/5CBB04D99F0B4D59D1C50A9F738BFF18/City_Dances" }, "provider": null, "short_description": { "fi": "Liike lähtee lantiosta!", "sv": "Rörelsen börjar i höfterna!", "en": "Movement starts from the hips!" }, "location_extra_info": null, "name": { "fi": "Kaupunkitanssit – Malmin tapahtumakesä", "sv": "Stadsdans", "en": "City Dances" }, "provider_contact_info": null, "description": { "fi": "<p>Liike lähtee lantiosta!</p><p>Tanssiteatteri Tsuumin johdolla kuka tahansa pääsee kokeilemaan eri tanssilajeja ja nauttimaan liikkeen riemusta ulkoilmassa. Kaupunkitanssikesä tuo maksuttomat tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää. Mukaan tanssimaan voi tulla milloin vain. Ennakkoilmoittautumista ei tarvita. <br> <br>Opetuksesta vastaavat koulutetut tanssinopettajat<br>Opetuksen järjestää Tanssiteatteri Tsuumi<br>Opetuspaikkana toimii Ala-Malmin puisto Malmitalon takana. Mahdollisen sateen sattuessa tanssitaan Malmitalon aulassa.<br> <br>Tapahtumakesän kaupunkitanssit järjestetään Ala-Malmin tapahtumapuistossa seuraavasti:<br>pe 9.6. klo 17.30–18.15 samba<br>pe 16.6. klo 17.30–18.15 humppa<br>pe 18.8. klo 17.30-18.15 tango <br>ke 23.8. klo 17.30-18.15 fusku <br>pe 25.8. klo 17.30-18.15 cha cha</p><p>Soveltuu kaikenikäisille. Ohjaus suomeksi.</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "sv": "<p>Rörelsen börjar i höfterna!</p><p>Tanssiteatteri Tsuumi leder dansövningarna där vem som helst kan delta och prova på olika dansstilar och njuta av rörelseglädjen i det fria.</p><p>Evenemangssommarens stadsdans ordnas i Nedre Malms evenemangspark.</p><p><b>Malms evenemangssommar</b><br>Nedre Malms park<br> <br>Nedre Malms park vaknar till liv i juni och augusti när Malms evenemangssommar gör inträde! Evenemangssommaren bjuder på ett mångsidigt program för alla åldrar. Det utlovas fantastiska spelningar, allsång, cirkuskonst, karnevalsstämning och mångahanda verkstäder.<br> <br>Välkommen att titta, prova och inspireras!<br> <br>Inträdet till evenemangen i parken är fritt.</p><p><b>Här kan du se hela programmet:</b></p><p>https://www.malmitalo.fi/sv/evenemangen/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>", "en": "<p>Movement starts from the hips!</p><p>Under Dance Theatre Tsuumi’s guidance, everyone can try out various types of dance and enjoy the joy of motion outdoors.</p><p>The city dances for the Malmi Summer of Events will be held at the Ala-Malmi Event Park.</p><p><b>Malmi Summer of Events</b><br>Ala-Malmin puisto park<br> <br>Ala-Malmin puisto park will be busy between June and August with the arrival of the Malmi Summer of Events! The programme will include a variety of activities for people of all ages: amazing live music, sing-alongs, a carnival atmosphere and a wealth of workshops.<br> <br>Come by and experience the excitement!<br> <br>Free admission to all park events.</p><p><b>You can find the programme here:</b></p><p>https://www.malmitalo.fi/en/events/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59886/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59783", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4037, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:48.543619Z", "last_modified_time": "2023-09-07T14:19:48.543642Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730128.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4037/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:47.864209Z", "last_modified_time": "2023-10-17T20:14:23.183254Z", "date_published": null, "start_time": "2023-08-18T12:00:00Z", "end_time": "2023-08-18T13: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A7AA67F770DD9CC967B71B663C312B3/Yhteislaulut" }, "provider": null, "short_description": { "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut ovat mukana myös Malmin tapahtumakesässä." }, "location_extra_info": null, "name": { "fi": "Yhteislaulut – Malmin tapahtumakesä" }, "provider_contact_info": null, "description": { "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut ovat mukana myös Malmin tapahtumakesässä.</p><p><b>Jukka Okkosen</b> ja <b>Pauli Kainulaisen</b> johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br> <br>Yhteislauluja järjestetään Ala-Malmin puistossa kesä- ja elokuussa seuraavasti:<br>pe 9.6. klo 15–16<br>pe 16.6. klo 15–16<br>pe 18.8. klo 15–16<br>pe 25.8. klo 15–16</p><p>Soveltuu kaikenikäisille. Ohjaus suomeksi. <br>Vapaa pääsy</p><p><b>Malmin tapahtumakesä 9.–17.6. ja 17.–26.8.</b><br>Ala-Malmin puisto</p><p>Ala-Malmin puisto herää eloon kesä- ja elokuussa, kun sinne kurvaa Malmin tapahtumakesä! Tapahtumakesässä on tarjolla monipuolista ohjelmaa kaikenikäisille. Luvassa upeita keikkoja, yhteislaulua, sirkustaidetta, karnevaalitunnelmaa ja monenmoisia työpajoja.</p><p>Tervetuloa tutustumaan, kokemaan ja innostumaan!</p><p>Puiston tapahtumiin on vapaa pääsy.</p><p><b>Tutustu Malmin tapahtumakesän koko ohjelmaan täällä:</b></p><p>https://www.malmitalo.fi/fi/tapahtumat/event/1C49D7E92A53C0BFE291FE6BD023B4F0/Malmin_tapahtumakes__2023</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59783/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267884", "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: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/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11930/?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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4681, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-07T15:24:24.877050Z", "last_modified_time": "2023-09-07T15:24:24.877073Z", "name": "", "url": "https://www.helmet.fi/download/noname/{683840F3-8B4B-4A17-AF38-36CE7163DC60}/105676", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4681/?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-07T15:24:24.731647Z", "last_modified_time": "2023-10-17T19:31:16.773549Z", "date_published": "2023-09-07T11:58:00Z", "start_time": "2023-09-07T21:00:00Z", "end_time": "2023-09-16T21: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, "info_url": null, "provider": null, "short_description": { "fi": "Interventio Rikhardinkadun ja Oodin kirjastoissa.", "en": "Intervention at Rikhardinkatu and Oodi public libraries." }, "location_extra_info": null, "name": { "fi": "Kiilan Feministinen Arkisto Together Again -festivaalilla", "en": "Kiila Feminist Archive at Together Again festival" }, "provider_contact_info": null, "description": { "fi": "<p>Kiilan feministinen arkisto/Kiila Feminist Archive on taiteilija <strong>Minna Henrikssonin</strong> kokoama arkisto taideteoksena. Teos on pitkäkestoinen ja edelleen jatkuva tutkimusprosessi yli kahdeksankymmentä vuotta toimineen taiteilija- ja kirjailijayhdistys Kiilan alkuvuosiin.</p><p>Julkinen interventio toteutetaan Oodi kirjaston ja Rikhardinkadun kirjaston hyllyissä. Kummankin kirjaston kaunokirjallisuuden ja runouden osastoilla on 8.-17. syyskuuta 2023 sarja vihkosia, joissa on suomenkielisiä otteita ja englanninkielisiä käännöksiä neljän kirjailijan valituista novelleista, romaaneista ja runoista: Tyyne Maija Salmisen, Elvi Sinervon, Iris Uurron ja Katri Valan. Nämä teokset ovat jääneet pois kirjastojen kierrosta, mutta ansaitsisivat paikan sekä suomalaisessa että kansainvälisessä kirjallisuuskaanonissa.</p><p>Minna Henriksson on tehnyt uusia linoleikkauskuvituksia näihin kirjallisuusotteisiin, joita on vihkosissa ja niitä on myös esillä Rikhardinkadun kirjastossa.</p><p>Interventio toteutetaan yhteistyössä lontoolaisen The Showroomin kuraattorin <strong>Lily Hallin</strong> ja Suomen Britannian- ja Irlannin-instituutin taideohjelman johtajan <strong>Karoliina Korpilahden</strong> kanssa. Vihkot on suunnitellut <strong>Kaisa Lassinaro</strong>.</p><p>Kuva: Minna Henriksson, Kiila Feminist Archive, installation view, Editorial Tables: Reciprocal Hospitalities, The Showroom, London, 2023. Photo: Dan Weill Photography</p>", "en": "<p>The Kiila Feminist Archive is an archive-as-artwork by artist <strong>Minna Henriksson</strong>. The work involves a long-term and ongoing process of research into the early years of the Kiila artists’ and writers’ association in Finland, which has been running for over eighty years.</p><p>A public intervention is realised into the shelves of two public libraries in Helsinki: Oodi Library and Rikhardinkatu Library. Between 8-17 September 2023, it will be possible to find a series of booklets that will be inserted into the fiction and poetry sections of each library, holding translations in English and the original Finnish texts of excerpts from selected short stories, novels and poems by four authors: Tyyne Maija Salminen, Elvi Sinervo, Iris Uurto and Katri Vala. These are texts that have gone out of public circulation; and have been largely neglected, both in Finnish and international literary history.</p><p>These excerpts will be accompanied by new linocut illustrations made by Minna Henriksson, which will also be included in the booklets and displayed at the Rikhardinkatu Library.</p><p>The intervention is realised in collaboration with <strong>Lily Hall</strong>, Curator at The Showroom, London and organised in collaboration with <strong>Karoliina Korpilahti</strong>, Programme Director, Arts at the Finnish Institute in UK and Ireland. The booklets are designed by <strong>Kaisa Lassinaro</strong>.</p><p>Photo: Minna Henriksson, Kiila Feminist Archive, installation view, Editorial Tables: Reciprocal Hospitalities, The Showroom, London, 2023. Photo: Dan Weill Photography</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267884/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269350", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-09T11:39:02.885488Z", "last_modified_time": "2023-10-09T11:39:02.885508Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B9B91492-FE66-4D82-BC9C-A1773316AA0C}/106604", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5099/?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-09T11:39:01.202108Z", "last_modified_time": "2023-10-17T15:43:14.227759Z", "date_published": "2023-10-09T09:47:17.013000Z", "start_time": "2023-10-17T15:00:00Z", "end_time": "2023-10-17T17: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, "info_url": null, "provider": null, "short_description": { "fi": "Nuoret ja asunnottomuus -tilaisuus pureutuu asunnottomuuden syihin, seurauksiin ja ratkaisuihin. Paneelikeskustelu tuo yhteen virkamiehet, järjestökentän ja poliitikot etsimään yhdessä ratkaisuja nuorten asunnottomuuteen." }, "location_extra_info": { "fi": "Jaminurkka" }, "name": { "fi": "Nuoret ja asunnottomuus" }, "provider_contact_info": null, "description": { "fi": "<h3>Tiistaina 17.10. klo 18 Jaminurkassa</h3><p>Miten nuoresta tulee asunnoton? Miten nuorten asunnottomuus näkyy yhteiskunnassa?</p><p>Nuoret ja asunnottomuus -tilaisuus pureutuu asunnottomuuden syihin, seurauksiin ja ratkaisuihin. Paneelikeskustelu tuo yhteen virkamiehet, järjestökentän ja poliitikot etsimään yhdessä ratkaisuja nuorten asunnottomuuteen.</p><p>Ohjelma</p><p>18.00 <strong>Tervetulosanat</strong>, Maria Rajala</p><p> <strong>Avauspuheenvuoro: Mitä on nuorten asunnottomuus?</strong></p><p>Lauri Nieminen, aikuissosiaalityön johtava sosiaalityöntekijä, Länsi-Uudenmaan hyvinvointialue </p> 18.10 <strong>Kommenttipuheenvuoro</strong> (järjestöedustajan nimi vahvistetaan myöhemmin) </p> 18.15 <strong>Paneeli: Ratkaisuja asunnottomuuteen – mitä me voimme tehdä?</strong></p><p>Lauri Nieminen, aikuissosiaalityön johtava sosiaalityöntekijä, Länsi-Uudenmaan hyvinvointialue.</p><p>Järjestön edustaja (nimi vahvistuu myöhemmin)</p><p>Hannele Kerola, kaupunginvaltuutettu, aluevaltuuston varavaltuutettu SDP</p><p>Lauri Hietanen, puheenjohtaja, Espoon Demarinuoret</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269350/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268956", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8143/?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:10652/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10655/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10814/?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/helmet:23/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4940, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-28T16:02:18.107516Z", "last_modified_time": "2023-09-28T16:02:18.107545Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D85271F5-1787-4872-B67C-70AC7369EF4F}/106277", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4940/?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-28T16:02:16.622967Z", "last_modified_time": "2023-10-17T15:43:11.286689Z", "date_published": "2023-09-28T14:20:00Z", "start_time": "2023-10-17T15:00:00Z", "end_time": "2023-10-17T16: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, "info_url": null, "provider": null, "short_description": { "fi": "Tule moikkaamaan suosikkitubettajaa kirjaston nuortenosastolle!" }, "location_extra_info": null, "name": { "fi": "Meet & Greet: Derya Dincer" }, "provider_contact_info": null, "description": { "fi": "<p>Tule moikkaamaan suosikkitubettajaa kirjaston nuortenosastolle! Mitkä ovatkaan Deryan suosikkikirjoja? </p><p>Tapahtuma on lasten ja nuorten toivoma ja sinne on vapaa pääsy. Tervetuloa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268956/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268581", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4852, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-20T13:38:53.953315Z", "last_modified_time": "2023-09-20T13:38:53.953334Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3ED3B89C-146C-4746-9A4C-98ABA72C7F93}/88867", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4852/?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-20T13:38:53.647103Z", "last_modified_time": "2023-10-17T15:43:06.891056Z", "date_published": "2023-09-20T12:07:00Z", "start_time": "2023-10-17T13:00:00Z", "end_time": "2023-10-17T16: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, "info_url": null, "provider": null, "short_description": { "fi": "Leppävaaran asunnottomien yön tapahtumaa vietetään maanantaina 17.10. Tervetuloa kuulemaan infoja ja syömään makkaraa!" }, "location_extra_info": { "fi": "lava sekä Viaporintori" }, "name": { "fi": "Leppävaaran Asunnottomien yö" }, "provider_contact_info": null, "description": { "fi": "<h3>Tiistaina 17.10. klo 16-19 aulassa tai Viaporintorilla</h3><p>Toimijoiden pisteitä: Sininauhasäätiö, Irti huumeista, Kela, Talous- ja velkaneuvonta, Leppävaaran seurakunta</p><ul> <li>Makkaraa ja mehua</li> <li>Villasukkia</li> <li>Kirjasto-auto</li> </ul><p> <br> Tervetuloa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268581/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:244833", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8292/?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:10833/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4756, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-13T13:42:26.177264Z", "last_modified_time": "2023-09-13T13:42:26.177284Z", "name": "", "url": "https://www.helmet.fi/download/noname/{CC0E2ACA-9799-480E-88C6-5DD3B8E801B5}/97299", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4756/?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-13T13:42:26.024876Z", "last_modified_time": "2023-10-17T15:43:05.151023Z", "date_published": "2023-09-13T12:10:00Z", "start_time": "2023-10-17T15:00:00Z", "end_time": "2023-10-17T16: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, "info_url": null, "provider": null, "short_description": { "fi": "Olli Varonen, sello & esitelmä" }, "location_extra_info": null, "name": { "fi": "Esitelmällinen konsertti \"János Starkerin jalanjäljillä\"" }, "provider_contact_info": null, "description": { "fi": "<p> <b>Esitelmällinen konsertti \"</b> <strong>János Starkerin jalanjäljillä\"</strong> </p><p>Pitäjänmäen kirjastossa kuullaan tiistaina 17.10. klo 18.00 mielenkiintoinen esitelmällinen konsertti.</p><p>Monet pitävät János Starkeria 1900-luvun merkittävimpänä sellistinä. Hän loi maailmanmaineen konsertoijana ympäri maailmaa, minkä lisäksi hän uhrasi poikkeuksellisen paljon energiaa nuorten sellistien kouluttamiseen. Usein luullaan, että Starker oli amerikkalainen johtuen hänen pitkästä urastaan Indianan yliopistossa. Kuitenkin kyseessä on ehta unkarilainen taiteilija, joka sai musiikillisen koulutukselle pääasiallisesti Budapestin kuuluisassa Liszt-akatemiassa.</p><p>Konsertissa kuullaan niitä sooloteoksia, joita Starker esitti mielellään. Useita merkittäviä teoksia suuri yleisö tuntee nimenomaan Starkerin popularisoimana. Ohjelmassa kuullaan J.S Bachin soolosarja C-duuri, Zoltán Kodályn soolosäveliä sekä espanjalaisen Gacpar Cassadon säveliä vuodelta 1926. Lisäksi tarjolla on myös kansanmusiikin ystäville unkarilaisia kansansävelmiä.</p><p>Konsertin esittää sellotaiteilija Olli Varonen (1965).<em> Olli opiskeli Budapestissa samassa oppilaitoksessa kuin Starker, jopa samoissa luokkahuoneissa. Ollin opettajana Liszt-akatemiassa toimi prof. Ede Banda, joka oli Starkerin opiskelutoveri ja myöhemmin myös Starkerin sijainen Indiana-yliopistossa. </em>Niinpä Ollin puheenvuoroissa kuullaan elävästi musiikinhistoriaa ihaillun taiteilijan nuoruusvuosista ja Budapestin Liszt-akatemian musiikkielämästä ennen toista maailmansotaa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:244833/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269694", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45317/?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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5479, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-16T10:40:08.667761Z", "last_modified_time": "2023-10-16T10:40:08.667782Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1170E98C-9846-49F7-B689-B04B8B136485}/106804", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5479/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-16T10:40:08.353887Z", "last_modified_time": "2023-10-17T15:42:50.987943Z", "date_published": "2023-10-16T08:34:52.080000Z", "start_time": "2023-10-17T10:30:00Z", "end_time": "2023-10-17T11: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, "info_url": null, "provider": null, "short_description": { "fi": "Suunnitellaan yhdessä Jätkäsaarta!" }, "location_extra_info": null, "name": { "fi": "Meidän Jätkäsaari -työpaja" }, "provider_contact_info": null, "description": { "fi": "<p>Meidän Jätkäsaari -työpaja</p><p>Miten Jätkäsaaresta tulisi entistä parempi paikka asua? Suunnitellaan yhdessä tulevaisuuden Jätkäsaarta. Työpajassa tuotettua materiaalia hyödynnetään Jätkäsaareen rakennettavan kiertotalouskorttelin kehittämistyössä.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269694/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266898", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3729, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-28T08:22:41.701588Z", "last_modified_time": "2023-08-28T08:22:41.701610Z", "name": "", "url": "https://www.helmet.fi/download/noname/{05408EB7-3D94-4569-9290-CB09F37427F7}/105248", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3729/?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-28T08:24:30.701024Z", "last_modified_time": "2023-10-17T15:32:02.985077Z", "date_published": "2023-08-28T07:18:33.277000Z", "start_time": "2023-09-16T07:00:00Z", "end_time": "2023-09-16T17: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, "info_url": null, "provider": null, "short_description": { "fi": "Kiilan feministinen arkisto/Kiila Feminist Archive on taiteilija Minna Henrikssonin kokoama arkisto taideteoksena." }, "location_extra_info": { "fi": "3. krs, Kirjataivas" }, "name": { "fi": "Kiilan Feministinen Arkisto: interventio Oodissa" }, "provider_contact_info": null, "description": { "fi": "<p>Oodin 3. kerroksessa toteutetaan taideinterventio Kiilan Feministinen Arkisto/Kiila Feminist Archive Together Again -festivaalilla 8.9.-17.9.</p><p>Kiilan feministinen arkisto/Kiila Feminist Archive on taiteilija <strong>Minna Henrikssonin </strong>kokoama arkisto taideteoksena. Teos on pitkäkestoinen ja edelleen jatkuva tutkimusprosessi yli kahdeksankymmentä vuotta toimineen taiteilija- ja kirjailijayhdistys Kiilan alkuvuosiin.</p><p>Julkinen interventio toteutetaan Oodi kirjaston ja Rikhardinkadun kirjaston hyllyissä. Kummankin kirjaston kaunokirjallisuuden ja runouden osastoilla on 8.-17. syyskuuta 2023 sarja vihkosia, joissa on suomenkielisiä otteita ja englanninkielisiä käännöksiä neljän kirjailijan valituista novelleista, romaaneista ja runoista: <strong>Tyyne Maija Salmisen</strong>, <strong>Elvi Sinervon</strong>, <strong>Iris Uurron</strong> ja <strong>Katri Valan</strong>. Nämä teokset ovat jääneet pitkälti pois kirjastojen kierrosta, mutta ansaitsisivat paikan sekä suomalaisessa että kansainvälisessä kirjallisuuskaanonissa.</p><p>Minna Henriksson on tehnyt uusia linoleikkauskuvituksia näihin kirjallisuusotteisiin, joita on vihkosissa ja niitä on myös esillä Rikhardinkadun kirjastossa.</p><p>Interventio toteutetaan yhteistyössä lontoolaisen The Showroomin kuraattorin <strong>Lily Hallin</strong> ja Suomen Britannian- ja Irlannin-instituutin taideohjelman johtajan <strong>Karoliina Korpilahden</strong> kanssa. Vihkot on suunnitellut <strong>Kaisa Lassinaro</strong>.</p><p>***</p><p>Intervention at Rikhardinkatu and Oodi public libraries</p><p>The Kiila Feminist Archive at Together Again festival</p><p>Dates: 8.-17.9.2023</p><p>Rikhardinkatu library opening times: Monday to Thursday 8-20, Friday 8-18, Saturday 10-16, Sunday 12-18</p><p>Oodi library opening times: Monday to Friday 8-21, Saturday and Sunday 10-20</p><p>The Kiila Feminist Archive is an archive-as-artwork by artist Minna Henriksson. The work involves a long-term and ongoing process of research into the early years of the Kiila artists’ and writers’ association in Finland, which has been running for over eighty years. </p><p>A public intervention is realised into the shelves of two public libraries in Helsinki: Oodi Library and Rikhardinkatu Library. Between 8-17 September 2023, it will be possible to find a series of booklets that will be inserted into the fiction and poetry sections of each library, holding translations in English and the original Finnish texts of excerpts from selected short stories, novels and poems by four authors: Tyyne Maija Salminen, Elvi Sinervo, Iris Uurto and Katri Vala. These are texts that have gone out of public circulation; and have been largely neglected, both in Finnish and international literary history. </p><p>These excerpts will be accompanied by new linocut illustrations made by Minna Henriksson, which will also be included in the booklets and displayed at the Rikhardinkatu Library.</p><p>The intervention is realised in collaboration with Lily Hall, Curator at The Showroom, London and organised in collaboration with Karoliina Korpilahti, Programme Director, Arts at the Finnish Institute in UK and Ireland. The booklets are designed by Kaisa Lassinaro.</p><p> <em>Image credit:</em> </p><p> <em>Minna Henriksson, Kiila Feminist Archive, installation view, Editorial Tables: Reciprocal Hospitalities, The Showroom, London, 2023. Photo: Dan Weill Photography </em> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266898/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268793", "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:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4902, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-25T16:56:43.144331Z", "last_modified_time": "2023-09-25T16:56:43.144349Z", "name": "", "url": "https://www.helmet.fi/download/noname/{CB91A894-4F45-42BA-A536-A24C26003785}/106132", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4902/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-25T16:56:41.854122Z", "last_modified_time": "2023-10-17T14:44:36.593810Z", "date_published": "2023-09-22T12:10:00Z", "start_time": "2023-10-17T09:00:00Z", "end_time": "2023-10-17T14: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, "info_url": null, "provider": null, "short_description": { "fi": "Tule sukeltamaan koodauksen ja Minecraftin maailmaan!" }, "location_extra_info": { "fi": "Oppimistila 1, 2krs." }, "name": { "fi": "Koodien kartano -pelipaja" }, "provider_contact_info": null, "description": { "fi": "<p>Tule sukeltamaan koodauksen ja Minecraftin maailmaan! </p><p>Aalto-yliopisto Junior järjestää kaikille avointa ohjelmaa syyslomaviikolla Oodissa. Työpajat ovat maksuttomia ja osallistua voivat niin koodimestarit kuin myös vasta-alkajat 8-vuotiaista ylöspäin. Nuorimpien kanssa pajaan tulee osallistua aikuinen.</p><p>Työpajassa osallistujat astuvat Minecraft Educationilla rakennettuun Koodien Kartanon maailmaan, jossa heitä odottaa pakopeli-tyylinen seikkailu. Pelaajien on ratkaistava erilaisia koodipulmia päästäkseen ulos kartanosta. Pelissä käytetään visuaalista lohkokoodausta, joka tekee koodaamisesta saavutettavaa. Paja korostaa pelaamisen opettavaisuutta, ja miten se voi auttaa meitä ymmärtämään monimutkaisia aiheita, kuten koodaamista!</p><p>Pelissä käytetty maailma ja pelattavat elementit ovat osa Minecraftin julkaisemia avoimia opetusmateriaaleja.</p><p>Ennen tapahtuman alkua Oppimistila 1:sen edessä jaetaan lippuja tapahtumaan, pelaamaan pääsee lipussa mainittuna aikana. </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268793/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:236387", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8324/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:11916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4975, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-02T14:39:41.262699Z", "last_modified_time": "2023-10-02T14:39:41.262725Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D01A3548-EC35-44DC-AF8F-2CCE13AE1923}/93762", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4975/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-10-02T14:39:41.129853Z", "last_modified_time": "2023-10-17T10:39:45.087697Z", "date_published": "2023-10-02T13:00:00Z", "start_time": "2023-10-17T10:00:00Z", "end_time": "2023-10-17T13: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, "info_url": null, "provider": null, "short_description": { "fi": "Kepparipaja Jakomäen kirjastossa" }, "location_extra_info": null, "name": { "fi": "Kepparipaja" }, "provider_contact_info": null, "description": { "fi": "<p>Tule tekemään oma keppihevonen. Kirjasto tarjoaa materiaalit.</p><p>Kepparityöpaja<strong> Jakomäen kirjastossa syyslomalla tiistaina 17.10. klo 13-16 ja tiistaina 31.10. klo 13-16.</strong></p><p>Tervetuloa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:236387/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269364", "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:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-09T12:43:11.996383Z", "last_modified_time": "2023-10-09T12:43:11.996402Z", "name": "", "url": "https://www.helmet.fi/download/noname/{63842E00-5CF7-4580-8180-D3877D8EED65}/106609", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-10-09T12:43:54.978286Z", "last_modified_time": "2023-10-17T10:39:42.858224Z", "date_published": "2023-10-09T11:00:00Z", "start_time": "2023-10-17T10:00:00Z", "end_time": "2023-10-17T12: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, "info_url": null, "provider": null, "short_description": { "fi": "Tervetuloa Hakunilan kirjaston syyslomapajaan!" }, "location_extra_info": null, "name": { "fi": "Syyslomapaja - askartelu" }, "provider_contact_info": null, "description": { "fi": "<p>Hei syyslomalainen! Tule askartelemaan yhdessä kirjastolaisen kanssa Hakunilan kirjastoon. Luvassa syksyistä askartelua. </p><p>Kirjasto tarjoaa askartelutarvikkeet. </p><p>Asiasana: syysloma</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269364/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:259672", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2964, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:37:43.389210Z", "last_modified_time": "2023-08-15T15:37:43.389230Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6CE61ADB-CF0D-41FD-96F5-2B29FAEA4331}/103043", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2964/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:37:43.274423Z", "last_modified_time": "2023-10-17T10:30:49.570961Z", "date_published": "2023-06-11T21:00:00Z", "start_time": "2023-09-20T15:00:00Z", "end_time": "2023-09-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": null, "short_description": { "fi": "Helsingin työväenopiston ja kirjaston kirjailijailta. Vapaa pääsy. Tervetuloa!" }, "location_extra_info": null, "name": { "fi": "Kirjailijavieraana Suvi Vaarla" }, "provider_contact_info": null, "description": { "fi": "<p>Teoksia: Kadonnut aika (2022), Westend (2019)</p><p>Haastattelu: FM <strong>Katri Sola</strong></p><p> <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2508654?lang=fin\"> <em>Kadonnut aika</em> </a> on terävästi nähty koronapandemian jälkeinen ajankuva ja vangitseva romaani hankalista perhesuhteista, julkisuudesta ja nykyteknologian vallasta. Pariskunta tuijottaa ruutuja, eikä kykene enää kohtaamaan toisiaan. Lastenhoitaja huomaa palanneensa ajassa taaksepäin. Laiteriippuvainen lapsi karkailee voidakseen pelata älypuhelimellaan. Oton, Iriksen, Lassen ja Alexandran elämäntarinoissa analysoidaan osuvasti aikamme ilmiöitä. </p><p>Suureen suosioon noussut talouden nousukautta ja sitä seurannutta lamaa kuvaava esikoisromaani <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2423242?lang=fin\"><em>Westend</em></a> kertoo Elinan kasvutarinan lapsuusvuosien Tapiolasta kauppakorkeakoulun opiskelijaksi ja uraa luovaksi aikuiseksi. Perheen isän rakennusyritys hakeutuu 1990-luvun alkuvuosina suurten velkojen takia konkurssiin. Kaikki muuttuu suuren nousukiidon päätteeksi. Laman varjo lankeaa perheen elämään vielä pitkään traagisin seurauksin. </p><p>Helsinkiläinen<b> Suvi Vaarla </b>on opiskellut valtiotieteitä kolmessa eri maassa ja suorittanut Kriittisen korkeakoulun kirjoittajakoulun. Hän on työskennellyt viestinnän ja mainonnan suunnittelijana sekä ministeriön ylitarkastajana. </p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Malmin_kirjasto/Yhteystiedot\">Malmin kirjasto</a> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:259672/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267804", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:23/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3900, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-05T16:26:47.612102Z", "last_modified_time": "2023-09-05T16:26:47.612122Z", "name": "", "url": "https://www.helmet.fi/download/noname/{982BCF05-8BFF-4071-BD37-3F5F3830F191}/105630", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3900/?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-05T16:26:47.378872Z", "last_modified_time": "2023-10-17T10:29:32.688989Z", "date_published": "2023-09-05T14:17:00Z", "start_time": "2023-09-16T11:00:00Z", "end_time": "2023-09-16T14: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, "info_url": null, "provider": null, "short_description": { "fi": "Tule kokeilemaan Starfield-peliä" }, "location_extra_info": { "fi": "Aura-tila" }, "name": { "fi": "Starfield-pelitapahtuma" }, "provider_contact_info": null, "description": { "fi": "<p>Bethesda Game Studios (mm. The Elder Scrolls V: Skyrim and Fallout 4) on julkaissut pitkän odotuksen jälkeen uuden pelin. Starfield on uuden sukupolven roolipeli, joka sijoittuu vuoteen 2330. </p><p>Tule kokeilemaan huikean upeaksi kehuttua Starfield-peliä Oodin kakkoskerroksen Aura-tilaan. Peliä pelataan PC-tietokoneella. </p><p>Huom! Pelin ikäraja on K-18, joten tapahtuma on tarkoitettu ainoastaan täysi-ikäisille. Varaudu todistamaan ikäsi tarvittaessa. </p><p>Starfield-pelitapahtuma on ilmainen.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267804/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268001", "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: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:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?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, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4690, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-08T12:27:30.840082Z", "last_modified_time": "2023-09-08T12:27:30.840110Z", "name": "", "url": "https://www.helmet.fi/download/noname/{18DB5386-E580-42AA-84CD-5E1EB0BA3404}/105714", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4690/?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:p4354/?format=api" } ], "created_time": "2023-09-08T12:27:30.371644Z", "last_modified_time": "2023-10-17T10:29:32.483456Z", "date_published": "2023-09-08T10:21:43.913000Z", "start_time": "2023-09-16T11:30:00Z", "end_time": "2023-09-16T13: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, "info_url": null, "provider": null, "short_description": { "fi": "We invite you to our playful workshop.", "en": "We invite you to our playful workshop." }, "location_extra_info": { "fi": "Children's arena, 3rd floor", "en": "Children's arena, 3rd floor" }, "name": { "fi": "Romanian workshop for kids", "en": "Romanian workshop for kids" }, "provider_contact_info": null, "description": { "fi": "<p> <em>Știm că perioada aceasta vine la pachet cu multe emoții căci mulți dintre voi veți păși în universul colectivității, fie că vorbim de grădiniță sau școală.</em> </p><p> <em>Vă invităm la un atelier cu multă joacă și lectur</em> <em>ă</em> <em>unde vom răsfoi povești în care personajele preferate precum Conni sau Norișorul Roz ne povestesc despre experiențele lor în lumea colectivității.</em> </p><p> <em>Evenimentul va avea loc la Oodi, etajul 3, lângă Story Room.</em> </p><p> <em>Cărțile și materialele folosite în cadrul acestui atelier sunt obținute prin proiectul C.A.R.T.E - susținut de Departamentul pentru Românii de Pretutindeni în perioada iunie - noiembrie 2023</em> </p><p> <em>We know that this period comes with many emotions because many of you will step into the world of community, whether it's kindergarten or school.</em> </p><p> <em>We invite you to a workshop filled with playfulness, where we will explore stories in which favorite characters like Conni or Norisorul Roz tell us about their experiences in the world of community.</em> </p><p> <em>The event will take place at Oodi, 3rd floor, near the Story Room.</em> </p><p> <em>The event will be in Romanian, but all kids are wellcome!</em> </p><p> <em>The books and materials used in this workshop are obtained through the C.A.R.T.E project - supported by the Department for Romanians Everywhere from June to November 2023</em> </p>", "en": "<p> <em>Știm că perioada aceasta vine la pachet cu multe emoții căci mulți dintre voi veți păși în universul colectivității, fie că vorbim de grădiniță sau școală.</em> </p><p> <em>Vă invităm la un atelier cu multă joacă și lectur</em> <em>ă</em> <em>unde vom răsfoi povești în care personajele preferate precum Conni sau Norișorul Roz ne povestesc despre experiențele lor în lumea colectivității.</em> </p><p> <em>Evenimentul va avea loc la Oodi, etajul 3, lângă Story Room.</em> </p><p> <em>Cărțile și materialele folosite în cadrul acestui atelier sunt obținute prin proiectul C.A.R.T.E - susținut de Departamentul pentru Românii de Pretutindeni în perioada iunie - noiembrie 2023</em> </p><p> <em>We know that this period comes with many emotions because many of you will step into the world of community, whether it's kindergarten or school.</em> </p><p> <em>We invite you to a workshop filled with playfulness, where we will explore stories in which favorite characters like Conni or Norisorul Roz tell us about their experiences in the world of community.</em> </p><p> <em>The event will take place at Oodi, 3rd floor, near the Story Room.</em> </p><p> <em>The event will be in Romanian, but all kids are wellcome!</em> </p><p> <em>The books and materials used in this workshop are obtained through the C.A.R.T.E project - supported by the Department for Romanians Everywhere from June to November 2023</em> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268001/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268309", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4788, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T12:34:37.254179Z", "last_modified_time": "2023-09-15T12:34:37.254209Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9A4915E1-46BA-4D27-BC87-A8D7E7C10670}/105886", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4788/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-15T12:34:37.083403Z", "last_modified_time": "2023-10-17T10:29:32.219474Z", "date_published": "2023-09-15T11:03:00Z", "start_time": "2023-09-16T05:00:00Z", "end_time": "2023-09-16T13: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, "info_url": null, "provider": null, "short_description": { "fi": "Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023." }, "location_extra_info": null, "name": { "fi": "Värikäs maailmani -taidenäyttely 16.9.-3.10.23" }, "provider_contact_info": null, "description": { "fi": "<p>Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023.</p><p>\"Värikäs maailmani -taidenäyttelyssä tarkastellaan luonnon kauneutta ja ihmisen yhteyttä siihen. Teosten abstraktisuus nostattaa maalaukset uudelle tasolle henkisesti, ja jokainen voi tulkita teoksia omasta värikkäästä maailmastaan käsin.\"</p><p> <em>Kuva: Sini-Maaria Vänttinen</em> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268309/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27518, "next": "