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=1118®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1119®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1117®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:59966", "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": 4016, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:35.193390Z", "last_modified_time": "2023-09-07T14:19:35.193415Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731976.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4016/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:35.025769Z", "last_modified_time": "2023-10-13T20:44:38.490412Z", "date_published": null, "start_time": "2023-08-14T15:00:00Z", "end_time": "2023-08-14T15:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kanneltalon avoimet afrotunnit", "sv": "Öppna afroklasser på Gamlasgården", "en": "Open Afro dance classes at Kanneltalo" }, "provider_contact_info": null, "provider": null, "location_extra_info": 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!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/AA33853273E5F585EC5BF2DE9E4786CC/Kanneltalon_avoimet_afrotunnit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/AA33853273E5F585EC5BF2DE9E4786CC/Oppna_afroklasser_pa_Gamlasgarden", "en": "http://www.kanneltalo.fi/en/events/event/AA33853273E5F585EC5BF2DE9E4786CC/Open_Afro_dance_classes_at_Kanneltalo" }, "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:59966/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60584", "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: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": 4015, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:34.727697Z", "last_modified_time": "2023-09-07T14:19:34.727725Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731964.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4015/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:34.255716Z", "last_modified_time": "2023-10-13T20:44:38.297353Z", "date_published": null, "start_time": "2023-08-14T14:15: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, "name": { "fi": "Kaupunkitanssit Sitratorilla" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kesällä 2023 opetellaan jälleen paritansseja!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/566D5A9877022BC9CA6660434B0EB924/Kaupunkitanssit_Sitratorilla" }, "description": { "fi": "<p>Kesällä 2023 opetellaan jälleen paritansseja!</p><p>Kaupunkitanssikesä tuo ilmaiset tanssituokiot ilahduttamaan ja virkistämään pääkaupunkiseudun asukkaiden elämää.</p><p>Mukaan tanssimaan voi tulla milloin vain. Ennakkoilmoittautumista ei tarvita. Opetuksesta vastaavat koulutetut tanssinopettajat. Seuraathan tanssipäivän säätä: kovalla sateella tanssit peruuntuvat. Peruutuksesta kerrotaan Kaupunkitanssien Facebookissa (www.facebook.com/Kaupunkitanssit)<br> <br><b>Kesän 2023 tanssit:</b><br>ke 2.8. klo 17.15–18 tango<br>ke 9.8. klo 17.15–18 fusku<br>ma 14.8. klo 17.15–18 humppa<br>ke 16.8. klo 17.15–18 hidas valssi<br>ma 21.8. klo 17.15–18 samba<br>ke 23.8. klo 19.00–19.45 foksi<br>ma 28.8. klo 17.15–18 jenkka<br>ke 30.8. klo 17.15–18 cha cha</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60584/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60576", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?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": 4014, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:33.542446Z", "last_modified_time": "2023-09-07T14:19:33.542474Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735041.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4014/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:33.278081Z", "last_modified_time": "2023-10-13T20:44:38.110382Z", "date_published": null, "start_time": "2023-08-14T14:15: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, "name": { "fi": "Päivi Hirvonen Trio – Etno-Espa", "sv": "Päivi Hirvonen Trio – Etno-Espa", "en": "Päivi Hirvonen Trio – Etno-Espa" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Etno-Espa on vuosittainen kaupunkifestivaali, joka keskittyy uuteen kotimaiseen kansanmusiikkiin.", "sv": "Etno-Espa är en årligen arrangerad stadsfestival som koncentrerar sig på ny inhemsk folkmusik.", "en": "Etno-Espa is an annual city festival that focuses on modern folk music." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/0A8D64746BDEB1A4AF086D8B7192CC34/Paivi_Hirvonen_Trio", "sv": "http://www.espanlava.fi/sv/evenemang/event/0A8D64746BDEB1A4AF086D8B7192CC34/Paivi_Hirvonen_Trio", "en": "http://www.espanlava.fi/en/events/event/0A8D64746BDEB1A4AF086D8B7192CC34/Paivi_Hirvonen_Trio" }, "description": { "fi": "<p>Etno-Espa on vuosittainen kaupunkifestivaali, joka keskittyy uuteen kotimaiseen kansanmusiikkiin.</p><p>Vahva, syvä ääni kietoutuu juurevaan viuluun ja mystiseen jouhikkoon.</p><p><b>Päivi Hirvosen</b> säveltämissä ja sanoittamissa teemoissa käsitellään muun muassa lapsettomuutta, monisuhteisuutta, surua ja rakkautta. Kuultavissa ovat elokuvallisuus, kansanmusiikin moninaiset juuret sekä vaikutteet popmusiikista.</p><p>Hirvonen tuo ikiaikaiset tarinat ja suomalaisen tradition tähän päivään goottilaisella mystiikalla maustettuina. Yleensä soolona esiintyvän Päivi Hirvosen rinnalle lavalle liittyvät <b>Tero Pajunen</b> ja <b>Mirva Ormin</b> eli luvassa on uniikki kolmen viulisti-laulajan trio.</p><p>Päivi Hirvonen – viulu, laulu<br>Tero Pajunen – viulu, laulu<br>Mirva Ormin – viulu, laulu</p><p><i>Etno-Espa on vuosittainen kaupunkifestivaali, joka keskittyy uuteen kotimaiseen kansanmusiikkiin. Tapahtuman tarkoituksena on esitellä, mitä kaikkea suomalainen ja Suomessa tehtävä kansanmusiikki on tänä päivänä. Etno-Espa järjestetään 7.–17.8.2023.</i></p>", "sv": "<p>Etno-Espa är en årligen arrangerad stadsfestival som koncentrerar sig på ny inhemsk folkmusik.</p><p><b>Päivi Hirvonen</b> är violinist, sångare, stråkharpist, kompositör, textförfattare, producent och forskare, bosatt i Helsingfors. I den musik och de texter Hirvonen skriver behandlas bland annat barnlöshet, flersamma relationer, sorg och kärlek.</p><p>Man kan höra en filmmusikalisk udd, folkmusikens mångsidiga rötter och intryck från popmusiken. Päivi Hirvonen omplacerar uråldriga berättelser och den finländska traditionen i denna dag, kryddad med gotisk mystik.</p><p>Päivi Hirvonen<br>Tero Pajunen<br>Mirva Ormin</p><p><i>Etno-Espa är en årligen arrangerad stadsfestival som koncentrerar sig på ny inhemsk folkmusik. Evenemangets syfte är att presentera finländsk och i Finland skapad folkmusik i alla de former den antar i dag. Etno-Espa 2023 arrangeras 7.–17.8.2023 på Esplanadestraden.</i></p>", "en": "<p>Etno-Espa is an annual city festival that focuses on modern folk music.</p><p><b>Päivi Hirvonen</b> is a Helsinki-based violinist, singer, jouhikko player, composer, lyricist, producer and researcher. Her music and lyrics revolve around themes such as childlessness, polyamory, grief, and love, bearing distinct echoes of film music, the diverse roots of folk music, and pop music influences.</p><p>Päivi Hirvonen gives a contemporary update to ancient stories and Finnish traditions, with a touch of Gothic mysticism.</p><p>Päivi Hirvonen<br>Tero Pajunen<br>Mirva Ormin</p><p><i>Etno-Espa is an annual city festival that focuses on modern folk music. The festival presents what Finnish folk music and folk music made in Finland can be today. The festival takes place in Helsinki, on Espa outdoor stage from 7th to 17th of August 2023.</i></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60576/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60575", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?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": 4013, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:33.054609Z", "last_modified_time": "2023-09-07T14:19:33.054636Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735037.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4013/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:32.900878Z", "last_modified_time": "2023-10-13T20:44:37.919760Z", "date_published": null, "start_time": "2023-08-14T13: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, "name": { "fi": "Loimolan Voima – Etno-Espa", "sv": "Loimolan Voima – Etno-Espa", "en": "Loimolan Voima – Etno-Espa" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Etno-Espa on vuosittainen kaupunkifestivaali, joka keskittyy uuteen kotimaiseen kansanmusiikkiin.", "sv": "Etno-Espa är en årligen arrangerad stadsfestival som koncentrerar sig på ny inhemsk folkmusik.", "en": "Etno-Espa is an annual city festival that focuses on modern folk music." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A08EA556868C67BA44DA79A3707E684D/Loimolan_Voima", "sv": "http://www.espanlava.fi/sv/evenemang/event/A08EA556868C67BA44DA79A3707E684D/Loimolan_Voima", "en": "http://www.espanlava.fi/en/events/event/A08EA556868C67BA44DA79A3707E684D/Loimolan_Voima" }, "description": { "fi": "<p>Etno-Espa on vuosittainen kaupunkifestivaali, joka keskittyy uuteen kotimaiseen kansanmusiikkiin.</p><p><b>Loimolan Voima</b> on uutta karjalankielistä folkmusiikkia tekevä yhtye, jonka juuret ulottuvat syvälle Raja-Karjalaan. Yhtyeen muodostavat Lieksassa varttuneet, juuriltaan suistamolaiset veljekset <b>Mika ”Miša” Saatsi</b> ja <b>Niko ”Miikkula” Saatsi</b>.</p><p>Miša vastaa sävellyksistä ja Miikkula kirjoittaa tekstit suoraan karjalaksi. Veljesten missio on tehdä uhanalaista karjalan kieltä tunnetuksi musiikin kautta. Karjalan kieltä puhuu äidinkielenään Suomessa noin 11 000 ihmistä.</p><p>Loimolan Voiman palkittu debyyttialbumi <i>Ruttomužikan kyynäl</i> ilmestyi vuonna 2020. Yhtyeen konserteissa musiikki soljuu eteenpäin yhdessä karjalankielisen tarinoinnin kanssa ainutlaatuisella tavalla. Akustista yleisilmettä vahvistaa välillä syntetisaattoreiden pulputus ja vanhan rumpukoneen naputtama komppi.</p><p>Loopperilla on oma roolinsa duon livesovituksissa, toisaalta myös kokonaan akustiset hetket kuuluvat Loimolan Voiman konserttikokemukseen.</p><p>Mika ”Miša” Saatsi – laulu, ukulele, akustinen kitara, midi, loopperi, rytmisoittimet, melodika<br>Niko ”Miikkula” Saatsi – ukubasso, laulu, Moog, melodica, rytmisoittimet</p><p><i>Etno-Espa on vuosittainen kaupunkifestivaali, joka keskittyy uuteen kotimaiseen kansanmusiikkiin. Tapahtuman tarkoituksena on esitellä, mitä kaikkea suomalainen ja Suomessa tehtävä kansanmusiikki on tänä päivänä. Etno-Espa järjestetään 7.–17.8.2023.</i></p>", "sv": "<p>Etno-Espa är en årligen arrangerad stadsfestival som koncentrerar sig på ny inhemsk folkmusik.</p><p><b>Loimolan Voima</b> är en grupp som gör ny folkmusik på karelska språket och dess rötter finns djupt inne i Gränskarelen. Gruppen består av bröderna <b>Mika ”Miša” Saatsi</b> och <b>Niko ”Miikkula” Saatsi</b>, bägge uppvuxna i Lieksa men med rötter i Suistamo.</p><p>Miša står för kompositionerna, medan Miikkula skriver texterna, direkt på karelska. Brödernas mission är att göra det hotade karelska språket känt via musik.</p><p>Ensemblens musik låter sig färgas från bägge sidorna av gränsen, inspireras av traditionen, på väg mot morgondagen. Vid Loimolan Voimas konserter flyter musiken framåt på ett unikt sätt varvad med berättelser på karelska.</p><p>Mika ”Miša” Saatsi<br>Niko ”Miikkula” Saatsi</p><p><i>Etno-Espa är en årligen arrangerad stadsfestival som koncentrerar sig på ny inhemsk folkmusik. Evenemangets syfte är att presentera finländsk och i Finland skapad folkmusik i alla de former den antar i dag. Etno-Espa 2023 arrangeras 7.–17.8.2023 på Esplanadestraden.</i></p>", "en": "<p>Etno-Espa is an annual city festival that focuses on modern folk music.</p><p><b>Loimolan Voima</b> is an ensemble performing exclusively in the Karelian language, with their roots deep in the Border Karelia region. The ensemble was formed by <b>Mika ”Miša” Saatsi</b> and <b>Niko ”Miikkula” Saatsi</b>, two brothers who were born in Lieksa, Finland, but whose family originally came from Border Karelia’s Suistamo.</p><p>Miša is responsible for composition and Miikkula writes their lyrics in the Karelian language. The brothers are on a mission to make the endangered Karelian language better known through music. The ensemble’s music traverses both sides of the border, drawing from tradition and looking to the future. The duo’s concerts are a unique mix of free-flowing music and Karelian-language storytelling.</p><p>Mika ”Miša” Saatsi<br>Niko ”Miikkula” Saatsi</p><p><i>Etno-Espa is an annual city festival that focuses on modern folk music. The festival presents what Finnish folk music and folk music made in Finland can be today. The festival takes place in Helsinki, on Espa outdoor stage from 7th to 17th of August 2023.</i></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60575/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266907", "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:23:29.453481Z", "last_modified_time": "2023-10-13T16:07:19.904990Z", "date_published": "2023-08-28T07:18:33.277000Z", "start_time": "2023-09-12T05:00:00Z", "end_time": "2023-09-12T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kiilan Feministinen Arkisto: interventio Oodissa" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "3. krs, Kirjataivas" }, "short_description": { "fi": "Kiilan feministinen arkisto/Kiila Feminist Archive on taiteilija Minna Henrikssonin kokoama arkisto taideteoksena." }, "info_url": 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:266907/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:260241", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?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: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": 2649, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:46.559370Z", "last_modified_time": "2024-02-06T13:38:09.494167Z", "name": "", "url": "https://www.helmet.fi/download/noname/{53B92905-417E-4B6F-BABA-5452EB6C86F3}/85699", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2649/?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:35:00.497714Z", "last_modified_time": "2023-10-13T14:53:29.378244Z", "date_published": "2023-05-23T16:46:00Z", "start_time": "2023-09-12T14:00:00Z", "end_time": "2023-09-12T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kitararyhmä" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Musiikkiosaston soittohuone, 1. krs" }, "short_description": { "fi": "Tule mukaan soittamaan klassista kitaraa Tikkurilan kirjaston kitararyhmään. Edellytyksenä soitto- ja nuotinlukutaito." }, "info_url": null, "description": { "fi": "<p>Tule mukaan soittamaan klassista kitaraa Tikkurilan kirjaston kitararyhmään. Edellytyksenä soitto- ja nuotinlukutaito.</p><p>(kuva: pxhere.com)</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:260241/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:257259", "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:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2600, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:27:30.392115Z", "last_modified_time": "2024-02-06T13:38:28.764545Z", "name": "", "url": "https://www.helmet.fi/download/noname/{04A1009A-5985-4EBA-984D-86F36991EACA}/93005", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2600/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:35:00.147223Z", "last_modified_time": "2023-10-13T14:53:27.189133Z", "date_published": "2023-03-21T11:25:24.390000Z", "start_time": "2023-09-12T14:30:00Z", "end_time": "2023-09-12T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Toastmasters - become a better speaker", "en": "Toastmasters - become a better speaker" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Akseli-sali", "en": "Akseli-sali" }, "short_description": { "fi": "Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä.", "en": "Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment." }, "info_url": null, "description": { "fi": "<p>Ryhmä harrastajia kokoontuu harjoittelemaan puhe- ja esiintymistaitoja englannin kielellä. Harjoittele kannustavassa ja myönteisessä ryhmässä, jossa kehität itseluottamustasi puhujana ja esiintyjänä sekä vahvistat oman puheviestintäsi vaikuttavuutta! Kaikki ovat tervetulleita! </p><p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>", "en": "<p>Come and practice your public speaking and presentation skills in a friendly, nurturing and supportive environment. Our primary goal is to help each other become better speakers and communicators. You will learn skills and build confidence to effectively express your-self in any situation. All are welcome!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257259/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266559", "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: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": 3592, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-24T13:24:46.080890Z", "last_modified_time": "2024-02-06T13:38:11.220855Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E400CA08-6C51-4576-A11F-0151C8BBD8F2}/95588", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3592/?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-24T13:26:52.090469Z", "last_modified_time": "2023-10-13T14:53:26.660861Z", "date_published": "2023-08-24T11:26:03.140000Z", "start_time": "2023-09-12T14:30:00Z", "end_time": "2023-09-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Marttojen neulontaklinikka" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Marttojen neulontaklinikka Oodissa parillisten viikkojen keskiviikkoina klo 14-16, ja parittomien viikkojen tiistaina klo 17.30-19.30. Tervetuloa neulomaan yhdessä!" }, "info_url": null, "description": { "fi": "<p> <br> <strong>Neulontaklinikat Oodissa tiistaisin ja keskiviikkoisin 6.9. alkaen</strong> <br> <br> Tervetuloa neulomaan tai virkkaamaan yhdessä Kädentaitomartat ry:n ohjaajien kanssa! Voit opetella neulomisen alkeita tai taidokkaan neuleen yksityiskohtia. Opit ehkä uusia tapoja tehdä sukan kantapään, lapasen peukalon tai resorin ja voit kysyä neuvoa neuleohjeen pulmiin tai ohjeiden sovittamiseen omille mitoille. Martat opettavat myös parsimista, voit ottaa mukaan reikiintyneet villasukkasi tai muun korjausta kaipaavan villa-asusteen.</p><p>Neulontaklinikka kokoontuu kirjaston toisessa kerroksessa Kuutio-tilan edustalla parillisten viikkojen keskiviikkoina klo 14-16, ja parittomien viikkojen tiistaina klo 17.30-19.30.<br><br> Neulontaklinikat ovat maksuttomia ja avoimia kaikille neulomisesta kiinnostuneille, tervetuloa mukaan!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266559/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265271", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11405/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2648, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:45.434279Z", "last_modified_time": "2024-02-06T13:38:09.316234Z", "name": "", "url": "https://www.helmet.fi/download/noname/{0B206491-DBDE-499F-809D-2024A6385B1A}/95987", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2648/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T15:34:59.498394Z", "last_modified_time": "2023-10-13T14:53:26.451971Z", "date_published": "2023-08-14T11:46:00Z", "start_time": "2023-09-12T14:30:00Z", "end_time": "2023-09-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luetaan yhdessä", "en": "Luetaan yhdessä - Let's Read Together", "ru": "Luetaan yhdessä - Читаем вместе" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Haluatko oppia suomea? Maksuttomassa Luetaan yhdessä -ryhmässä harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea.", "en": "Do you wish to learn to speak, read and write Finnish? A free of charge Finnish learning group for adults meets at Vuosaari Library every Tuesday.", "ru": "Хотите учить финский язык? В группах ”Читаем вместе” (Luetaan yhdessä) – обучение раз в неделю по 2 часа. На занятиях учимся читать, писать и говорить по-фински. Занятия проводят педагоги-волонтеры." }, "info_url": null, "description": { "fi": "<h3>Haluatko oppia suomea? Vuosaaren kirjaston Luetaan yhdessä -ryhmässä opiskellaan yhdessä suomen kieltä tiistaisin.</h3><p>- Tunneilla harjoitellaan lukemaan, kirjoittamaan ja puhumaan suomea.</p><p>- Opiskelu on ilmaista.</p><p>- Voit ottaa lapsesi mukaan tunneille.</p><p>- Voit tulla mukaan opiskelemaan milloin vain.</p><p>- Ryhmien opettajat ovat vapaaehtoisia.</p><p>Tervetuloa mukaan!</p>", "en": "<h3>Do you wish to learn Finnish? A Finnish learning group for adults meets in Vuosaari Library every Tuesday at 5.30 pm.</h3><p>- Learn to speak, read and write Finnish.</p><p>- Studying is free of charge.</p><p>- You can take your child with you to the class.</p><p>- You can come along whenever you want.</p><p>- The group instructors are volunteers.</p>", "ru": "<p>Пора на учёбу! Хотите учить финский язык? В группах ”Читаем вместе” (Luetaan yhdessä) – обучение раз в неделю по 2 часа. На занятиях учимся читать, писать и говорить по-фински. Занятия проводят педагоги-волонтеры.</p><ul> <li>Обучение бесплатное.</li> <li>Можно приходить на занятия с ребёнком.</li> <li>Можно прийти на занятия в любое время.</li> </ul>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265271/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265089", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:10848/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?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:p1808/?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": 2917, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:58.762397Z", "last_modified_time": "2023-08-15T15:34:58.762419Z", "name": "", "url": "https://www.helmet.fi/download/noname/{03BE375A-A949-463E-8AAA-F7766801887B}/104821", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2917/?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:34:58.201026Z", "last_modified_time": "2023-10-13T14:53:26.278029Z", "date_published": "2023-08-09T21:00:00Z", "start_time": "2023-09-12T15:30:00Z", "end_time": "2023-09-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "LIVE: Olli Aarni" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Tapanilan kirjasto" }, "short_description": { "fi": "Olli Aarnin improvisoidusta, akustisesta kantelemusiikista koostuva ”Tuokioita” –levy ilmestyi elokuun alussa. Aarni esittää levyn teoksia Tapanilan kirjastossa." }, "info_url": null, "description": { "fi": "<p> <strong>Olli Aarnin </strong>improvisoidusta kantelemusiikista koostuva ”Tuokioita” –levy ilmestyi elokuun alussa. Aarni saapuu esittämään levyn kappaleita Tapanilan kirjastoon.</p><p>Olli Aarni on äänitaiteilija, jonka työskentely koskettaa musiikkia, kirjallisuutta ja kieltä. Hänen tuotantoaan on julkaistu äänitteinä neljässä maanosassa, ja hän on tehnyt lisäksi radioteoksia, installaatioita, internet-teoksia ja skeittausvideoita.</p><p>Olli Aarnin Tuokioita -levyyn voit tutustua esimerkiksi <a href=\"https://olliaarni.bandcamp.com/album/tuokioita\">täältä (bandcamp) </a>ja <a href=\"https://www.youtube.com/watch?v=DRsZgUGMtrw\">täältä (YouTube)</a>.</p><p>Kuva: Mia Tarkela</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265089/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264126", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2841, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:59.020723Z", "last_modified_time": "2023-08-15T15:32:59.020743Z", "name": "", "url": "https://www.helmet.fi/download/noname/{EA6193AB-4A2C-4477-9DED-0205CF26B2B3}/76702", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2841/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T15:34:57.600993Z", "last_modified_time": "2023-10-13T14:53:26.089100Z", "date_published": "2023-07-19T09:30:00Z", "start_time": "2023-09-12T14:30:00Z", "end_time": "2023-09-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luetaan yhdessä" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Oppimistila 3, 2. krs" }, "short_description": { "fi": "Suomen kieli haltuun!" }, "info_url": null, "description": { "fi": "<p> <strong>Luetaan yhdessä - ryhmä</strong> </p><p>Luetaan yhdessä -verkosto tarjoaa maksutonta suomen kielen opetusta maahanmuuttajille. Ryhmä kokoontuu taas<strong> paikan päällä Oodissa </strong><strong>tiistaisin klo 17.30-19.30</strong>.</p><p>Kaikki opettajat ovat vapaaehtoisia ja ryhmä pyrkii tukemaan eritasoisten oppijien kielen kehittymistä monipuolisesti. Olemme osa valtakunnallista verkostoa, joka tukee erityisesti maahanmuuttajanaisten kielen oppimista ja kotoutumista. Myös miehet ovat tervetulleita Oodin ryhmään. </p><p>Tervetuloa mukaan!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264126/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262732", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?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": 2916, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:57.365473Z", "last_modified_time": "2024-02-06T13:40:59.738930Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E13DDB97-2523-4C4A-B83A-8FCEF36115D2}/90494", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2916/?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:34:57.244851Z", "last_modified_time": "2023-10-13T14:53:25.890518Z", "date_published": "2023-07-04T21:00:00Z", "start_time": "2023-09-12T14:30:00Z", "end_time": "2023-09-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Syömishäiriötä sairastavien läheisten vertaistukiryhmä" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Aikuistenosaston kokoushuone Voimala, 2. krs" }, "short_description": { "fi": "Syömishäiriötä sairastavien läheisten avoimeen vertaistukiryhmään ovat tervetulleita syömishäiriötä sairastavan vanhemmat, puolisot, sisarukset, sukulaiset ja ystävät - kuka tahansa lähellä kulkeva." }, "info_url": null, "description": { "fi": "<p>Syömishäiriötä sairastavien läheisten avoimeen vertaistukiryhmään ovat tervetulleita syömishäiriötä sairastavan vanhemmat, puolisot, sisarukset, sukulaiset ja ystävät - kuka tahansa lähellä kulkeva. Ryhmää ohjaavat vertaistukiohjaajat, joilla on kokemus läheisen roolista.</p><p>Ryhmä kokoontuu Tikkurilan kirjaston kokoushuone Voimalassa (2. krs) tiistaisin 12.9., 10.10., 7.11. ja 12.12.2023 klo 17.30-19.30. Sinun ei tarvitse ilmoittautua etukäteen, tule vain paikalle. Ryhmä on maksuton. Lämpimästi tervetuloa!</p><p> <em>Kuva: Pixabay</em> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262732/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262135", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10659/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2759, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:31:16.117142Z", "last_modified_time": "2024-02-06T13:38:09.140145Z", "name": "", "url": "https://www.helmet.fi/download/noname/{823E72DF-A9EC-4F6D-92B4-58C1C60A5D98}/94236", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2759/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T15:34:56.902714Z", "last_modified_time": "2023-10-13T14:53:25.708540Z", "date_published": "2022-06-27T12:23:00Z", "start_time": "2023-09-12T15:00:00Z", "end_time": "2023-09-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Puhutaan suomea", "en": "Let's Speak Finnish!" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Sininen huone", "en": "Sininen huone" }, "short_description": { "fi": "Tule puhumaan suomea rennossa ympäristössä.", "en": "Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme 29.8. - 12.12. klo 18 - 19:30 Sinisessä huoneessa. 17.10. ei ole kielikahvilaa. Jatkamme 9.1. keväällä 2024.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:<br> Terttu Ollinmaa, terttu.ollinmaa@gmail.com</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!<br><br> Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays 29.8. - 12.12. at 18:00 - 19:30 in Blue Room, but 17.10. is canceled. We' ll continue 9.1.2024.<br><br> Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/<br> Terttu Ollinmaa, terttu.ollinmaa@gmail.com</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262135/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261782", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11441/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2915, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:56.657663Z", "last_modified_time": "2024-02-06T13:38:09.230327Z", "name": "", "url": "https://www.helmet.fi/download/noname/{10A042CE-F936-4ABB-8522-1B99DAAC4384}/95520", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2915/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T15:34:55.792883Z", "last_modified_time": "2023-10-13T14:53:25.319532Z", "date_published": "2019-11-28T11:38:00Z", "start_time": "2023-09-12T15:00:00Z", "end_time": "2023-09-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Itäkeskuksen kielikahvila: jutellaan yhdessä suomeksi" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Kokoushuone Kanerva, 1. kerros" }, "short_description": { "fi": "Kielikahvilamme on tarkoitettu kaikille, jotka haluavat oppia tai ylläpitää suomen kielen taitoaan." }, "info_url": null, "description": { "fi": "<p>Tekisikö mielesi keskustella suomeksi hyvässä seurassa? Kielikahvilamme on tarkoitettu kaikille, jotka haluavat oppia tai ylläpitää suomen kielen taitoaan. </p><p>Myös sinä suomea äidinkielenäsi puhuva olet tervetullut keskustelupiiriin!</p><p>Kokoonnumme tiistaisin 12.9. alkaen kirjaston kokoushuone Kanervassa pohjakerroksessa klo 18-19.30.</p><p>Tervetuloa juttelemaan rennossa ja mukavassa ilmapiirissä!</p><p>Keskustelupiiriin ei tarvitse ilmoittautua.</p><p>Kuva: Niko Sihvonen</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261782/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261520", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8344/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10817/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2839, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:56.700475Z", "last_modified_time": "2023-08-15T15:32:56.700497Z", "name": "", "url": "https://www.helmet.fi/download/noname/{FECF22C6-8A12-474E-BF32-3CB1FF982AEE}/69838", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2839/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T15:34:54.863778Z", "last_modified_time": "2023-10-13T14:53:24.932435Z", "date_published": "2023-02-07T10:20:00Z", "start_time": "2023-09-12T15:00:00Z", "end_time": "2023-09-12T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kielikahvila" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Suomen kielen kielikahvila 5.9. alkaen tiistaisin klo 18. Tervetuloa juomaan kuppi kahvia ja juttelemaan suomeksi!" }, "info_url": null, "description": { "fi": "<p>Suomen kielen kielikahvila tiistaisin klo 18–19.30 kirjaston monitoimitilassa. Kielikahvilassa keskustellaan erilaisista aiheista ja ilmiöistä suomen kielellä.</p><p>Tervetuloa juttelemaan ja juomaan kuppi kahvia!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261520/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266785", "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:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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": 3710, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T11:01:25.057011Z", "last_modified_time": "2023-08-25T11:01:25.057032Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3E759EC4-5728-447B-AB7B-3498D3300821}/71955", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3710/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" } ], "audience": [], "created_time": "2023-08-25T11:06:37.975097Z", "last_modified_time": "2023-10-13T13:36:39.057175Z", "date_published": "2023-08-25T09:52:00Z", "start_time": "2023-09-12T14:30:00Z", "end_time": "2023-09-12T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "en": "Library´s Reading Dog" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "en": "Come and practice reading with library´s Reading Dog!" }, "info_url": null, "description": { "en": "<p>Come and practice reading with library´s Reading Dog!</p><p>During a 15-minute reading session, you can read aloud to the dog. Reading Dog listens patiently without criticism or interruptions. Dog´s trainer will be present at the session.</p><p>You can meet the Reading Dog in Rikhardinkatu Library on <strong>August 29, September 12 and 26, October 10 and 24, November 7 and 21, and December 19, between 5.30 PM and 7 PM.</strong></p><p>Book your time in children´s department or by telephone (09) 3108 5813.</p><p>Welcome! </p><p> <a href=\"https://www.kennelliitto.fi/en/dogs/reading-dogs\">Finnish Kennel Club’s reading dogs</a> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266785/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266776", "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:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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": 3710, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T11:01:25.057011Z", "last_modified_time": "2023-08-25T11:01:25.057032Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3E759EC4-5728-447B-AB7B-3498D3300821}/71955", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3710/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-08-25T11:06:35.475807Z", "last_modified_time": "2023-10-13T13:36:38.879922Z", "date_published": "2023-08-25T09:47:00Z", "start_time": "2023-09-12T14:30:00Z", "end_time": "2023-09-12T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "sv": "Läshund" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "sv": "Läshunden lyssnar på alla språk!" }, "info_url": null, "description": { "sv": "<p>Vill du öva dig på att läsa högt? Läshunden är en tålmodig lyssnare som du kan läsa för utan att känna dig nervös.</p><p>Du kan träffa Richardsgatans biblioteks läshund Häxa <strong>29.8, 12.9, 26.9, 10.10, 24.10, 7.11, 21.11 och 19.12 kl. 17.30-19.00. </strong></p><p>Reservera din egen lästid på Richardsgatans barnavdelning eller ring (09) 3108 5813. En lässtund räcker ca 15 minuter.</p><p>Läshunden lyssnar på alla språk! </p><p> <a href=\"https://www.kennelliitto.fi/sv/hundar/lashundar\">Kennelklubbens läshundar</a> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266776/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266767", "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:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": 3710, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T11:01:25.057011Z", "last_modified_time": "2023-08-25T11:01:25.057032Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3E759EC4-5728-447B-AB7B-3498D3300821}/71955", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3710/?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-08-25T11:06:33.202764Z", "last_modified_time": "2023-10-13T13:36:38.485999Z", "date_published": "2023-08-25T09:40:02.317000Z", "start_time": "2023-09-12T14:30:00Z", "end_time": "2023-09-12T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjaston lukukoira" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tule lukemaan, koira kuuntelee kaikilla kielillä!" }, "info_url": null, "description": { "fi": "<p>Haluaisitko harjoitella ääneen lukemista? Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää.<br><br> Varaa oma aikasi Rikhardinkadun kirjaston lastenosastolta tai numerosta (09) 3108 5813.</p><p>Lukukoira on paikalla tiistaisin ti <strong>29.8., 12.9., 26.9., 10.10., 24.10., 7.11., 21.11. ja 19.12., klo. 17.30 – 19.00 </strong></p><p>Yksi lukuhetki kestää noin 15 min. Lukuhetkeen osallistuvat lukija, koira ja koiran ohjaaja. Ohjaajan tehtävä on valvoa lukuhetkeä sivusta, mutta ei puuttua sen kulkuun.<br><br> Tule lukemaan, koira kuuntelee kaikilla kielillä!<br><br><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliiton lukukoirat</a><br><br><em>Lukukoiratoiminnan tavoitteena on lukuharrastuksen edistäminen ja onnistuneen lukukokemuksen luominen. Koirien on todettu lisäävän ihmisen mielihyvähormonien määrää sekä rentouttavan mieltä, minkä vuoksi niiden vaikutus myös lukemiseen liittyvissä haasteissa on myönteinen. Koiralle lukemisen on todettu auttavan lukihäiriöisiä lapsia sekä aikuisia. Koiran läsnäolo vähentää lukemiseen liittyvää kynnystä ja stressiä. Koira ei arvostele, takerru virheisiin tai keskeytä vaan lukijalla on rauha harjoitella lukemista.</em></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266767/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266412", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8348/?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": 3525, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T14:25:06.695693Z", "last_modified_time": "2024-02-06T13:38:27.911959Z", "name": "", "url": "https://www.helmet.fi/download/noname/{00972B85-F367-47F6-8F09-E06B5362A0A1}/105151", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3525/?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-22T14:25:06.385341Z", "last_modified_time": "2023-10-13T13:36:37.794663Z", "date_published": "2023-08-22T11:43:00Z", "start_time": "2023-09-12T14:30:00Z", "end_time": "2023-09-12T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kässäkerho Koko" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Uusi käsityökerho kokoontuu kirjastossa." }, "info_url": null, "description": { "fi": "<p>Teetkö käsitöitä? Tule Myllypuron kirjastoon joka toinen tiistai-ilta kässäilemään muiden seurassa. Ota oma projektisi mukaan!<br><br> Tapaamiset kokoustila Virrassa tiistaisin 12.9., 26.9., 10.10., 24.10., 7.11. ja 21.11. </p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. </p><p>Lämpimästi tervetuloa!</p><p>.</p><p>Kuva: PxHere</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266412/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262520", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "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": 2836, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:54.873510Z", "last_modified_time": "2024-02-06T13:41:53.733038Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F05D4A60-625F-43E1-897E-D96656C7D5FB}/99831", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-15T15:34:54.504044Z", "last_modified_time": "2023-10-13T13:36:36.482804Z", "date_published": "2023-06-30T10:44:00Z", "start_time": "2023-09-12T14:00:00Z", "end_time": "2023-09-12T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PERUTTU Ohjelmointikurssi tytöille ja naisille", "en": "CANCELLED Programming course for girls and women" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Oletko kiinnostunut ohjelmoinnista? Tule opiskelemaan Linux-käyttöjärjestelmän ja Python-ohjelmoinnin perusteita.", "en": "Are you interested in programming? Come learn about the basics of Linux operating system and Python programming." }, "info_url": null, "description": { "fi": "<p>Linuxpy- ohjelmointkurssi on peruttu syksyltä 2023. Kurssi jatkaa keväällä 2024.</p><p>Tule ilmaiselle ohjelmointikurssille. Kurssilla opitaan Linux-käyttöjärjestelmän ja Python-ohjelmoinnin perusteet. Tunnit pidetään suomeksi ja englanniksi. Kurssivaatimuksena on vain avoin mieli ja innokkuus oppia!</p><p>Jos olet kiinnostunut, lähetä sähköpostia osoitteeseen linuxpy2022@gmail.com ja varmista onko kurssilla tilaa.</p><p>Kerro sähköpostissa lyhyesti, miksi olet kiinnostunut kurssista ja millainen koulutustausta sinulla on.</p><p>Ohjelmointikurssi järjestetään joka tiistai kello 17-19 Hakunilan kirjaston monitoimitilassa. Huom! Syyslomaviikolla 42 ei järjestetä oppituntia.</p><h2></h2><p>Kuva: Pixabay.com</p>", "en": "<p>Programmin course is cancelled in autumn 2023. The course will continue next year 2024.</p><p>Come to the free programming classes to learn about the basics of Linux operating system and Python programming. Classes can be held in Finnish and English, at Hakunila library, Vantaa, every Tuesday 5 September 2023 – 5 December 2023.</p><p>If you are interested, mail me in linuxpy2022@gmail.com informing briefly about your educational background and motivation to study this course. The only requirement for this course is an open mind with eagerness to learn!</p><p>Please note, that there are no course on week 42 (autumn holiday for schools)</p><h2></h2><p>Picture: Pixabay.com</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262520/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24136, "next": "