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
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=674
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=675", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=673" }, "data": [ { "id": "kulke:61170", "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: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/kulke:596/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6340, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-30T12:13:41.219354Z", "last_modified_time": "2024-02-06T13:22:52.213492Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738172.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6340/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-30T12:13:41.191948Z", "last_modified_time": "2024-02-06T13:22:52.250443Z", "date_published": null, "start_time": "2024-01-12", "end_time": "2024-02-10", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0DF1AC9900FF15F267C79466A4C761A6/Mikko_Paakkola_XL_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0DF1AC9900FF15F267C79466A4C761A6/Mikko_Paakkola_XL_", "en": "http://www.kanneltalo.fi/en/events/event/0DF1AC9900FF15F267C79466A4C761A6/Mikko_Paakkola_XL_" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Mikko Paakkola: XL – Maalauksia", "sv": "Mikko Paakkola: XL – Målningar", "en": "Mikko Paakkola: XL – Paintings" }, "short_description": { "fi": "”Extra large tunnetaan käsitteenä. Nyt joku voisi kuvitella minun isottelevan ja väittävän moniosaisten teosteni olevan jättiläismäisiä. Eiväthän ne ole.”", "sv": "\"Extra large är ett bekant begrepp. Nu skulle någon kunna tänka sig att jag överdriver och påstår att mina verk i flera delar är gigantiska. Nej, det är de inte.\"", "en": "“Extra large is a familiar concept. Now, someone might think I am bragging and claiming that my multi-volume works are gigantic. They are not.\"" }, "description": { "fi": "<p>”Extra large tunnetaan käsitteenä. Nyt joku voisi kuvitella minun isottelevan ja väittävän moniosaisten teosteni olevan jättiläismäisiä. Eiväthän ne ole.”</p><p>”Anselm Kieferin megalomaaniset ryöpytykset ovat, samoin taiteemme historia on täynnä aivan oikeasti suurikokoisia teoksia, Sikstuksen kappelista Guernicaan, eivätkä Monet'n lumpeetkaan Pariisin Orangeriessa ole intiimiydellä pilattuja, vaikka on niissä sitäkin.”</p><p>”Omat kokeiluni kymmenen neliömetrin areenalla ovat sangen vaatimattomia virityksiä verrattuna siihen, mitä alalla on nähty. Siksi toisinaan paneudun myös klassiseen Aaneloseen. Monumentaalisuus ei ole aina koosta kiinni.”</p><p>Näyttely on valmistunut Turun kaupungin myöntämän Aboa-apurahan turvin.</p><p>Taidemaalari <b>Mikko Paakkola</b> (synt. 1961) asuu ja työskentelee Turussa. Paakkola opiskeli Turun piirustuskoulussa 1981–85 ja myöhemmin Pariisin L’Ecole Nationale Supérieure des Beaux-Arts’ssa Ranskan valtion myöntämän jatko-opintostipendin turvin 1988–90 Joël Kermarrecin ateljeessa.</p><p>Paakkolan debyyttinäyttely oli vuonna 1984 Wäinö Aaltosen museossa Turussa. Paakkola asui ja työskenteli Brysselissä 1996–2006, minkä jälkeenhän on ollut aktiivisesti mukana brysseliläisen taidekeskuksen Office d'Art Contemporainin toiminnassa. Paakkola on helsinkiläisen galleria Rankan perustajajäsen 2015.</p><p>Kokonaisuudessaan Paakkola on pitänyt noin 80 yksityisnäyttelyä ja osallistunut 140 yhteisnäyttelyyn, näistä noin puolet muualla Euroopassa. Paakkola on kirjoittanut Taide-lehteen vuodesta 2018. Hän on saanut Suomen taideyhdistyksen dukaattipalkinnon 1993 ja Turun kaupungin myöntämän 1-vuotiseen työskentelyyn tarkoitetun Aboa-apurahan sekä valtion myöntämän ylimääräisen taiteilijaeläkkeen vuonna 2023.</p>", "sv": "<p>\"Extra large är ett bekant begrepp. Nu skulle någon kunna tänka sig att jag överdriver och påstår att mina verk i flera delar är gigantiska. Nej, det är de inte.\"</p><p>\"Mina egna experiment på en arena på tio kvadratmeter är ganska blygsamma jämfört med vad man har sett i branschen\", säger Mikko Paakkola.</p>", "en": "<p>“Extra large is a familiar concept. Now, someone might think I am bragging and claiming that my multi-volume works are gigantic. They are not.\"</p><p>!My own experiments in the ten-square-metre arena are quite modest compared to what has been seen in the industry\", Mikko Paakkola says.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61170/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61543", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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:44/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-07T09:13:47.624190Z", "last_modified_time": "2024-02-06T13:22:52.124054Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741128.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-12-07T09:13:47.591192Z", "last_modified_time": "2024-02-06T13:22:52.161349Z", "date_published": null, "start_time": "2024-01-12", "end_time": "2024-02-25", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3ABDBF1698586E13FBF0B3DF82F4FD24/Samuli_Turunen_Hero_No_Tolerance", "sv": "http://www.stoa.fi/sv/evenemang/event/3ABDBF1698586E13FBF0B3DF82F4FD24/Samuli_Turunen_Hero_No_Tolerance", "en": "http://www.stoa.fi/en/events/event/3ABDBF1698586E13FBF0B3DF82F4FD24/Samuli_Turunen_Hero_No_Tolerance" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Samuli Turunen: Hero No Tolerance", "sv": "Samuli Turunen: Hero No Tolerance", "en": "Samuli Turunen: Hero No Tolerance" }, "short_description": { "fi": "Hero maalasi ensimmäiset omat graffitit 1990-luvun alussa.", "sv": "Hero målade sina första egna graffiti i början av 1990-talet.", "en": "Hero painted his first graffiti in the early 1990s." }, "description": { "fi": "<p>Hero maalasi ensimmäiset omat graffitit 1990-luvun alussa.</p><p>Hän oli tutustunut graffitien maailmaan sitä ennen, alle 10-vuotiaana, kun isoveli oli ostanut Akateemisesta kirjakaupasta New Yorkin maanalaisen muraalitaidetta esittelevän Subway Art -kirjan.</p><p>Hero asui lapsuutensa Pohjois-Helsingissä, jossa katutaidekulttuuri oli vilkasta jo 1980-luvulla. ”Vanhemmat tyypit teki ja me saatiin olla mukana seuraamassa. Kiinnostuin, koska tykkäsin piirtämisestä. Sitten 11–12 -vuotiaana halusin ruveta tekemään itsekin jotakin.”</p><p>Hän hankki spraymaalia ja aloitti. Paikkana oli Tapulikaupungissa tunnettu nk. Sikalan metsä. Sen keskellä oli pyöreä tyhjä bunkkeri, jota sai maalata. ”Kiinnostus vain voimistui aina, kun maalattiin.”</p><p>Maalauksissaan hän ei ottanut kantaa. Niissä on ollut alusta lähtien sarjakuvahahmoja, eri kirjaintyylejä, kokeiluja väreillä. Alkuun kaikki hahmot piirrettiin ensin ääriviivoilla, joiden sisään kuvat väritettiin vasta sitten.</p><p>Nyt tyyli on muuttunut. ”Kuva hahmotellaan ensin väreillä ja rajaukset tehdään viimeiseksi.”</p><p>Hero teki maalauksia aluksi vain itselleen. Myöhemmin hän alkoi tajuta, että joku muukin saattaa jopa tykätä niistä. Nyt hän on ollut itseoppinut graffititaiteilija kohta 33 vuotta.</p><p>Lämpimästi tervetuloa näyttelyn avajaisiin Stoan galleriaan torstaina 11.1. klo 17-19.</p>", "sv": "<p>Hero målade sina första egna graffiti i början av 1990-talet.</p><p>Till en början gjorde Hero målningar bara för sig själv. Längre fram började han inse att andra kanske till och med tycker om dem. Nu har han varit självlärd graffitikonstnär i snart 33 år.</p>", "en": "<p>Hero painted his first graffiti in the early 1990s.</p><p>Initially, Hero only made paintings for himself. Later, he began to realise that someone else might like them as well. Now he has been a self-taught graffiti artist for almost 33 years.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61543/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61831", "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:50/?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/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/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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6921, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-29T12:13:01.508439Z", "last_modified_time": "2024-02-06T13:22:51.835031Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742047.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-29T12:13:01.481683Z", "last_modified_time": "2024-02-06T13:22:51.874929Z", "date_published": null, "start_time": "2024-01-06T15:00:00Z", "end_time": "2024-01-06T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/02F570A4967818CBABC141520662FDBA/Loppiaisleppoiset_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/02F570A4967818CBABC141520662FDBA/Avkopplande_trettondedag_jul", "en": "http://www.kanneltalo.fi/en/events/event/02F570A4967818CBABC141520662FDBA/Gentle_Epiphany_Event" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Loppiaisleppoiset", "sv": "Avkopplande trettondedag jul", "en": "Gentle Epiphany Event" }, "short_description": { "fi": "Tervetuloa nauttimaan valosta ja lämmöstä Kanneltalon loppiaistapahtumaan.", "sv": "Välkommen att njuta av ljuset och värmen i Gamlasgårdens evenemang på trettondedag jul.", "en": "Come enjoy light and warmth at Kanneltalo’s Epiphany event." }, "description": { "fi": "<p>Tervetuloa nauttimaan valosta ja lämmöstä Kanneltalon loppiaistapahtumaan.</p><p>Tapahtumassa voit tutustua Katsoessa katoaa -teokseen Sitratorilla (klo 17–22) osana Lux Helsinkiä sekä teoksen tehneeseen taitelijaan Saana Volaseen, joka kertoo teoksestaan klo 18 kahvilan stagella. Kahvilassa on tarjolla kuumaa mehua ja galleriassa Käpykolon väkeä -näyttelyyn liittyvä työpaja. Samalla voit tehdä edullisia lippuostoksia Kanneltalon kevätkauden esityksiin.</p>", "sv": "<p>Välkommen att njuta av ljuset och värmen i Gamlasgårdens evenemang på trettondedag jul.</p>", "en": "<p>Come enjoy light and warmth at Kanneltalo’s Epiphany event.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61831/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61491", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6332, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-30T11:13:32.287297Z", "last_modified_time": "2024-02-06T13:22:51.739131Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740132.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6332/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-30T11:13:32.256080Z", "last_modified_time": "2024-02-06T13:22:51.779567Z", "date_published": null, "start_time": "2024-01-03", "end_time": "2024-01-07", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/448BB123ED52FFC47981D4FE2CF4E11F/Niko_Tiainen_SUBURBIUM_0001_", "sv": "http://www.stoa.fi/sv/evenemang/event/448BB123ED52FFC47981D4FE2CF4E11F/Niko_Tiainen_SUBURBIUM_0001_", "en": "http://www.stoa.fi/en/events/event/448BB123ED52FFC47981D4FE2CF4E11F/Niko_Tiainen_SUBURBIUM_0001_" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Niko Tiainen: SUBURBIUM.0001 – Lux Helsinki Stoassa", "sv": "Niko Tiainen: SUBURBIUM.0001 – Lux Helsinki på Stoa", "en": "Niko Tiainen: SUBURBIUM.0001 – Lux Helsinki at Stoa" }, "short_description": { "fi": "SUBURBIUM.0001 on tilalähtöinen proseduraalinen ääni- valo- ja videoinstallaatio, joka rakentuu ympärillä olevan tilan ehdoilla.", "sv": "SUBURBIUM.0001 är en rumslig procedurell ljud-, ljus- och videoinstallation som byggs upp på det omgivande rummets villkor.", "en": "SUBURBIUM.0001 is a space-based procedural sound, light and video installation, built on the conditions of the surrounding space." }, "description": { "fi": "<p>SUBURBIUM.0001 on tilalähtöinen proseduraalinen ääni- valo- ja videoinstallaatio, joka rakentuu ympärillä olevan tilan ehdoilla.</p><p>Teos nähtävissä Stoan aulassa 3.–7.1. klo 17–22.</p><p>Teoksen äänimaisema ja visuaalisuus pohjautuu lähialueelta eri sensoreilla kerättyyn dataan (kuviin, ääniin, videoihin ja 3D-skannauksiin). Teoksen algoritmi käyttää kerättyjä materiaaleja datasettinä, josta se muotoilee neuroverkkomaisen rakenteen avulla abstrakteja valo-, kuva- ja äänimaisemia.</p><p>Teos toimii myös mikrotasolla interaktiivisesti; tilaan on sijoitettu erilaisia sensoreita, joiden avulla havainnoidaan tilassa liikkuvia kokijoita. Kokijoiden liikkeistä kerätty data muuntaa algoritmia, joten teos muuttuu jatkuvasti erilaiseksi.</p><p><b>Niko Tiainen</b> (tiainen.xyz) on Suomessa asuva monialainen taiteilija. Hän on erikoistunut interaktiivisiin ulkoilmaprojektiokartoituksiin sekä video-, valo- ja ääni-installaatioihin. Tiaisella on tutkinnot klassisesta musiikista, sävellyksestä ja graafisesta suunnittelusta. Lisäksi hän on tällä hetkellä jatko-opiskelijana Aalto-yliopistossa suorittamassa maisterin tutkintoa uuden median suunnittelussa ja tuotannossa.</p><p>Tiaisen installaatiot yhdistävät usein konseptuaalisia teemoja abstrakteihin proseduraalisiin materiaaleihin, joihin on harmonisesti integroitu klassisen musiikin rakenteita ja tekniikoita.</p><p>Tiaisen töitä on esitelty näyttelyissä ja taidefestivaaleilla 23 maassa, esimerkiksi Ars Electronica Linzissä (2020), Lightbox-galleriassa New Yorkissa (2020), Neo Shibya Galleryssa Tokiossa (2021) ja Theater of Digital Art Dubaissa (2022).</p>", "sv": "<p>SUBURBIUM.0001 är en rumslig procedurell ljud-, ljus- och videoinstallation som byggs upp på det omgivande rummets villkor.</p><p>Stoas aula, 3.–7.1. kl. 17–22.</p><p>Verkets ljudlandskap och visualitet baserar sig på data som samlats in från närområdet med olika sensorer (bilder, ljud, videor och 3D-skanningar). Verkets algoritm använder det insamlade materialet som ett dataset, från vilket det formar abstrakta ljus-, bild- och ljudlandskap med hjälp av en neuronätverksliknande struktur.<br> <br>Arbetet fungerar interaktivt också på mikronivå: i lokalen har placerats olika slags sensorer som observerar de människor som rör sig i lokalen. Data som samlas in från deltagarnas rörelser förändrar algoritmen, vilket gör att konstverket förändras ständigt på olika sätt.<br> <br><b>Niko Tiainen</b> (tiainen.xyz) är en multidisciplinär konstnär som bor i Finland. Han har specialiserat sig på interaktiva utomhusprojektionskartläggningar samt på video-, ljus- och ljudinstallationer. Tiainen har examen i klassisk musik, komposition och grafisk design. Han bedriver dessutom fortsatta studier för en magisterexamen i design och produktion av nya medier vid Aalto-universitetet. Tiainens installationer kombinerar ofta konceptuella teman med abstrakta procedurella material som harmoniskt integrerar den klassiska musikens strukturer och tekniker.</p><p>Tiainens verk har presenterats på utställningar och konstfestivaler i 23 länder, bland annat på Ars Electronica Linz (2020), Lightbox Gallery i New York (2020), Neo Shibya Gallery i Tokyo (2021) och Theater of Digital Art Dubai (2022).</p>", "en": "<p>SUBURBIUM.0001 is a space-based procedural sound, light and video installation, built on the conditions of the surrounding space.</p><p>In Stoa's lobby 3–7 January 17:00–22:00.</p><p>The soundscape and visuality of the work is based on data (images, sounds, videos and 3D scans) collected from the surrounding area by different sensors. The work's algorithm uses the collected materials as a data set from which it shapes abstract light, image and soundscapes using a neural network structure.</p><p>The work is also interactive at a micro level, with sensors placed in the space to observe the experience of the experimenters moving through the space. The data collected from the movements of the cooks transforms the algorithm, so that the work is constantly changing.</p><p><b>Niko Tiainen</b> (tiainen.xyz) is a Finnish-based multidisciplinary artist. He specialises in interactive outdoor projection mapping and video, light and sound installations. Tiainen holds degrees in classical music, composition and graphic design. He is also currently a postgraduate student at Aalto University pursuing a Master's degree in New Media Design and Production.</p><p>Tiainen's artistic installations often combine conceptual themes with abstract procedural materials, harmoniously integrating classical music structures and techniques.</p><p>Tiainen's work has been shown in exhibitions and art festivals in 23 countries, including Ars Electronica Linz (2020), Lightbox Gallery in New York (2020), Neo Shibya Gallery in Tokyo (2021) and Theater of Digital Art Dubai (2022).</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61491/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61488", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6331, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-30T11:13:32.161544Z", "last_modified_time": "2024-02-06T13:22:51.639178Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739184.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6331/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-30T11:13:32.130889Z", "last_modified_time": "2024-02-06T13:22:51.680684Z", "date_published": null, "start_time": "2024-01-03", "end_time": "2024-01-07", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8C9B5AC7E7A778F2763C97DE743D5DE6/Teo_Lanerva_Liquid_line", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8C9B5AC7E7A778F2763C97DE743D5DE6/Teo_Lanerva_Liquid_line", "en": "http://www.malmitalo.fi/en/events/event/8C9B5AC7E7A778F2763C97DE743D5DE6/Teo_Lanerva_Liquid_line" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Teo Lanerva: Liquid line – Lux Helsinki Malmitalossa", "sv": "Teo Lanerva: Liquid line – Lux Helsinki på Malms kulturhus", "en": "Teo Lanerva: Liquid line – Lux Helsinki at Malmitalo" }, "short_description": { "fi": "Tässä installaatiossa valo keskustelee painovoiman kanssa käyttäen vettä tulkkinaan.", "sv": "I den här installationen samtalar ljuset med tyngdkraften med vattnet som tolk.", "en": "In this installation, light engages in a discussion with gravity using water as an interpreter." }, "description": { "fi": "<p>Tässä installaatiossa valo keskustelee painovoiman kanssa käyttäen vettä tulkkinaan.</p><p>Esilllä Malmisalissa 3.–7.1. klo 17–22.</p><p>Kun normaalisti painovoiman ulottumattomissa oleva valo heijastuu keinuvan veden läpi, se taipuu, mutta palaa aina takaisin lähtöpisteeseen ikään kuin sillä olisi massaa. Tämä elementtien välinen keskustelu synnyttää liikkeen, joka on yhtä aikaa tuttua ja outoa.</p><p><b>Teo Lanerva</b> on Helsingissä asuva freelance-valo- ja videosuunnittelija sekä teatteritaiteen maisteri. Hän työskentelee nykyesitysten, konserttien ja tapahtumien parissa pienistä underground-klubeista festivaaleihin. Lanervalle on myönnetty Säde-palkinto, ja hänen suunnittelemiaan teoksia on esitetty yli kymmenessä maassa.</p>", "sv": "<p>I den här installationen samtalar ljuset med tyngdkraften med vattnet som tolk.</p><p>I Malmsalen 3–7.1 kl. 17–22.</p><p>Normalt är ljuset utom räckhåll för tyngdkraften, men när det speglas genom det vaggande vattnet, böjs det, men återvänder alltid till sin källa, precis som om det hade massa. Detta samtal mellan element skapar en rörelse om samtidigt är välbekant och främmande.</p><p><b>Teo Lanerva</b> är en frilansande ljus- och videodesigner och magister i teaterkonst från Helsingfors. Han arbetar med nutidsföreställningar, konserter och evenemang från små undergroundklubbar till festivaler. Lanerva har belönats med Säde-priset, och konstverk som han designat har presenterats i över tio länder.</p>", "en": "<p>In this installation, light engages in a discussion with gravity using water as an interpreter.</p><p>In Malmisali daily 3–7 January 17:00–22:00.</p><p>When reflected through swinging water, light – which is normally beyond the reach of gravity – bends, yet always returns to its starting point as if it had mass. This discussion between the elements creates a motion that is both familiar and strange at the same time.</p><p><b>Teo Lanerva</b> is a freelance lighting and video designer (MA, Theatrical Arts) based in Helsinki, Finland. He works with contemporary performances, concerts and events ranging from small underground clubs to festivals. He has been granted a Säde Award and his designs have been performed in more than ten countries.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61488/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61487", "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: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/kulke:596/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6330, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-30T11:13:32.027106Z", "last_modified_time": "2024-02-06T13:22:51.541420Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738348.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6330/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-30T11:13:31.995389Z", "last_modified_time": "2024-02-06T13:22:51.581042Z", "date_published": null, "start_time": "2024-01-03", "end_time": "2024-01-07", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3FD89274BB0CE8EEEAFCCA0DCE809D7F/Saana_Volanen_Katsoessa_katoaa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3FD89274BB0CE8EEEAFCCA0DCE809D7F/Saana_Volanen_Katsoessa_katoaa", "en": "http://www.kanneltalo.fi/en/events/event/3FD89274BB0CE8EEEAFCCA0DCE809D7F/Saana_Volanen_Katsoessa_katoaa" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Saana Volanen: Katsoessa katoaa – Lux Helsinki Kanneltalossa", "sv": "Saana Volanen: Katsoessa katoaa – Lux Helsinki på Gamlasgården", "en": "Saana Volanen: Katsoessa katoaa – Lux Helsinki at Kanneltalo" }, "short_description": { "fi": "Kerran täällä ollut valo on täällä jälleen, mutta toisena, niin toisena ettei sitä voi samaksi sanoa. Valoteosta ympäröivä maisema on kuvattu, hajotettu ja palautettu valona osaksi maisemaa.", "sv": "Ljuset som en gång var här är här igen, men det är annorlunda, så annorlunda att man inte längre kan säga att det är samma ljus.", "en": "The light that once was here has returned, but it is so transformed that one could not say it remains the same." }, "description": { "fi": "<p>Kerran täällä ollut valo on täällä jälleen, mutta toisena, niin toisena ettei sitä voi samaksi sanoa. Valoteosta ympäröivä maisema on kuvattu, hajotettu ja palautettu valona osaksi maisemaa.</p><p>Teos valoissa Sitratorilla 3.–7.1. klo 17–22.</p><p>Teos on menneisyyden valo limittyneenä nykyhetkeen. Se on päivän kääntyminen yöhön, maiseman jatkuva muutos.</p><p>Katsoessa katoaa on paikkasidonnainen valotaideteos, joka muodostuu Sitratorin maisemaan sijoitetuista, samassa paikassa kuvattua materiaalia toistavista led-putkista. Led-putkien harvoissa pikseleissä videon informaatio hälvenee, kunnes jäljelle jäävät vain maiseman muodot ja valon muutos. Vartin kestävässä luupissa auringon laskiessa maisema hämärtyy ja keinovalot syttyvät.</p><p><b>Saana Volanen</b> on taiteilija, valosuunnittelija ja lavastaja, joka työskentelee esittävien taiteiden ja valotaiteen parissa. Volanen on valmistunut esittävien taiteiden lavastuksen kandidaatiksi Aalto-yliopistosta ja opiskelee tällä hetkellä valosuunnittelun maisteriohjelmassa Taideyliopistossa. Volanen on kiinnostunut pohtimaan, kuinka tila ja aika kietoutuvat yhteen käsitteellisesti ja kokemuksellisesti. Hän on kiintynyt käsitteisiin maisema, tilasensitiivisyys ja immersio.</p><p>Volasen valotaide juontuu hetkestä, jolloin auringon säteet varhaisena aamuna tulvivat hänen kotiinsa ensimmäisen kerran talven jälkeen, maan taas tehtyä kiertonsa auringon ympäri.</p>", "sv": "<p>Ljuset som en gång var här är här igen, men det är annorlunda, så annorlunda att man inte längre kan säga att det är samma ljus.</p><p>På Sitratorget 3.–7.1. kl. 17–22.</p><p>Landskapet som omger konstverket har avbildats, sönderdelats och återställts som en del av landskapet i form av ljus. Konstverket är ljus från det förgångna som sammanflätas med nuet. Det är dagen som vänder mot natt, landskapets ständiga förändring.</p><p>Katsoessa katoaa är ett platsspecifikt ljuskonstverk som bildas av led-rör som placerats i Sitratorgets landskapet och återger material som filmats på samma ställe. I led-rörens glesa pixlar löses informationen på videon upp tills endast landskapet former och ljusets förändring återstår. I den femton minuter långa loopen blir landskapet mörkare och den artificiella belysningen tänds i takt med solnedgången.</p><p><b>Saana Volanen</b> är konstnär, ljusdesigner och scenograf. Hon arbetar allmänt med scen- och ljuskonst. Volanen har en kandidatexamen i scenografi från Aalto-universitetet. För närvarande undersöker hon i magisterprogrammet för ljusdesign vid Konstuniversitetet. Volanen studerar hur rum och tid flätas samman konceptuellt och upplevelsemässigt. Hon är tillgiven om begrepps landskap, platssensitivitet och immersion. Volanens ljuskonst har sin grund i ögonblicken då solens strålar för första gången strömmar in i hennes hem en tidig sommarmorgon, då jorden åter gjort ett kretslopp kring solen under vinterns lopp.</p>", "en": "<p>The light that once was here has returned, but it is so transformed that one could not say it remains the same.</p><p>The piece is lit up on Sitratori daily 3–7 January 17:00–22:00.</p><p>The landscape surrounding the artwork was captured with a camera, then deconstructed and reintroduced to the landscape as light. The artwork melds light from the past into the present, signifying the transition of day into night and the ever-changing vista.</p><p>Vanishing While Viewing is a site-specific light art piece made with LED strips that integrate into Sitratori square's landscape. These LED strips display material filmed at the same location. Within the pixels of the LED strips, the video's information fades, leaving behind the outlines of the landscape and the constant shift of light. Over a fifteen-minute loop, the Sun sets and man-made lights ignite.</p><p><b>Saana Volanen</b> is an artist, lighting designer, and scenographer operating in the realms of performing arts and light art. Volanen earned a BA in Design for the Performing Arts from Aalto University and is presently pursuing a master's in lighting design at the University of Arts Helsinki. Volanen's artistic exploration delves into the entwining of time and space, both conceptually and experientially. She has an appreciation for words landscape, site sensitivity and immersion. Volanen's approach for light art was kindled one early summer morning when the Sun's inaugural rays pierced through her dwelling for the first time in that orbit after winter.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61487/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61888", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7138, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T14:14:15.369581Z", "last_modified_time": "2024-02-06T13:22:51.443113Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743833.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7138/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-11T14:14:15.325133Z", "last_modified_time": "2024-02-06T13:22:51.481694Z", "date_published": null, "start_time": "2024-01-03", "end_time": "2024-01-31", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/920A5695A4F9EE098A6FEDC24C344EE1/Talvi_taiteilijana_-_Raimo_Ketolaisen_valokuvia_" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Talvi taiteilijana - Raimo Ketolaisen valokuvia – Haagan Taideseura" }, "short_description": { "fi": "Kanneltalon kahvilassa esillä Raimo Ketolaisen valokuvia." }, "description": { "fi": "<p>Kanneltalon kahvilassa esillä Raimo Ketolaisen valokuvia.</p><p>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura.</p><p>Lisätiedot <br>https://www.haagantaideseura.com/</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61888/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61726", "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:288/?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: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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6704, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-19T11:13:18.441998Z", "last_modified_time": "2024-02-06T13:22:51.256253Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742727.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6704/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-19T11:13:18.394096Z", "last_modified_time": "2024-02-06T13:22:51.297252Z", "date_published": null, "start_time": "2023-12-21", "end_time": "2024-01-20", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/532CBB0EC7B5AE81EEECB4405B3EF4D7/Terhi_Ekebom_Latvusto", "en": "http://www.malmitalo.fi/en/events/event/532CBB0EC7B5AE81EEECB4405B3EF4D7/Terhi_Ekebom_The_Canopy" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Terhi Ekebom: Latvusto", "en": "Terhi Ekebom: The Canopy" }, "short_description": { "fi": "Näyttely tutkii ihmisen erillisyyden kokemusta, yhteyden haasteellisuutta, sekä luontosuhdetta ja luonnon olemassaolon oikeutta.", "en": "The exhibition explores the experience of human isolation, the challenge of connection, and the relationship with nature and nature's right to exist as itself." }, "description": { "fi": "<p>Näyttely tutkii ihmisen erillisyyden kokemusta, yhteyden haasteellisuutta, sekä luontosuhdetta ja luonnon olemassaolon oikeutta.</p><p>Teossarjassa pieni hahmo kiipeää korkealla puiden latvustossa. Miksi hän on siellä? Miksi noin korkealla, etäällä muista? Metsä on paikoin abstrakti kuvaten puiden, jäkälien ja lehtien rytmejä. Välillä teosten huomio kiinnittyy mikrotasolle, välillä laajempaan kuvakulmaan. Serigrafiatekniikalla toteutetussa teossarjassa on tarinallinen, liikkeen ja liikkumisen jatkumo.</p><p>Teosten yhteydessä on kuultavana Sebastian Boulterin niitä varten säveltämä teos Latvusto / Juuristo.</p><p>Avajaiset keskiviikkona 20.12. klo 17:00–19:00.</p><p>TaM <b>Terhi Ekebom</b> on helsinkiläinen kuvittaja, kuvataiteilija ja sarjakuvataitelija. Hän työskentelee monipuolisilla tekniikoilla tehden kuvitusta ja julkista taidetta, joista viimeisimpinä ovat valmistuneet mm. Alavan päiväkodin teokset sekä seinämaalaukset Vaasan keskussairaalaan, Viron Põltsamaalle ja Ravintolamuseon aulaan Helsingissä. Parhaillaan hän piirtää puu-aihesta serigrafiasarjaa ja valmistelee julkisen taiteen teoskokonaisuutta Turkuun.</p>", "en": "<p>The exhibition explores the experience of human isolation, the challenge of connection, and the relationship with nature and nature's right to exist as itself.</p><p>In the series of works, a small figure climbs high among the trees. Why is she there? Why so high, far from others? The forest is drawn partly as abstract details, depicting the rhythms of trees, lichens and leaves. Sometimes the attention of the works is focused on the micro level, sometimes on a wider perspective. The series of works is realized with serigraphy technique and it has a visual narrative, a continuum of movement and rhythm.</p><p>In connection with the works one can hear the soundworld The Canopy / The Roots Latvusto composed by Sebastian Boulter.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61726/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61140", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?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:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5454, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T14:00:31.367233Z", "last_modified_time": "2024-02-06T13:22:51.057513Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733542.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5454/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-12T14:00:31.224721Z", "last_modified_time": "2024-02-06T13:22:51.102557Z", "date_published": null, "start_time": "2023-12-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2D3BE6D8B6B47D7AFAB2E8CAE949DA3C/Onsdagsbio_Lange_leve_bonusfamiljen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2D3BE6D8B6B47D7AFAB2E8CAE949DA3C/Onsdagsbio_Lange_leve_bonusfamiljen", "en": "http://www.vuotalo.fi/en/events/event/2D3BE6D8B6B47D7AFAB2E8CAE949DA3C/Onsdagsbio_Lange_leve_bonusfamiljen" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Onsdagsbio: Länge leve bonusfamiljen", "sv": "Onsdagsbio: Länge leve bonusfamiljen", "en": "Onsdagsbio: Länge leve bonusfamiljen" }, "short_description": { "fi": "Lisa ja Patrik ovat korjanneet avioliittonsa Patrikin vuotta aiemmin tapahtuneen uskottomuuden jäljiltä, kun postiluukusta tipahtaa kirje käräjäoikeudesta.", "sv": "Lisa och Patrik har lappat ihop sitt äktenskap efter Patriks otrohet ett år tidigare när ett brev från tingsrätten dimper ner.", "en": "Follows Lisa and Patrik who have patched up their marriage after Patrik's infidelity, but everything turns upside down when they receive a letter from the district court about their divorce papers, which Lisa had forgotten she had filed." }, "description": { "fi": "<p>Lisa ja Patrik ovat korjanneet avioliittonsa Patrikin vuotta aiemmin tapahtuneen uskottomuuden jäljiltä, kun postiluukusta tipahtaa kirje käräjäoikeudesta.</p><p>Lisa on täysin unohtanut jättäneensä avioerohakemuksen tilanteen ollessa pahimmillaan, ja avioero on nyt tosiasia. Patrik järkyttyy, hän ei missään nimessä halua olla eronnut, joten hän päättää yllättää Lisan ja järjestää tunturihäät uudenvuodenaattona. Paikan päällä selviää, että Lisakin on ollut uskoton, ja kaikki kääntyy päälaelleen.</p><p>Maa: Ruotsi 2022 <br>Genre: Draamakomedia<br>Ohjaajat: Felix Herngren<br>Näyttelijät: Vera Vitali, Erik Johansson, Fredrik Hallgren, Johan Ulveson, Måns Nathanaelson, Niklas Engdahl, Marianne Mörck, Christer Lindarw, Frank Dorsin</p><p>Kieli: ruotsi <br>Tekstitys: suomi<br>Kesto: 1 t 46 min.<br>K7</p><p>Vapaa pääsy</p><p>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa</p>", "sv": "<p>Lisa och Patrik har lappat ihop sitt äktenskap efter Patriks otrohet ett år tidigare när ett brev från tingsrätten dimper ner.</p><p>Det visar sig att Lisa glömt bort att hon lämnade in skilsmässopapper när det var som sämst mellan dem och nu är skilsmässan ett faktum. Patrik blir bestört, han vill absolut inte vara skild från Lisa och bestämmer sig för att överraska henne i fjällen med ett bröllop på nyårsafton. Väl på plats kommer det fram att Lisa också har varit otrogen, och allt vänds upp och ner.</p><p>Land: Sverige 2022 <br>Genre: Dramakomedi<br>Regi: Felix Herngren<br>Skådespelare: Vera Vitali, Erik Johansson, Fredrik Hallgren, Johan Ulveson, Måns Nathanaelson, Niklas Engdahl, Marianne Mörck, Christer Lindarw, Frank Dorsin</p><p>Språk: Svenska <br>Text: Finsk<br>Längd: 1 h 46 min.<br>F7</p><p>Fritt inträde</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>", "en": "<p>Follows Lisa and Patrik who have patched up their marriage after Patrik's infidelity, but everything turns upside down when they receive a letter from the district court about their divorce papers, which Lisa had forgotten she had filed.</p><p>Patrik doesn´t want to divorce and decides to surprise Lisa with a wedding in Lapland on New Years Eve. There he finds out that also Lisa has been unfaithful and everything turns upside down.</p><p>Land: Sweden 2022 <br>Genre: Dramacomedy<br>Director: Felix Herngren<br>Actors: Vera Vitali, Erik Johansson, Fredrik Hallgren, Johan Ulveson, Måns Nathanaelson, Niklas Engdahl, Marianne Mörck, Christer Lindarw, Frank Dorsin<br>Language: Swedish <br>Subtitles: Finnish<br>Running time: 1 h 46 min.<br>Age limit: 7<br>Free entry</p><p>Org. Finlandssvenskt filmcentrum in cooperation with Vuotalo</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61140/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61674", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6616, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-13T10:12:54.381088Z", "last_modified_time": "2024-02-06T13:22:50.852172Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742480.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6616/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-12-13T10:12:54.347640Z", "last_modified_time": "2024-02-06T13:22:50.897216Z", "date_published": null, "start_time": "2023-12-20T14:00:00Z", "end_time": "2023-12-20T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/93105B7C692DF25FD0F0B0955325DC8E/Tiikerijuhlat", "sv": "http://www.annantalo.fi/sv/evenemang/event/93105B7C692DF25FD0F0B0955325DC8E/Tigerfest", "en": "http://www.annantalo.fi/en/events/event/93105B7C692DF25FD0F0B0955325DC8E/Tiger_party" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Tiikerijuhlat – Main kamalan tyhmä päivä -teoksen julkaisutilaisuus", "sv": "Tigerfest – Main kamalan tyhmä päivä -bokens release (Mais fruktansvärt dumma dag)", "en": "Tiger party – Main kamalan tyhmä päivä book launch party" }, "short_description": { "fi": "Tervetuloa Main kamalan tyhmä päivä -teoksen julkaisutilaisuuteen Annantalolle ke 20.12. klo 16-18", "sv": "Välkommen på releasefest för boken Main kamalan tyhmä päivä till Annegården ons 20.12. kl 16-18.", "en": "Welcome to celebrate ”Main kamalan tyhmä päivä” picture book's launch at Annantalo on Wednesday 20th December from 4pm until 6pm." }, "description": { "fi": "<p>Tervetuloa Main kamalan tyhmä päivä -teoksen julkaisutilaisuuteen Annantalolle ke 20.12. klo 16-18</p><p>Ohjelmassa tiikerimäistä ohjelmaa ja herkuttelua sekä lukuhetki.<br>Tilaisuuden järjestävät kirjantekijät yhdessä Annantalon kanssa.</p><p>Sanna Sofia Vuori ja Nadja Sarell: Main kamalan tyhmä päivä<br>Mielikuvitusta hivelevä kuvakirja sanoittaa ja kuvittaa ihastuttavasti lapsen arkea ja tunne-elämää.</p><p>Kun Mai herää aamulla, ulkona sataa. Juuri tänään ei olisi saanut sataa, sillä vaikka Main uusi hieno takki odottaa eteisessä, hänen täytyy laittaa sadevaatteet. Mai ei halua syödä mitään, sillä hänen mahassaan asuu tiikeri, jolle ei kannata antaa ruokaa. Äiti ja isäkin vain murisevat toiselleen.</p><p>Kun Mai vihdoin ennättää päiväkotiin, tiikerit painivat hänen mahassaan. Ja lisäksi kaikilla muilla lapsilla on jo tänään valmiiksi kaveri. Main päivä on siis aivan kamalan tyhmä. Lounaan jälkeen tiikerit heräävät ja alkavat murista ja pyöriskellä…Mutta iltapäivällä äiti hakee Main aikaisin kotiin. Edessä onkin Main kamalan kiva ilta! Tiikeritkin alkavat näyttää ihan tavallisilta kissoilta.</p><p>Teos on suunnattu kolmevuotiaasta ylöspäin ja se on Tammen kustantama.</p><p>Kuva: Nadja Sarell</p>", "sv": "<p>Välkommen på releasefest för boken Main kamalan tyhmä päivä till Annegården ons 20.12. kl 16-18.</p><p>Tigrigt program för alla, delikatessen och en läsestund. <br>Tillställningen är organiserad av bokens skapare i samarbete med Annegården.</p><p>Sanna Sofia Vuori och Nadja Sarell: Main kamalan tyhmä päivä<br>En bilderbok som kittlar fantasin och lägger både ord och bild på barnets vardag och känslor.</p><p>Det regnar när Mai vaknar på morgonen. Idag hade det inte fått regna för Mai har en ny fin rock som väntar i tamburen. Nu måste hon klä på sig regnkläder. Mai vill inte äta nånting alls för det bor en tiger i hennes mage och den lönar det sig inte att mata. Mamma och pappa morrar också till varann.</p><p>När Mai kommer till dagis brottas tigrarna i magen och alla andra barn har redan ett lekpar. Mais dag är alldeles fruktansvärt dum. Under vilan vaknar ännu fler tigrar och börjar härja runt… Men på eftermiddagen hämtar mamma Mai tidigt. Det blir en fruktansvärt fin kväll! Tigrarna börjar se ut som alldeles vanliga katter.</p><p>Boken är riktad till alla över tre år och har kommit ut på Tammi.<br> <br>Bild: Nadja Sarell</p>", "en": "<p>Welcome to celebrate ”Main kamalan tyhmä päivä” picture book's launch at Annantalo on Wednesday 20th December from 4pm until 6pm.</p><p>There will be fun tigerlike programme, some treats and snacks to enjoy and a reading of the new book.</p><p>The event is organised by author Sanna Sofia Vuori and illustrator Nadja Sarell together with Annantalo.<br> <br>Photo: Nadja Sarell</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61674/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61330", "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: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5980, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-13T12:14:23.062237Z", "last_modified_time": "2024-02-06T13:22:50.755996Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739651.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5980/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-13T12:14:23.041518Z", "last_modified_time": "2024-02-06T13:22:50.800844Z", "date_published": null, "start_time": "2023-12-20T14:00:00Z", "end_time": "2023-12-20T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3D676896A49A7D79625B2F48A4ABF4C0/Joulupuuro" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Joulupuuro – Malmitalon joulu" }, "short_description": { "fi": "Tarjolla on herkullista joulupuuroa." }, "description": { "fi": "<p>Tarjolla on herkullista joulupuuroa.</p><p>Malmitalo toivottaa kaikille hyvää joulua, tervetuloa!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61330/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60178", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:732/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4646, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:16.670583Z", "last_modified_time": "2024-02-06T13:22:50.661112Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734096.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4646/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:16.483528Z", "last_modified_time": "2024-02-06T13:22:50.706326Z", "date_published": null, "start_time": "2023-12-20T14:00:00Z", "end_time": "2023-12-20T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/81E763726EE00FCB432267B977B68310/Jouluinen_kynttilapaja" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Jouluinen kynttiläpaja" }, "short_description": { "fi": "Huom! Muuttunut aika: paja pidetään ke 20.12. Kiireisten jouluvalmistelujen keskellä on hyvä pitää pieni tauko. Työpajassa valmistetaan kynttilöitä kastamalla lankaa toistuvasti sulatettuun vahaan." }, "description": { "fi": "<p>Huom! Muuttunut aika: paja pidetään ke 20.12. Kiireisten jouluvalmistelujen keskellä on hyvä pitää pieni tauko. Työpajassa valmistetaan kynttilöitä kastamalla lankaa toistuvasti sulatettuun vahaan.</p><p>Pajaan mahtuu kerrallaan noin 20 henkilöä. Yksi kynttilä per osallistuja. Työpajaa ohjaa kuvataiteilija, muotoilija Chloé Mahy-Hulkko.</p><p>Ikäsuositus: Alle 10-vuotiaat aikuisen kanssa. <br>Työpajan ohjaa: Chloé Mahy-Hulkko<br>Tapahtuman kieli: suomi, ranska, englanti<br>Vapaa pääsy, ei ennakkoilmoittautumista</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60178/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61141", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:45/?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/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5453, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T14:00:30.996676Z", "last_modified_time": "2024-02-06T13:22:50.571201Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737105.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-12T14:00:30.850181Z", "last_modified_time": "2024-02-06T13:22:50.609593Z", "date_published": null, "start_time": "2023-12-20T08:30:00Z", "end_time": "2023-12-20T09:20:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/345AD8BCDE5A0256DC59435ACF1F341B/Jultomten_och_trolltrumman_T_Dagisbio", "sv": "http://www.vuotalo.fi/sv/evenemang/event/345AD8BCDE5A0256DC59435ACF1F341B/Jultomten_och_trolltrumman_T_Dagisbio" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Jultomten och trolltrumman (T) | Dagisbio", "sv": "Jultomten och trolltrumman (T) | Dagisbio" }, "short_description": { "fi": "Ruotsinkielinen animaatioelokuva perustuu Mauri Kunnaksen kirjaan Joulupukki ja noitarumpu.", "sv": "Tecknad film som baserar sig på Mauri Kunnas bok med samma namn." }, "description": { "fi": "<p>Ruotsinkielinen animaatioelokuva perustuu Mauri Kunnaksen kirjaan Joulupukki ja noitarumpu.</p><p>Aattovalmistelut edistyvät hyvää vauhtia, mutta kaikki ei sittenkään ole ihan niin kuin pitäisi. Kuka pani pippuria pipareihin? Kuka sammutti taivaalta revontulet? Miksi virus sotkee tietokoneohjelman juuri, kun Joulupukki on löytämäisillään ratkaisun kiperään lahjapulmaan? Kuka tekee Joulupukille kiusaa ja miksi ihmeessä?<br> <br>Musiikki: Sotta ja Pytty<br>Suomi 1996<br>Kesto: 51 min<br>Ruotsinkielinen puhe, suomenkielinen tekstitys. <br>Ikäraja: S<br>Vapaa pääsy, mutta ryhmille pakollinen ennakkovaraus: Kultus.fi<br>Järj. Vuotalo</p>", "sv": "<p>Tecknad film som baserar sig på Mauri Kunnas bok med samma namn.</p><p>Dagarna innan Julafton anländer den sista säcken med brev till Tomten. Längst ner ligger ett brev som är lite äldre än alla andra, det är en teckning som föreställer, ja säg det. Medans den snuvige Tomtefar försöker lista ut vad det är teckningen föreställer så börjar underliga saker hända.<br> <br>Musik: Sås och Kopp<br>Utgivningsår: 1996<br>Längd: 51 min<br>Svenskt tal, finsk text. <br>Åldersgräns: T<br>Fritt deltagande men obligatorisk platsbokning för grupper via Kultus.fi<br>Arr. Nordhuset</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61141/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60641", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:45/?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/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4664, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:35.539118Z", "last_modified_time": "2024-02-06T13:22:50.481835Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733540.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4664/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:28:35.395443Z", "last_modified_time": "2024-02-06T13:22:50.520765Z", "date_published": null, "start_time": "2023-12-20T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8F1D6D06AA411929B382F4FA6526D110/Jultomten_och_trolltrumman_T_Dagisbio", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8F1D6D06AA411929B382F4FA6526D110/Jultomten_och_trolltrumman_T_Dagisbio" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Jultomten och trolltrumman (T) | Dagisbio", "sv": "Jultomten och trolltrumman (T) | Dagisbio" }, "short_description": { "fi": "Ruotsinkielinen animaatioelokuva perustuu Mauri Kunnaksen kirjaan Joulupukki ja noitarumpu.", "sv": "Tecknad film som baserar sig på Mauri Kunnas bok med samma namn." }, "description": { "fi": "<p>Ruotsinkielinen animaatioelokuva perustuu Mauri Kunnaksen kirjaan Joulupukki ja noitarumpu.</p><p>Aattovalmistelut edistyvät hyvää vauhtia, mutta kaikki ei sittenkään ole ihan niin kuin pitäisi. Kuka pani pippuria pipareihin? Kuka sammutti taivaalta revontulet? Miksi virus sotkee tietokoneohjelman juuri, kun Joulupukki on löytämäisillään ratkaisun kiperään lahjapulmaan? Kuka tekee Joulupukille kiusaa ja miksi ihmeessä?<br> <br>Musiikki: Sotta ja Pytty<br>Suomi 1996<br>Kesto: 51 min<br>Ruotsinkielinen puhe, suomenkielinen tekstitys. <br>Ikäraja: S<br>Vapaa pääsy, mutta ryhmille pakollinen ennakkovaraus: Kultus.fi<br>Järj. Vuotalo</p>", "sv": "<p>Tecknad film som baserar sig på Mauri Kunnas bok med samma namn.</p><p>Dagarna innan Julafton anländer den sista säcken med brev till Tomten. Längst ner ligger ett brev som är lite äldre än alla andra, det är en teckning som föreställer, ja säg det. Medans den snuvige Tomtefar försöker lista ut vad det är teckningen föreställer så börjar underliga saker hända.<br> <br>Musik: Sås och Kopp<br>Utgivningsår: 1996<br>Längd: 51 min<br>Svenskt tal, finsk text. <br>Åldersgräns: T<br>Fritt deltagande men obligatorisk platsbokning för grupper via Kultus.fi<br>Arr. Nordhuset</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60641/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61395", "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:33/?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: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6141, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-22T14:13:48.463526Z", "last_modified_time": "2024-02-06T13:22:50.292693Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740309.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6141/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-22T14:13:48.425655Z", "last_modified_time": "2024-02-06T13:22:50.332760Z", "date_published": null, "start_time": "2023-12-19T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF76EC88B3944AC58DF6F08778025F9B/Maria_Baric_Company_Joulupallo_" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Maria Baric Company: Joulupallo – Malmitalon joulu" }, "short_description": { "fi": "Joulupallo on lumoava joulutarina lapsen omien vahvuuksien etsimisestä ja löytämisestä." }, "description": { "fi": "<p>Joulupallo on lumoava joulutarina lapsen omien vahvuuksien etsimisestä ja löytämisestä.</p><p>“Jokaisella meistä on jokin lahja, joka tekee meistä erityisen. Se pitää vain löytää.”</p><p>Esityksessä esiintyjä on läpinäkyvän, kuin lumisadepallon muotoisen esiintymislavan sisällä. Yleisö kerääntyy pallon ympärille kokemaan taianomaisen hetken tonttujen kanssa, tähtiin kirjoitettujen tarinoiden äärellä.</p><p><i>Neljä pientä tonttua.<br>Neljä erityistä lahjaa.<br>Neljä kaunista kohtaamista,<br>jotka johdattavat joulun tunnelmaan.</i></p><p>Esityksen aikana se lukuisin jouluvaloin koristeltu pallo syttyy tuikkimaan valoaan, ja muuttuu kaunista musiikkia soittavaksi joulupalloksi, tuoden mukanaan yleisöilleen pienen pieniä jouluyllätyksiä.</p><p>Lämminhenkinen koko perheen joulusatu joulunodotukseen.</p><p>Kesto: 30 minuuttia<br>Ikäsuositus: sopii kaikenikäisille</p><p>Joulupallo - Maria Baric Company:<br>Esiintyjä: Heidi Tiainen<br>Käsikirjoitus & ohjaus Maria Baric<br>Dramaturgia Nemanja Stojanovic<br>Musiikki Maria Baric, Saana Trygg-Nevanlinna<br>Nuket: Anu Pensola ja Aapo Repo<br>Kertoja äänitteellä Veikko Honkanen<br>Tuotanto Maria Baric Company/Kulttuurimylly</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61395/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61322", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5967, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-13T10:13:35.724485Z", "last_modified_time": "2024-02-06T13:22:50.200018Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739959.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5967/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-13T10:13:35.706657Z", "last_modified_time": "2024-02-06T13:22:50.239749Z", "date_published": null, "start_time": "2023-12-19T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/25DFD60D59B6F98D217AC432B8104C52/Malmitalon_yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/25DFD60D59B6F98D217AC432B8104C52/Allsang_pa_Malms_kulturhus", "en": "http://www.malmitalo.fi/en/events/event/25DFD60D59B6F98D217AC432B8104C52/Sing-alongs_at_Malmitalo" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Malmitalon yhteislaulut – Malmitalon joulu", "sv": "Allsång på Malms kulturhus", "en": "Sing-alongs at Malmitalo" }, "short_description": { "fi": "Malmitalon yhteislaulut – kuukauden paras tiistai! Joulukuussa kahdesti!", "sv": "Allsång på Malms kulturhus – den bästa tisdagen i månaden!", "en": "Sing-alongs at Malmitalo – best Tuesday of the month!" }, "description": { "fi": "<p>Malmitalon yhteislaulut – kuukauden paras tiistai! Joulukuussa kahdesti!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla saa Malmisalissa taas laulaa ihan sydämensä kyllyydestä!</p><p>Syksyn yhteislaulut järjestetään 12.9., 17.10., 14.11., 13.12. sekä 19.12. klo 17.00 Malmisalissa. Tervetuloa!</p>", "sv": "<p>Allsång på Malms kulturhus – den bästa tisdagen i månaden!</p><p>Nu får publiken åter sjunga för full hals i Malmsalen under ledning av Jukka Okkonen och Pauli Kainulainen!</p><p>Vårens allsång ordnas 12.9, 17.10, 14.11, 13.12 samt 19.12 kl. 17.00 i Malmsalen.</p><p>Välkommen!</p>", "en": "<p>Sing-alongs at Malmitalo – best Tuesday of the month!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, you can once again sing your heart out in Malmisali!</p><p>Spring sing-alongs are held in Malmisali on 12 September, 17 October, 14 November, and13 and 19 December at 17.00.</p><p>We look forward to seeing you!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61322/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60436", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4661, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:33.233577Z", "last_modified_time": "2024-02-06T13:22:50.008340Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730319.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4661/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:28:32.170927Z", "last_modified_time": "2024-02-06T13:22:50.045952Z", "date_published": null, "start_time": "2023-12-18T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A418840B2692B748F317B4C1ACA60AB7/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A418840B2692B748F317B4C1ACA60AB7/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/A418840B2692B748F317B4C1ACA60AB7/Let_us_sing_" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "short_description": { "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii Mari Kätkä.</p><p>Kesto: 1 t</p><p>Maksuttomat maanantait on 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>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</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>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</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>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60436/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61329", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5979, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-13T12:14:22.059506Z", "last_modified_time": "2024-02-06T13:22:49.441775Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739625.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5979/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-13T12:14:22.032104Z", "last_modified_time": "2024-02-06T13:22:49.483653Z", "date_published": null, "start_time": "2023-12-16T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/627B4700C0EEDBBF966381FDEE7CEDC6/Siina_ja_Taikaradio_Joulu_tarttuu_kapalaan" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Siina ja Taikaradio: Joulu tarttuu käpälään – Malmitalon joulu" }, "short_description": { "fi": "Joulun alla pihamaalta löytyy lumihangesta jälkiä. Kenelle ne kuuluvat?" }, "description": { "fi": "<p>Joulun alla pihamaalta löytyy lumihangesta jälkiä. Kenelle ne kuuluvat?</p><p>Kuka on käynyt kurkkimassa ikkunan takana? Onko se ollut tonttu?</p><p><b>Siina & Taikaradio -Orkesteri</b> kutsuu koko perheen mukaansa leikkimään ja laulamaan jouluisia sävelmiä.</p><p>Akustisen lämmin ja innostava musiikki ilahduttaa kuulijansa päivää niin perinteisten tuttujen kuin uudempienkin laululeikkien sävelin!</p><p>Kesto: n. 35 min</p><p>Vapaa pääsy, paikkoja rajoitetusti. Tervetuloa!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61329/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61328", "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:105/?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/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5971, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-13T11:14:20.191706Z", "last_modified_time": "2024-02-06T13:22:49.255895Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739650.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5971/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-11-13T11:14:20.170454Z", "last_modified_time": "2024-02-06T13:22:49.298274Z", "date_published": null, "start_time": "2023-12-16T12:00:00Z", "end_time": "2023-12-16T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/13CD2CAC119775BF9EE127C64BA14B0D/Joulupukki" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Joulupukki – Malmitalon joulu" }, "short_description": { "fi": "Tervetuloa tervehtimään pukkia!" }, "description": { "fi": "<p>Tervetuloa tervehtimään pukkia!</p><p>Joulupukki on tavattavissa Malmitalon aulassa lauantaina 16.12. klo 14-16.</p><p>Vapaa pääsy</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61328/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60914", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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: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:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 4655, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:28:26.349892Z", "last_modified_time": "2024-02-06T13:22:49.165550Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736557.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4655/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:28:26.206001Z", "last_modified_time": "2024-02-06T13:22:49.204786Z", "date_published": null, "start_time": "2023-12-16T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/951335582718C391C59B192707111871/DanceAbility_Lasten_inklusiivinen_tanssitunti_", "en": "http://www.annantalo.fi/en/events/event/951335582718C391C59B192707111871/DanceAbility_Children_s_inclusive_dance_class" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "DanceAbility: Lasten inklusiivinen tanssitunti", "en": "DanceAbility: Children's inclusive dance class" }, "short_description": { "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do." }, "description": { "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Tiedustelut ja ilmoittautumiset sähköpostitse osoitteeseen daf@danceabilityfinland.com.</p><p>www.danceabilityfinland.com/daf/</p>", "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com</p><p>https://www.danceabilityfinland.com/daf/</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60914/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 20940, "next": "