Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=230
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=231", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=229" }, "data": [ { "id": "kulke:65470", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156398, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T14:14:56.171528Z", "last_modified_time": "2025-01-17T14:14:56.171546Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760892.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156398/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T14:14:56.133409Z", "last_modified_time": "2025-01-17T14:14:56.256295Z", "date_published": null, "start_time": "2025-02-05T13: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, "provider_contact_info": null, "short_description": { "fi": "Linda Ilves on säveltäjä, muusikko ja tanssija, joka asuu Helsingissä, Suomessa.", "sv": "Linda Ilves är kompositör, musiker och dansare och bosatt i Helsingfors i Finland.", "en": "Linda Ilves is a composer, musician and dancer based in Helsinki, Finland." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F0BE6422E02E40EE6FEBC604497CEBAC/HOW_Radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/F0BE6422E02E40EE6FEBC604497CEBAC/HOW_Radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/F0BE6422E02E40EE6FEBC604497CEBAC/HOW_Radio_Global_Club_Nights" }, "name": { "fi": "HOW Radio: Global Club Nights – Linda Ilves", "sv": "HOW Radio: Global Club Nights – Linda Ilves", "en": "HOW Radio: Global Club Nights – Linda Ilves" }, "description": { "fi": "<p>Linda Ilves on säveltäjä, muusikko ja tanssija, joka asuu Helsingissä, Suomessa.</p><p>Hänen genrerajoja rikkova musiikkinsa ja taiteensa ovat löytäneet tiensä monille näyttämöille eri projektien kautta niin Suomessa kuin ulkomaillakin. Laulajana Linda on erittäin monipuolinen: hän on esiintynyt Kansallisteatterin suurella näyttämöllä, kiertänyt Eurooppaa Folk Hop -yhtyeen laulajana ja toiminut taustalaulajana Tukholman Globen-areenalla Euroviisuissa. Hänen ilmaisunsa kattaa tyylillisesti big band -jazzista ja modernista R&B:stä indie rockiin ja poppiin, ja hän on aina utelias löytämään uusia tapoja ilmaista itseään äänen kautta.</p><p>Linda tunnetaan myös ainutlaatuisena säveltäjänä: hänen musiikkinsa on aina elokuvallista ja ammentaa inspiraatiota esimerkiksi Radioheadilta, Ólafur Arnaldsilta, Lianne La Havasilta ja Danny Elfmanilta. Olipa kyse tanssiteoksen musiikin tekemisestä tansanialaista festivaalia varten, elokuvan alkuperäismusiikin säveltämisestä Venetsian elokuvajuhlien ensi-iltaan tai omien kappaleiden esittämisestä suorassa lähetyksessä kansallisella televisiokanavalla, Linda löytää aina tavan käyttää ääntään osana kokonaisuutta. Tämä antaa esityksille oman identiteettinsä ja henkilökohtaisen vivahteensa.</p><p>Ilveksellä on myös tausta katutanssityyleissä, kuten House ja Hip hop, ja hän on esiintynyt ja opettanut näitä tyylejä Suomessa ja ulkomailla yli 15 vuoden ajan. Liike ja tanssi ovat aina olleet Lindalle inspiraation ja motivaation lähde, tapa kokea ja jakaa tarinoita koko kehon avulla.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: www.helsinkiopenwaves.com</p>", "sv": "<p>Linda Ilves är kompositör, musiker och dansare och bosatt i Helsingfors i Finland.</p><p>Hennes genreöverskridande musik och konst har hittat sin väg till många scener via olika projekt i Finland och utomlands. Som sångerska är Linda mycket mångsidig: hon har uppträtt på Kansallisteatteris stora scen, turnerat i Europa som sångerska i ett Folk Hop-band och sjungit bakgrundssång i Globen i Stockholm under Eurovisionen. Hennes uttryck sträcker sig stilistiskt från bigband-jazz och modern R&B till indierock och pop, och hon är alltid nyfiken på att hitta nya sätt att uttrycka sig genom ljud.</p><p>Linda är också känd som en unik kompositör: hennes musik är alltid filmatisk och hämtar inspiration exemelvis från Radiohead, Ólafur Arnalds, Lianne La Havas och Danny Elfman. Oavsett om det handlar om att komponera musik till ett dansverk för en festival i Tanzania, komponera originalmusik till en filmpremiär på Venedigs filmfestival eller framföra sina egna låtar live på en nationell tv-kanal, hittar Linda alltid ett sätt att använda sin röst som en del av helheten. Detta ger föreställningarna en egen identitet och en personlig prägel.</p><p>Ilves har också en bakgrund inom streetdance-stilar, såsom house och hiphop, och hon har uppträtt och undervisat i dessa stilar i Finland och utomlands i över 15 år. Rörelse och dans har alltid varit en källa till inspiration och motivation för Linda, ett sätt att uppleva och dela berättelser med hjälp av hela kroppen.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på www.helsinkiopenwaves.com</p>", "en": "<p>Linda Ilves is a composer, musician and dancer based in Helsinki, Finland.</p><p>Her cross-genre music and artistry has been performed and portrayed on various stages in numerous projects both around Finland and abroad. As a singer Linda is very versatile and has performed as a singer in the National Theatre’s big stage, touring around Europe with a vocal Folk Hop band and worked as a backing vocalist on Globen’s stage in Stockholm for the Eurovision Song Contest. As a vocalist her stylistic range reaches all from big band jazz and modern r n’ b to indie rock and pop, always curious to explore different ways to express herself through voice.</p><p>Linda is also known for being a unique composer: her music always has a cinematic flare, inspired by artists/composers such as Radiohead, Olarfur Arnalds, Lianne La Havas and Danny Elfman.<br>Whether making and producing music for a dance piece for a festival in Tanzania, composing the original score for a movie premiere at the Venice film festival or performing her music on a live-stream for national television, she always finds a way to include her voice as a part of the whole. It gives the performance an identity of its own, a personal touch. Ilves also has a background in the street dances styles House and Hip hop and has been performing and teaching in both Finland and abroad for over 15 years. Movement and dance has always been a source of motivation and inspiration for Linda's artistic expression, a way for her to experience and share stories with and through the whole body.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: www.helsinkiopenwaves.com</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65470/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64759", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152921, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-31T09:15:06.527330Z", "last_modified_time": "2024-10-31T09:15:06.527346Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759988.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-31T09:15:06.486476Z", "last_modified_time": "2025-01-17T14:14:49.094840Z", "date_published": null, "start_time": "2025-01-10", "end_time": "2025-02-01", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Sanna Kärkkäisen maalauksia autisminkirjon henkilön tunnekokemuksista ja ajatuksista arjessa.", "sv": "Sanna Kärkkäinens målningar handlar om de känslomässiga upplevelser och tankar som en person med autismspektrumstörning har i vardagen.", "en": "Sanna Kärkkäinen’s paintings about the everyday emotional experiences and thoughts of a person on the autism spectrum." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/5FCAEB20FDE2EF49FA671390418C8DCF/Sanna_Karkkainen_Kohtaamisia", "sv": "http://www.caisa.fi/sv/evenemang/event/5FCAEB20FDE2EF49FA671390418C8DCF/Sanna_Karkkainen_Kohtaamisia_Moten_", "en": "http://www.caisa.fi/en/events/event/5FCAEB20FDE2EF49FA671390418C8DCF/Sanna_Karkkainen_Kohtaamisia_Encounters_" }, "name": { "fi": "Sanna Kärkkäinen – Kohtaamisia", "sv": "Sanna Kärkkäinen – Kohtaamisia (Möten)", "en": "Sanna Kärkkäinen – Kohtaamisia (Encounters)" }, "description": { "fi": "<p>Sanna Kärkkäisen maalauksia autisminkirjon henkilön tunnekokemuksista ja ajatuksista arjessa.</p><p>Kuinka ihmiset tulisi kohdata oikein? Entä miltä tuntuu, kun jää usein ulkopuolelle ryhmistä ja yhteisöistä niin työelämässä, koulussa, harrastuksissa kuin vapaa-ajallakin?</p><p>Monessa ammatissa toimimiseen kuuluu paljon kontaktien luontia ja verkostoitumista. Autisminkirjon henkilönä jää helposti kaiken tämän ulkopuolelle, mikä vaikeuttaa linkittymistä yhteisöihin. Ryhmien ja yhteisöjen ulkopuolelle jäänti ei rajoitu vain työhön, vaan ulottuu kaikille elämän osa-alueille. Näyttely tuo maalauksen keinoin esiin vähemmistöön kuulumisen haasteita elämän eri kohtaamisissa, keinuen abstraktin ja esittävän maailman välimaastossa.</p><p>Kuvataiteilija Sanna Kärkkäisen näyttelyssä on esillä maalauksia tunnekokemuksista ja ajatuksista autisminkirjon henkilönä elämisestä arjessa.</p><p>Näyttelytilassa on saatavilla kuulosuojaimia aistiärsykkeiden vähentämiseksi.</p>", "sv": "<p>Sanna Kärkkäinens målningar handlar om de känslomässiga upplevelser och tankar som en person med autismspektrumstörning har i vardagen.</p><p>Hur bör människor bemötas på rätt sätt? Hur känns det att ofta uteslutas från grupper och gemenskaper i arbetslivet, skolan, hobbyer och på fritiden?</p><p>I många yrken är skapande av kontakter och nätverkande väldigt närvarande. Som en person med autismspektrumstörning är det lätt att hamna utanför allt detta, vilket gör det svårt att förankras i gemenskaper. Utestängning från grupper och gemenskaper begränsas inte till arbetet, utan sträcker sig till alla delområden i livet. Utställningen använder måleri för att belysa utmaningarna med att tillhöra en minoritet i livets olika möten, och pendlar mellan den abstrakta och den föreställande världen.</p><p>Bildkonstnären Sanna Kärkkäinens utställning består av målningar som handlar om känslomässiga upplevelser och tankar om vardagen för en person med autism.</p><p>Hörselskydd finns tillgängliga i utställningsutrymmet för att minska sensoriska stimuli.</p>", "en": "<p>Sanna Kärkkäinen’s paintings about the everyday emotional experiences and thoughts of a person on the autism spectrum.</p><p>How should we engage with people in the right way? And how does it feel to be frequently excluded from groups and communities at work, at school, in hobbies and during your free time?</p><p>Many professions involve building contacts and networking. As a person on the autism spectrum, you can easily be excluded from all of this, making it difficult to connect with communities. Exclusion from groups and communities is not limited to work, but extends to all areas of life. The exhibition uses paintings to highlight the challenges of belonging to a minority in various life encounters, oscillating between abstract and representational worlds.</p><p>Visual artist Sanna Kärkkäinen’s exhibition features paintings about her emotional experiences and thoughts about her everyday life as a person on the autism spectrum.</p><p>Hearing protection is available in the exhibition space to reduce sensory stimuli.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64759/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23egna", "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/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehju/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490127, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-17T12:49:25.466749Z", "last_modified_time": "2025-01-17T12:49:25.466768Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/8f92b7fd-eadf-4451-bc14-7c0867501172.png", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "pingiskerhon teksti, pingismaila ja lentävä pingispallo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490127/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-17T12:50:59.238940Z", "last_modified_time": "2025-01-17T12:50:59.238965Z", "date_published": null, "start_time": "2025-05-30T14:00:00Z", "end_time": "2025-05-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 17-18.", "sv": "Pingisklubben för unga träffas fredagar klockan 17-18.\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 5 pm to 6 pm." }, "info_url": null, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 17-18.. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 17-18.</p><p>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe</p><p>from 5 pm to 6 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23egna/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23eg3i", "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/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehju/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490127, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-17T12:49:25.466749Z", "last_modified_time": "2025-01-17T12:49:25.466768Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/8f92b7fd-eadf-4451-bc14-7c0867501172.png", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "pingiskerhon teksti, pingismaila ja lentävä pingispallo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490127/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-17T12:50:59.009200Z", "last_modified_time": "2025-01-17T12:50:59.009228Z", "date_published": null, "start_time": "2025-05-23T14:00:00Z", "end_time": "2025-05-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 17-18.", "sv": "Pingisklubben för unga träffas fredagar klockan 17-18.\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 5 pm to 6 pm." }, "info_url": null, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 17-18.. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 17-18.</p><p>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe</p><p>from 5 pm to 6 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eg3i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ehju", "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/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23egna/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eg3i/?format=api" } ], "images": [ { "id": 1490127, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-17T12:49:25.466749Z", "last_modified_time": "2025-01-17T12:49:25.466768Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/8f92b7fd-eadf-4451-bc14-7c0867501172.png", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "pingiskerhon teksti, pingismaila ja lentävä pingispallo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490127/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-17T12:50:50.136383Z", "last_modified_time": "2025-01-17T12:50:50.136403Z", "date_published": null, "start_time": "2025-01-17T15:00:00Z", "end_time": "2025-05-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 17-18.", "sv": "Pingisklubben för unga träffas fredagar klockan 17-18.\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 5 pm to 6 pm." }, "info_url": null, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 17-18.. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 17-18.</p><p>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe</p><p>from 5 pm to 6 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehju/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65216", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153332, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-09T15:14:09.460070Z", "last_modified_time": "2024-12-09T15:14:09.460120Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760195.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153332/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-09T15:14:09.432560Z", "last_modified_time": "2025-01-17T11:14:41.153098Z", "date_published": null, "start_time": "2025-01-23T16: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, "provider_contact_info": null, "short_description": { "fi": "Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aikaisempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.", "sv": "I december 1984 träffade en sovjetisk missil Enare träsk, och en internationell konflikt följde.", "en": "In December 1984, a Soviet missile crashed into Lake Inari, setting off an international incident." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9AB283C11D72B773A81451D2CA191C2B/Yleison_suosikit_Ohjus_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9AB283C11D72B773A81451D2CA191C2B/Publikens_favoriter_Missilen_12_", "en": "http://www.malmitalo.fi/en/events/event/9AB283C11D72B773A81451D2CA191C2B/Audience_Favourites_The_Missile_Ohjus_12_" }, "name": { "fi": "Yleisön suosikit: Ohjus (12)", "sv": "Publikens favoriter: Missilen (12)", "en": "Audience Favourites: The Missile (Ohjus) (12)" }, "description": { "fi": "<p>Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aikaisempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.</p><p>Joulukuussa 1984 Inarijärveen syöksyi neuvostoliittolainen ohjus, ja kansainvälinen selkkaus oli valmis.</p><p>Draamakomedia kertoo yksinhuoltaja Niinasta, joka saa uuden alun elämälleen paikallisen sanomalehden toimittajana - ja eteensä mahdollisen jymyjutun kylässä, jossa ei koskaan tapahdu mitään. Niina uppoaa syvälle kansainväliseen ohjuskriisiin. Lappi ja pieni kirkonkylä menevät sekaisin, ja ulkomaisia toimittajia lappaa paikalliseen hotelliin. Tutkimusten keskellä Niina tapaa hävittäjälentäjä Kain, ja samaan aikaan ex-mies Tapio on vapautumassa vankilasta. Niinan on löydettävä rajansa, jotta myös totuus ohjuksesta näkisi päivänvalon. Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin.</p><p>Ikäraja: 12<br>Kesto 115 min<br>Tekstitys: suomi</p><p>Vapaa pääsy!</p>", "sv": "<p>I december 1984 träffade en sovjetisk missil Enare träsk, och en internationell konflikt följde.</p><p>Dramakomedin berättar om ensamförsörjaren Niina, som får en nystart i livet som journalist vid den lokala dagstidningen – och stöter på en eventuell sensation i en by, där inget någonsin händer. Niina blir djupt inblandad i den internationella missilkrisen. Lappland och den lilla kyrkobyn förlorar vettet och utländska journalister strömmar till det lokala hotellet. Mitt under efterforskningarna möter Niina jaktplanspiloten Kai, och samtidigt håller ex-mannen Tapio på att friges från fängelset. Niina måste hitta sina gränser, också för att sanningen om missilen ska få se dagens ljus. Missilen är en film och gränser och gränslöshet, där politisk satir möter varm humor.</p><p>Publikens favoriter är Kino Helios nya filmserie, där vi får se Kino Helios publikfavoriter från tidigare säsonger som gratisvisningar.</p><p>Åldersgräns: 12<br>Längd 115 min.<br>Undertexter: finska</p><p>Fritt inträde!</p>", "en": "<p>In December 1984, a Soviet missile crashed into Lake Inari, setting off an international incident.</p><p>This comedy-drama tells the story of Niina, a single parent who gets a fresh start in life as a reporter for a local newspaper – and lands a potential big scoop in a village where nothing ever happens. Niina dives deep into the international missile crisis. Lapland and the tiny village get caught up in the chaos, and foreign journalists flock to the local hotel. Niina meets Kai, a fighter pilot, in the middle of her investigation. At the same time, her ex-husband, Tapio, is about to be released from prison. Niina must discover her limits so that the truth about the missile can also see the light of day. The Missile is a film about limits and limitlessness, where political satire meets warm humour.</p><p>Audience Favourites is Kino Helios’ new film series, featuring free screenings of the best-selling films from previous Kino Helios seasons.</p><p>Age limit: 12<br>Duration: 115 min<br>Subtitles: Finnish</p><p>Admission is free!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65216/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:6cf3dd51-e462-4fb2-94ce-8fd0fc7f1efe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_31122024_LE-vlilehden_kuvauskenttien_korjaukset_no22875064876" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 156225, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T11:12:15.300911Z", "last_modified_time": "2025-01-17T11:12:15.300928Z", "name": "asdf", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/30de3280-3514-ef11-9f8a-000d3ab59432", "cropping": "", "photographer_name": "asdf fdsa", "alt_text": "asdf", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156225/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2025-01-17T10:27:45.485535Z", "last_modified_time": "2025-01-17T11:12:16.696144Z", "date_published": "2025-01-17T10:25:20Z", "start_time": "2025-01-20T09:00:00Z", "end_time": "2025-01-20T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": "2024-12-02T08:00:00+02:00", "enrolment_end_time": "2025-01-03T08:00:00+02:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "MKtest 31122024 LE-välilehden kuvauskenttien korjaukset no:2 short description" }, "info_url": null, "name": { "fi": "MKtest 17012025 LE-täbin kuvauskenttien korjaukset" }, "description": { "fi": "<div><em>Are you thinking about starting a business? Or are you already a new entrepreneur?</em> <br>Join us on Monday November 18th from 11:30 am to 3:30 pm to learn more about entrepreneurship services available to you in the Helsinki metropolitan area.<br><strong>Pathways to Entrepreneurship Event takes place at the Helsinki City Hall, at Pohjoisesplanadi 11-13.</strong><br><br>At this event, you can discuss your business idea with multiple organizations, learn about residence permits for entrepreneurs and startups, network with fellow entrepreneurs. You can listen to interesting speeches and meet experts in different fields or participate in pop-up business advice. <em>Let's think about how you could turn your skills into a viable business idea! </em><br>The event is organized in collaboration with Business Helsinki, Business Espoo, Business Finland, Suomen Yrittäjät, Helsingin Yrittäjät, Helsingin Yrittäjänaiset, The Shortcut, Startup Refugees, Finnish Immigration Service Migri, Uusimaa TE-office, Uusimaa ELY-centre, Regional State Administrative Agency (AVI), TechNordicAdvocates, Micro and Solo Entrepreneurs Association (MYRY). It is funded by Path to entrepreneurship for immigrants project, Business Espoo and the City of Helsinki.<br><em>Event is free of charge! Also free coffee/tea service.</em><br> <br>Please, let us know in the registration, are you coming on location to City Hall or will you participate only via stream the main stage program.<br> <br>PROGRAM<br>11:30 am <br>Doors open <br>PROGRAM AT THE MAIN STAGE (Tapahtumatori) <br>12:00 pm <br><strong>Welcome speech</strong><br>Paula Miettinen, Director, Business Services, Business Helsinki <br>12:15 pm <br><strong>Keynote speech: Navigating new paths & finding success in entrepreneurship</strong><br>Jade Ventoniemi, Entrepreneur and Founder, marketing agency Bright Soul Oy <br>12:30 pm<br><strong>Entrepreneurship Path </strong><br>Nikke Vainikka, Senior Business Advisor, Project Coordinator, Path to entrepreneurship for immigrants project, Business Espoo<br>12:45 pm <br><strong>Finnish Income tax and VAT in a nutshell</strong><br>Hanna Nykter-Terävä, Tax Administration, Vero <br>1:00 pm <br><strong>Panel about YEL Insurance and Entrepreneur's social security</strong><br>Micro and Solo Entrepreneurs Association (Myry)<br><em>The speeches at the main stage are streamed by Helsinki-kanava, so you can watch the live stream, if you cannot come to the event on location!</em> The streaming also stays on the channel longer, so you can watch it again later.<br> <br>PROGRAM of SMALL GROUP SESSIONS<br>Meeting room Ratikka <br><em>(no registration, but seats limited!) </em><br>1:35 pm <br><strong>Pricing and productization</strong><br>Helsingin Yrittäjänaiset <br>2:05 pm <br><strong>How to get your startup funded</strong><br>Touko Kontro, Business Helsinki <br>2:35 pm <br><strong>Validating and testing your business idea</strong><br>The Shortcut <br> </div>" }, "location_extra_info": null, "provider": { "fi": "Business Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:6cf3dd51-e462-4fb2-94ce-8fd0fc7f1efe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65034", "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:104/?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" }, { "@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/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156105, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T09:15:04.021667Z", "last_modified_time": "2025-01-17T09:15:04.021686Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763664.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156105/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T09:15:03.995815Z", "last_modified_time": "2025-01-17T10:14:48.272046Z", "date_published": null, "start_time": "2025-04-07T15: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, "provider_contact_info": null, "short_description": { "fi": "Kirjailija Kari Hotakainen saapuu Kanneltalon kahvilan stagelle puhumaan uudesta teoksestaan ”Helmi”, joka on vauhdikas ja hauska kirja vakavista asioista.", "sv": "Författaren Kari Hotakainen kommer till kaféet stage i Gamlasgården för att tala om sitt nya verk “Helmi”, som är en fartfylld och rolig bok om allvarliga saker.", "en": "Author Kari Hotakainen takes the stage at the Kanneltalo café to talk about his new book, Helmi, a fast-paced and funny book about serious issues." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9A480AAE64F6031D574000AA19827319/Kirjailijavieraana_Kari_Hotakainen_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9A480AAE64F6031D574000AA19827319/Forfattarbesok_Kari_Hotakainen_", "en": "http://www.kanneltalo.fi/en/events/event/9A480AAE64F6031D574000AA19827319/Guest_author_Kari_Hotakainen_" }, "name": { "fi": "Kirjailijavieraana Kari Hotakainen – Maksuttomat maanantait", "sv": "Författarbesök: Kari Hotakainen – Kostnadsfria måndagar", "en": "Guest author: Kari Hotakainen – Free Mondays" }, "description": { "fi": "<p>Kirjailija Kari Hotakainen saapuu Kanneltalon kahvilan stagelle puhumaan uudesta teoksestaan ”Helmi”, joka on vauhdikas ja hauska kirja vakavista asioista.</p><p><b>Helmi (Siltala 2024)</b> <br>Kaikki alkaa siitä, kun lapsettomuudesta kärsivä pariskunta löytää sieniretkeltään suppilovahveron sijaan metsästä ihmisen, muistisairaan Helmin, joka ei aluksi muista edes omaa nimeään. Alkaa vauhdikas, töyssyinen ja monipolvinen matka, joka vie lukijan kohti elämän ydinkysymyksiä. Hurmaavan omapäinen Helmi vetelee lankoja umpisolmuun ja mutkia suoriksi.</p><p>Hersyvät henkilöhahmot kuljettavat yllätyksellistä tarinaa, jossa läheltä katsottuna traagiset asiat muuttuvat lukijan silmissä lämpimän koomisiksi. Juonenkäänteet ja osuva dialogi saavat nauramaan ääneen.<br> <br>Helmi on kuin Pirkka-brändi. Se on läsnä erilaisten yksilöiden kaikissa elämänvaiheissa lempeästi, arkisesti ja aina ihmistä puolustaen.</p><p>Tilaisuudessa Hotakaista haastattelee FM <b>Tuija Takala.</b></p><p>Kari Hotakainen aloitti kirjailijanuransa runoilijana. Hänen esikoiskokoelmansa Harmittavat takaiskut ilmestyi vuonna 1982. Hänen teoksiaan on käännetty yli 20 kielelle. Hotakainen on saanut muun muassa Topelius-palkinnon (2000), Finlandia-palkinnon Juoksuhaudantiestä (2003), Pohjoismaiden neuvoston kirjallisuuspalkinnon samaisesta romaanista vuonna 2004 sekä Runeberg-palkinnon vuonna 2010 romaanista Ihmisen osa. Ihmisen osalle myönnettiin vuonna 2011 myös arvostettu ranskalainen Prix Courrier International -palkinto parhaana käännöskirjana.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.</p><p>Vapaa pääsy</p>", "sv": "<p>Författaren Kari Hotakainen kommer till kaféet stage i Gamlasgården för att tala om sitt nya verk “Helmi”, som är en fartfylld och rolig bok om allvarliga saker.</p><p><b>Helmi (Siltala 2024)</b> <br>Allt börjar då ett barnlöst par går på svamputfärd i skogen, men istället för trattkantareller hittar de en människa, den minnessjuka Helmi, som till en början inte ens minns sitt eget namn. Så börjar en fartfylld, skumpig och slingrande resa som tar läsaren med mot livets kärnfrågor. Den charmigt egensinniga Helmi slår dubbelknut på trådarna och går rakt på sak.</p><p>De sprudlande karaktärerna för med sig i en överraskande berättelse, där tragiska saker blir varmt komiska då läsaren får granska dem närmare. Vändningarna i handlingen och den träffande dialogen får läsaren att skratta högt.<br> <br>Helmi är som Pirkka-varumärket. Det finns milt närvarande för olika individer i alla livsskeden, vardagligt och alltid med människan i försvar.</p><p>Vid evenemanget intervjuas Hotakainen av fil.mag. Tuija Takala.</p><p>Kari Hotakainen inledde sin författarkarriär som poet. Hans debutsamling Harmittavat takaiskut publicerades år 1982. Hans verk har översatts till över 20 språk. Hotakainen har bland annat belönats med Topelius-priset (2000), Finlandiapriset för Juoksuhaudantiestä (2003), Nordiska rådets litteraturpris för samma roman år 2004, och Runebergspriset år 2010 för romanen Ihmisen osa. År 2011 beviljades Ihmisen osa även det ansedda franska priset Prix Courrier International för bästa översatta bok.</p><p>Språk: finska</p><p>I samarbete med Gamlas bibliotek och Helsingfors finska arbetarinstitut.</p>", "en": "<p>Author Kari Hotakainen takes the stage at the Kanneltalo café to talk about his new book, Helmi, a fast-paced and funny book about serious issues.</p><p><b>Helmi (Siltala 2024)</b> <br>It all begins when a couple struggling with infertility find a human instead of chanterelles on their mushroom-hunting trip. She is the memory-impaired Helmi, who at first can’t even remember her own name. So begins a fast-paced, bumpy and multi-generational journey that leads the reader towards the core questions of life. The charmingly headstrong Helmi tends to overcomplicate some things and oversimplify others.</p><p>The lively characters carry this surprising story, which, when examined closely, turns tragic things into warmly comical ones for the reader. The plot twists and clever dialogue will make you laugh out loud.<br> <br>Helmi is like the Pirkka grocery store brand: present throughout the lives of different individuals in gentle, everyday ways, always standing up for people.</p><p>Hotakainen will be interviewed at the event by Tuija Takala, MA.</p><p>Kari Hotakainen started his writing career as a poet. His debut collection, Harmittavat takaiskut, was published in 1982. His works have been translated into more than 20 languages. Hotakainen received the Topelius Award (2000), the Finlandia Prize for Juoksuhaudantie (2003), the Nordic Council Literature Prize for the same novel in 2004, and the Runeberg Prize in 2010 for his novel The Human Part. In 2011, The Human Part was also awarded the prestigious French Prix Courrier International for best translated book.</p><p>Language: Finnish</p><p>In cooperation with the Kannelmäki Library and the Helsinki Adult Education Centre.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65034/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ehxm", "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/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eii4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150450, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-17T07:59:13.420035Z", "last_modified_time": "2024-01-17T07:59:13.420055Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "shakkinappuloita pelilaudalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-17T09:39:39.314593Z", "last_modified_time": "2025-01-17T09:39:39.314622Z", "date_published": null, "start_time": "2025-05-27T14:00:00Z", "end_time": "2025-05-27T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Nuorille suunnattu shakkiklubi.", "sv": "Schackklubben för unga.", "en": "Chess Club for teens." }, "info_url": null, "name": { "fi": "Mr. Omarin Shakkiklubi", "sv": "Mr. Omar Schackklubb ", "en": "Mr. Omar's Chess Club" }, "description": { "fi": "<p>Shakkiklubi Entressen kirjaston nuorten osasto Kibessä.</p><p>Tiistai 4. helmikuuta</p><p>Tiistai 18. helmikuuta</p><p>Tiistai 3. maaliskuuta</p><p>Tiistai 18. maaliskuuta</p><p>Tiistai 1. huhtikuuta</p><p>Tiistai 15. huhtikuuta</p><p>Tiistai 29. huhtikuuta</p><p>Tiistai 13. toukokuuta</p><p>Tiistai 27. toukokuuta</p>", "sv": "<p>Entresse Librarys ungdomsavdelning i Kibe.</p><p>Tisdag 4. februari</p><p>Tisdag 18. februari</p><p>Tisdag 3. mars</p><p>Tisdag 18. mars</p><p>Tisdag 1. april</p><p>Tisdag 15. april</p><p>Tisdag 29. april</p><p>Tisdag 13. maj</p><p>Tisdag 27. maj</p>", "en": "<p>Chess Club in Entresse Library's youth section Kibe.</p><p>Tuesday 4. February</p><p>Tuesday 18. February</p><p>Tuesday 4. March</p><p>Tuesday 18. March</p><p>Tuesday 1. April</p><p>Tuesday 15. April</p><p>Tuesday 29. April</p><p>Tuesday 13. May</p><p>Tuesday 27. May</p>" }, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehxm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23eii4", "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/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ehxm/?format=api" } ], "images": [ { "id": 150450, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-17T07:59:13.420035Z", "last_modified_time": "2024-01-17T07:59:13.420055Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "shakkinappuloita pelilaudalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-17T09:39:29.270417Z", "last_modified_time": "2025-01-17T09:39:29.270437Z", "date_published": null, "start_time": "2025-02-04T15:00:00Z", "end_time": "2025-05-27T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Nuorille suunnattu shakkiklubi.", "sv": "Schackklubben för unga.", "en": "Chess Club for teens." }, "info_url": null, "name": { "fi": "Mr. Omarin Shakkiklubi", "sv": "Mr. Omar Schackklubb ", "en": "Mr. Omar's Chess Club" }, "description": { "fi": "<p>Shakkiklubi Entressen kirjaston nuorten osasto Kibessä.</p><p>Tiistai 4. helmikuuta</p><p>Tiistai 18. helmikuuta</p><p>Tiistai 3. maaliskuuta</p><p>Tiistai 18. maaliskuuta</p><p>Tiistai 1. huhtikuuta</p><p>Tiistai 15. huhtikuuta</p><p>Tiistai 29. huhtikuuta</p><p>Tiistai 13. toukokuuta</p><p>Tiistai 27. toukokuuta</p>", "sv": "<p>Entresse Librarys ungdomsavdelning i Kibe.</p><p>Tisdag 4. februari</p><p>Tisdag 18. februari</p><p>Tisdag 3. mars</p><p>Tisdag 18. mars</p><p>Tisdag 1. april</p><p>Tisdag 15. april</p><p>Tisdag 29. april</p><p>Tisdag 13. maj</p><p>Tisdag 27. maj</p>", "en": "<p>Chess Club in Entresse Library's youth section Kibe.</p><p>Tuesday 4. February</p><p>Tuesday 18. February</p><p>Tuesday 4. March</p><p>Tuesday 18. March</p><p>Tuesday 1. April</p><p>Tuesday 15. April</p><p>Tuesday 29. April</p><p>Tuesday 13. May</p><p>Tuesday 27. May</p>" }, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23eii4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65018", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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" }, { "@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/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156103, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T09:14:55.776305Z", "last_modified_time": "2025-01-17T09:14:55.776320Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763511.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156103/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T09:14:55.748551Z", "last_modified_time": "2025-01-17T09:14:55.845131Z", "date_published": null, "start_time": "2025-03-31T15: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, "provider_contact_info": null, "short_description": { "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjassa kahvilan stagella vuorossa vieraileva muusikko Arto Pajukallio.", "sv": "Börja veckan med fullt hålligång! I vårens serie för klubben Juurilla står musikern Arto Pajukallio i turen på kaféets stage.", "en": "Start your week with some catchy tunes! In this spring's At the Roots Club series, guest musician Arto Pajukallio takes the stage at the café." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/948F86C5A44BF594663FA585A2E4BE97/Juurilla_Arto_Pajukallio", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/948F86C5A44BF594663FA585A2E4BE97/Vid_rotterna_Arto_Pajukallio", "en": "http://www.kanneltalo.fi/en/events/event/948F86C5A44BF594663FA585A2E4BE97/At_the_Roots_Arto_Pajukallio" }, "name": { "fi": "Juurilla: Arto Pajukallio – Maksuttomat maanantait", "sv": "Vid rötterna: Arto Pajukallio – Kostnadsfria måndagar", "en": "At the Roots: Arto Pajukallio – Free Mondays" }, "description": { "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubien sarjassa kahvilan stagella vuorossa vieraileva muusikko Arto Pajukallio.</p><p>Arto Pajukallio on päätyönään työskennellyt toimittajana ja tehnyt toisen uran soittajana mm. Freud Marx Engels & Jungissa.</p><p>”En ole solistinen laulaja tai soittaja, ja hyppään suoraan oman epämukavuusalueeni syvään päätyyn astumalla Juurilla-klubin bändin vieraaksi. Koen kuitenkin vallan tehtäväkseni tuoda esille myös vähemmän tunnettua suomenkielistä rootsmusiikkia eri tekijöiltä, ehkä itseltänikin. Tehtäköön siis musiikillinen aikamatka lauluihin, joista monia ei osata toivoa.”</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p><b>The Rooty Toot Toot Band:</b> <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Kesto: 1 tunti</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Börja veckan med fullt hålligång! I vårens serie för klubben Juurilla står musikern Arto Pajukallio i turen på kaféets stage.</p><p>Arto Pajukallios huvudsakliga yrke är journalist och han har haft en andra karriär som musiker i bland annat Freud Marx Engels & Jung.</p><p>“Jag är inte en solistisk sångare eller musiker, och jag hoppar direkt utanför mitt bekvämlighetsområde och ner i den djupa änden genom att komma som gäst till Juurilla-klubbens band. Jag upplever det dock som min uppgift att hämta fram mindre känd finländsk rootsmusik av olika upphovsmän, kanske även av mig själv. Låt oss alltså göra en musikalisk tidsresa till sånger, varav många är sådana som man inte vet att man kan önska sig.”</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p><b>The Rooty Toot Toot Band:</b> <br>Juki Välipakka – sång & gitarr<br>Lasse Sirkko – bas <br>Tommi Lievemaa – gitarr <br>Olli Haavisto – pedalstål<br>Sirpa Suomalainen – saxofon <br>Kepa Kettunen – trummor</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Start your week with some catchy tunes! In this spring's At the Roots Club series, guest musician Arto Pajukallio takes the stage at the café.</p><p>Arto Pajukallio has mainly worked as a journalist but has had a second career as a musician with Freud Marx Engels & Jung, among others.</p><p>“I’m not a lead singer or guitarist, and I’m jumping right into the deep end of my discomfort zone by joining the At the Roots Club band as their guest. But I feel like it’s totally my duty to showcase lesser-known Finnish roots music by different artists, maybe even myself. So let’s take a time-travelling musical journey through some songs that many of us don’t even know to request.”</p><p>The pulsating heart of everyone’s favourite Monday night club is made of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music. As usual, the club hosts are Juki Välipakka and The Rooty Toot Toot Band.</p><p><b>The Rooty Toot Toot Band:</b> <br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass <br>Tommi Lievemaa – guitar <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone <br>Kepa Kettunen – drums</p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65018/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65416", "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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156102, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T09:14:53.069743Z", "last_modified_time": "2025-01-17T09:14:53.069760Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764722.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156102/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T09:14:53.027951Z", "last_modified_time": "2025-01-17T09:14:53.151805Z", "date_published": null, "start_time": "2025-03-15T08:00:00Z", "end_time": "2025-03-15T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tule ostoksille tai varaa oma myyntipöytä!", "sv": "Kom och handla eller reservera ett eget bord!", "en": "Come shop or book your own sales table!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/255666201EB35F2F8C2E0D158B1CCF76/MLL_Kannelmaki_Lastenvaate_ja_-tarvikekirppis", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/255666201EB35F2F8C2E0D158B1CCF76/MLL_Gamlas_Loppis_for_barnklader_och_barnutrustning", "en": "http://www.kanneltalo.fi/en/events/event/255666201EB35F2F8C2E0D158B1CCF76/MLL_Kannelmaki_Flea_market_for_children_s_clothing_and_equipment" }, "name": { "fi": "MLL Kannelmäki: Lastenvaate ja -tarvikekirppis", "sv": "MLL Gamlas: Loppis för barnkläder och barnutrustning", "en": "MLL Kannelmäki: Flea market for children’s clothing and equipment" }, "description": { "fi": "<p>Tule ostoksille tai varaa oma myyntipöytä!</p><p>Kirppis järjestetään Kanneltalon aulassa.</p><p>Pöydän hinta yhdistyksen jäseniltä 7 €, muilta 10 €.</p><p>Pöytävaraukset: https://kannelmaki.mll.fi/kirpputori/</p><p>Vapaa pääsy</p>", "sv": "<p>Kom och handla eller reservera ett eget bord!</p><p>Loppmarknaden ordnas i Gamlasgårdens lobby.<br>Ett bord kostar 7 € för föreningens medlemmar, 10 € för andra.</p><p>Bordsbokningar: https://kannelmaki.mll.fi/kirpputori/</p>", "en": "<p>Come shop or book your own sales table!</p><p>The flea market is held in the lobby of Kanneltalo.<br>Tables are priced at €7 for members, €10 for others.</p><p>Table reservations: https://kannelmaki.mll.fi/kirpputori/</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65416/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65460", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 154892, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-16T09:15:15.381407Z", "last_modified_time": "2025-01-16T09:15:15.381425Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764815.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154892/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T09:15:15.352975Z", "last_modified_time": "2025-01-16T09:15:15.460681Z", "date_published": null, "start_time": "2025-05-03T11: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, "provider_contact_info": null, "short_description": { "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B76419C7743B6D198FAEC891F4C714C3/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/B76419C7743B6D198FAEC891F4C714C3/Inkluderande_danslektion_for_barn_", "en": "http://www.annantalo.fi/en/events/event/B76419C7743B6D198FAEC891F4C714C3/Children_s_Inclusive_Dance_Class_" }, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "description": { "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi <br>www.kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi <br>www.kaaoscompany.fi <br> <br>Class: Danceclass <br>Language: Finnish/english</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65460/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65458", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 154890, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-16T09:15:11.004754Z", "last_modified_time": "2025-01-16T09:15:11.004771Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764811.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154890/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T09:15:10.973766Z", "last_modified_time": "2025-01-16T09:15:11.072257Z", "date_published": null, "start_time": "2025-04-05T11: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, "provider_contact_info": null, "short_description": { "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2886114EA0AF623DD20960CE189DA399/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/2886114EA0AF623DD20960CE189DA399/Inkluderande_danslektion_for_barn_", "en": "http://www.annantalo.fi/en/events/event/2886114EA0AF623DD20960CE189DA399/Children_s_Inclusive_Dance_Class_" }, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "description": { "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi <br>www.kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi <br>www.kaaoscompany.fi <br> <br>Class: Danceclass <br>Language: Finnish/english</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65458/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65457", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 154889, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-16T09:15:06.013725Z", "last_modified_time": "2025-01-16T09:15:06.013744Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764809.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154889/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T09:15:05.973448Z", "last_modified_time": "2025-01-16T09:15:06.087503Z", "date_published": null, "start_time": "2025-03-08T12: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, "provider_contact_info": null, "short_description": { "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9D826BACA5E5077952E9E581E66F2C1D/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/9D826BACA5E5077952E9E581E66F2C1D/Inkluderande_danslektion_for_barn_", "en": "http://www.annantalo.fi/en/events/event/9D826BACA5E5077952E9E581E66F2C1D/Children_s_Inclusive_Dance_Class_" }, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "description": { "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi <br>www.kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi <br>www.kaaoscompany.fi <br> <br>Class: Danceclass <br>Language: Finnish/english</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65457/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65456", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 154888, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-16T09:15:02.523656Z", "last_modified_time": "2025-01-16T09:15:02.523676Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764807.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154888/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T09:15:02.489138Z", "last_modified_time": "2025-01-16T09:15:02.588262Z", "date_published": null, "start_time": "2025-02-22T12: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, "provider_contact_info": null, "short_description": { "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0A3BD8E1BB7517341FFC44C67C7E799E/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/0A3BD8E1BB7517341FFC44C67C7E799E/Inkluderande_danslektion_for_barn_", "en": "http://www.annantalo.fi/en/events/event/0A3BD8E1BB7517341FFC44C67C7E799E/Children_s_Inclusive_Dance_Class_" }, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "description": { "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi <br>www.kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi <br>www.kaaoscompany.fi <br> <br>Class: Danceclass <br>Language: Finnish/english</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65456/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65454", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 154885, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-16T09:14:54.028494Z", "last_modified_time": "2025-01-16T09:14:54.028521Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764803.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154885/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T09:14:53.978874Z", "last_modified_time": "2025-01-16T09:14:54.126069Z", "date_published": null, "start_time": "2025-01-25T12: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, "provider_contact_info": null, "short_description": { "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E9845EA1782BA8531983BC3CB310E877/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/E9845EA1782BA8531983BC3CB310E877/Inkluderande_danslektion_for_barn_", "en": "http://www.annantalo.fi/en/events/event/E9845EA1782BA8531983BC3CB310E877/Children_s_Inclusive_Dance_Class_" }, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "description": { "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi <br>www.kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi <br>www.kaaoscompany.fi <br> <br>Class: Danceclass <br>Language: Finnish/english</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65454/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65249", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153390, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T09:14:25.246665Z", "last_modified_time": "2024-12-12T09:14:25.246685Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760202.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153390/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T09:14:25.218892Z", "last_modified_time": "2025-01-15T15:15:05.651877Z", "date_published": null, "start_time": "2025-02-06T16: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, "provider_contact_info": null, "short_description": { "fi": "Historian ensimmäinen koltansaamenkielinen elokuva kertoo pakkosuomalaistamisen paineessa taustansa hylänneestä naisesta.", "sv": "Den första filmen någonsin på skoltsamiska berättar om en kvinna som övergivit sin bakgrund under trycket av tvångsförfinskningen.", "en": "The first-ever film in the Skolt Sámi language tells the story of a woman who abandoned her heritage under the pressure of forced Finnishization." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2C5E2AF611DDE4E3969FF89FA50654AE/Je_vida_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2C5E2AF611DDE4E3969FF89FA50654AE/Je_vida_12_", "en": "http://www.malmitalo.fi/en/events/event/2C5E2AF611DDE4E3969FF89FA50654AE/Je_vida_12_" }, "name": { "fi": "Je’vida (12) – Saamelaisten kansallispäivän ilmaisnäytös", "sv": "Je’vida (12) – Gratisvisning på samernas nationaldag", "en": "Je’vida (12) – A free show for the Sámi National Day" }, "description": { "fi": "<p>Historian ensimmäinen koltansaamenkielinen elokuva kertoo pakkosuomalaistamisen paineessa taustansa hylänneestä naisesta.</p><p>Iäkäs kolttasaamelainen nainen Iida joutuu vanhan kotitilan myymisen ja kulttuuriperimän salaamisen suhteen kahden vaiheille, sillä pois tukahdutettu luonnonläheinen maailma alkaa hiipiä takaisin.</p><p>Kesto: 99 min<br>Ikäraja 12<br>Tekstitetty suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den första filmen någonsin på skoltsamiska berättar om en kvinna som övergivit sin bakgrund under trycket av tvångsförfinskningen.</p><p>Den äldre skoltsamiska kvinnan Iida hamnar i ett dilemma kring att sälja sin gamla hemgård och dölja sitt kulturarv, eftersom den undanträngda naturnära världen börjar smyga sig tillbaka.</p><p>Längd: 99 min.<br>Åldersgräns 12 år<br>Textning på finska</p><p>Fritt inträde!</p>", "en": "<p>The first-ever film in the Skolt Sámi language tells the story of a woman who abandoned her heritage under the pressure of forced Finnishization.</p><p>Iida, an older Skolt Sámi woman, finds herself torn between selling her old homestead and hiding her cultural heritage, as the world in tune with nature that she has suppressed begins to creep back in.</p><p>Duration: 99 min<br>Age limit: 12<br>Finnish subtitles</p><p>Admission is free!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65249/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65248", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153388, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T09:14:24.626186Z", "last_modified_time": "2024-12-12T09:14:24.626210Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760558.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153388/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T09:14:24.581363Z", "last_modified_time": "2025-01-15T15:15:04.386358Z", "date_published": null, "start_time": "2025-02-04", "end_time": "2025-02-06", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!", "sv": "Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!", "en": "We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1AF0823D46B30CDDE15C7A536121188F/Suojelevat_symbolit_-taidepaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1AF0823D46B30CDDE15C7A536121188F/Skyddande_symboler_konstworkshop", "en": "http://www.malmitalo.fi/en/events/event/1AF0823D46B30CDDE15C7A536121188F/Protective_Symbols_art_workshop" }, "name": { "fi": "Suojelevat symbolit -taidepaja", "sv": "Skyddande symboler – konstworkshop", "en": "Protective Symbols art workshop" }, "description": { "fi": "<p>Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!</p><p>Teoskokonaisuus on taidepajoissa tehtyjen osasten summa, joten jokaisen osallistujan panos ja kädenjälki on merkittävä sen syntymisen kannalta.</p><p>Filippiiniläisen taiteilijan Geraldine Javierin ideoima Earth, Water, Air, Fire, Void (Maa, Ilma, Vesi, Tuli, Tyhjiö) käsittelee ihmisen suhdetta luontoon ja sitä, miten voimme elää vastavuoroisessa suhteessa ympäristömme kanssa. Teoksen yhtenä osana ovat suojelevat talismaanit, joita teemme taidepajoissa. Ne ovat eri symboleihin taivutettua rautalankaa, joka on kääritty kierrätyskankaisiin.</p><p>Talismaanien symbolit ammentavat luonnosta ja ne ovat sekä suomalaisesta että filippiiniläisestä kulttuurista poimittuja. Kesäkuussa ne ripustetaan kuuteen vaahteraan Esplanadilla, missä ne muodostavat yhden suuren kokonaisuuden. Talismaanien tehtävänä on suojella puita, joihin ne on ripustettu.</p><p>Taidepajat ovat ilmaisia ja kaikki materiaalit löytyvät paikan päältä. Tule Malmitalolle ja anna kättenjälkesi loistaa Helsinki Biennaalin tulevassa taideteoksessa!</p><p><b>Taidepaja on avoinna Malmitalossa tiistaista torstaihin 4.-6.2.2025 klo 15.30–16.30. Paikkana kokoushuone 3.</b></p><p>Helsinki Biennaalia vietetään 8.6.-21.9.2025 ja tapahtumapaikkoina ovat HAM Helsingin taidemuseo, Vallisaari sekä Esplanadi.</p>", "sv": "<p>Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!</p><p>Verket som helhet är summan av de delar som görs under konstworkshopparna, och därför är varje deltagares insats och avtryck betydelsefullt för verkets uppkomst.</p><p>Earth, Water, Air, Fire, Void (Jord, Lyft, Vatten, Eld, Tomrum) grundar sig på en idé av den filippinska konstnären Geraldine Javier, och behandlar människans förhållande till naturen och hur vi kan leva interaktivt i förhållande till vår miljö. En del av verket är de skyddande talismaner, som vi gör i workshopparna. De består av ståltråd som har böjts till olika symboler och svepts in i återvinningstyger.</p><p>Talismanernas symboler inhämtar inspiration ur naturen, och har plockats från både den finländska och den filippinska kulturen. I juni hängs de upp i sex lönnar på Esplanaden, där de bildar en enda stor helhet. Talismanernas uppgift är att skydda de träd i vilka de hängts upp.</p><p>Konstworkshopparna är avgiftsfria och allt material finns på plats. Kom till Malms kulturhus och låt ditt handarbete stråla i det kommande konstverket för Helsingforsbiennalen! Konstworkshoppen är öppen 4.-6.2.2025 kl 15.30–16.30.</p><p>Fritt inträde.</p><p>Helsingforsbiennalen firas 8.6.–21.9.2025 och evenemangsplatserna är HAM Helsingfors konstmuseum, Skanslandet och Esplanaden.</p>", "en": "<p>We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!</p><p>The collection of artwork will be the sum of the pieces made in the workshops, so each participant’s contribution and handprint will be important to creating it.</p><p>Earth, Water, Air, Fire, Void, the work conceived by Filipino artist Geraldine Javier, explores the human relationship with nature and how we can live in a reciprocal relationship with our environment. One part of the work will be the protective talismans that we will make in art workshops. They are made with wire bent into different symbols and wrapped in recycled fabric.</p><p>The symbols of the talismans are drawn from nature and inspired by both Finnish and Filipino culture. In June, they will be hung on six maples on the Esplanade, where they will form one large collection. The talismans are meant to protect the trees on which they are hung.</p><p>The workshops are free of charge, and all materials will be available on-site. Come to Malmitalo, and let your handiwork shine in the upcoming Helsinki Biennial artwork! The art workshop is open from Tuesday to Thursday, 4–6 February, from 15:30 to 16:30.</p><p>Free admission.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65248/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ei2q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ejrq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150454, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T07:37:14.621279Z", "last_modified_time": "2024-03-15T07:37:14.621301Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ENTERry-20_1.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Opastustilanne", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150454/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-01-15T12:57:59.295291Z", "last_modified_time": "2025-01-15T12:57:59.295316Z", "date_published": null, "start_time": "2025-05-21T07:00:00Z", "end_time": "2025-05-21T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. ", "sv": "Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.", "en": "Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish." }, "info_url": null, "name": { "fi": "ENTER ry Tietotekniikkaopastusta senioreille", "sv": "ENTER ry IT utbildning för seniorer", "en": "ENTER ry IT tutoring for seniors" }, "description": { "fi": "<p>Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat.</p><p>Opastajina toimivat ENTER ry:n vapaaehtoiset vertaisopastajat.</p>", "sv": "<p>Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.</p>", "en": "<p>Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish.</p>" }, "location_extra_info": { "fi": "Kokoustila Kari" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ei2q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24642, "next": "