Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=329
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=330", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=328" }, "data": [ { "id": "kulke:64482", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152478, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T11:14:26.000178Z", "last_modified_time": "2024-09-19T11:14:26.000205Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757539.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152478/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T11:14:25.966237Z", "last_modified_time": "2024-12-20T01:14:04.113064Z", "date_published": null, "start_time": "2024-11-11T10:00:00Z", "end_time": "2024-11-11T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/DAC70E9187D9461FB862C8E19D6B0186/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/DAC70E9187D9461FB862C8E19D6B0186/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/DAC70E9187D9461FB862C8E19D6B0186/Moving_in_November_Soup_Talks" }, "location_extra_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "provider_contact_info": null, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Tiziano Cruz", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Tiziano Cruz", "en": "Moving in November: Soup Talks – Talk with Tiziano Cruz" }, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64482/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64621", "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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 152608, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-25T10:15:35.300218Z", "last_modified_time": "2024-09-25T10:15:35.300236Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758433.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152608/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T10:15:35.277578Z", "last_modified_time": "2024-12-20T01:14:04.025608Z", "date_published": null, "start_time": "2024-11-11T09: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/407E08F1118C1B070E0BE3199B0A2716/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/407E08F1118C1B070E0BE3199B0A2716/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/407E08F1118C1B070E0BE3199B0A2716/Musical_Art_Adventure" }, "location_extra_info": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "provider_contact_info": null, "name": { "fi": "Musiikillinen taideseikkailu – 1–2-vuotiaille", "sv": "Musikaliskt konstäventyr – för 1–2-åringar", "en": "Musical Art Adventure – for 1–2-year-olds" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Tärkeänä toiminnan keskiössä ovat leikki ja taiteen kokeminen: musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Ikäryhmä: 1–2-vuotiaat <br>Kieli: suomi<br>Ryhmässä on noin 12 osallistujaa kerralla, 8 lasta ja 8 aikuista. Tuokion pituus noin 30 min.</p><p>Varaa yksi paikka per lapsi+aikuinen.</p><p>Ma 30.9.klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari1 <br>Ma 14.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari2 <br>Ma 28.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari3<br>Ma 11.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari4<br>Ma 25.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari5</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 1–2-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 8 barn och 8 vuxna.</p><p>Anmälningslänkar:<br>Må 30.9, anmäl dig här: https://link.webropol.com/ep/muskari1 <br>Må 14.10, anmäl dig här: https://link.webropol.com/ep/muskari2 <br>Må 28.10, anmäl dig här: https://link.webropol.com/ep/muskari3<br>Må 11.11, anmäl dig här: https://link.webropol.com/ep/muskari4<br>Må 25.11, anmäl dig här: https://link.webropol.com/ep/muskari5</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Session length approx. 30 min <br>Age group: Ages 1–2<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p>Registration links:<br>Mon 30.9. https://link.webropol.com/ep/muskari1</p><p>Mon 14.10. https://link.webropol.com/ep/muskari2</p><p>Mon 28.10. https://link.webropol.com/ep/muskari3</p><p>Mon 11.11. https://link.webropol.com/ep/muskari4</p><p>Mon 25.11. https://link.webropol.com/ep/muskari5</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64621/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63434", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p29865/?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": 151572, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T15:13:44.732724Z", "last_modified_time": "2024-06-27T15:13:44.732743Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749899.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151572/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T15:13:44.708389Z", "last_modified_time": "2024-12-20T01:14:03.932394Z", "date_published": null, "start_time": "2024-11-11T08:15:00Z", "end_time": "2024-11-11T08:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B212A3E7B2E9E68906ED613AB07C92DF/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/B212A3E7B2E9E68906ED613AB07C92DF/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/B212A3E7B2E9E68906ED613AB07C92DF/Musical_Art_Adventure" }, "location_extra_info": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "provider_contact_info": null, "name": { "fi": "Musiikillinen taideseikkailu – vauvoille", "sv": "Musikaliskt konstäventyr – för bebisar", "en": "Musical Art Adventure – for babies" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 30 min <br>Ikäryhmä: 3–12 kk<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä on noin 12 osallistujaa, 6 lasta ja 6 aikuista.</p><p>Varaa yksi paikka per lapsi + aikuinen.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama. Konstäventyren ordnas två måndagar i månaden.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 3–12 mån.<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har ca 12 deltagare, 6 barn och 6 vuxna.<br>Boka en plats per barn + vuxen.</p><p><b>Anmälningslänkar:</b></p><p><b>Mån 2 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">anmäl dig här</u></a></p><p><b>Mån 19 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">anmäl dig här</u></a></p><p><b>Mån 30 september 2024 kl 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">anmäl dig här</u></a></p><p><b>Mån 14 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">anmäl dig här</u></a></p><p><b>Mån 28 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">anmäl dig här</u></a></p><p><b>Mån 11 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">anmäl dig här</u></a></p><p><b>Mån 25 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">anmäl dig här</u></a></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: https://link.webropol.com/s/Taideseikkailunjono</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 30 min <br>Age group: 3–12 months<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p>Mon 2 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">Register here</u></a></p><p>Mon 16 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">Register here</u></a></p><p>Mon 30 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">Register here</u></a></p><p>Mon 14 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">Register here</u></a></p><p>Mon 28 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">Register here</u></a></p><p>Mon 11 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">Register here</u></a></p><p>Mon 25 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">Register her</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63434/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63427", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": 151564, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T14:13:42.244575Z", "last_modified_time": "2024-06-27T14:13:42.244590Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749885.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151564/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T14:13:42.219471Z", "last_modified_time": "2024-12-20T01:14:03.841673Z", "date_published": null, "start_time": "2024-11-11T07:00:00Z", "end_time": "2024-11-11T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/255B6A54203361540BD9BD26691C6F68/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/255B6A54203361540BD9BD26691C6F68/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/255B6A54203361540BD9BD26691C6F68/Musical_Art_Adventure" }, "location_extra_info": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "provider_contact_info": null, "name": { "fi": "Musiikillinen taideseikkailu – 3–5-vuotiaille", "sv": "Musikaliskt konstäventyr – för 3–5-åringar", "en": "Musical Art Adventure – for 3–5-year-olds" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 45 min <br>Ikäryhmä: 3–5-vuotiaat<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 9–9.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Konstäventyren ordnas två måndagar i månaden.<br>Sessionens längd är ca 45 min <br>Åldersgrupp: 3–5-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p><b>Anmälningslänkar:</b><br>Mån 2 september, anmäl dig här: <u>https://link.webropol.com/ep/Musiikillinentaideseikkailu1</u><br>Mån 19 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/698DC8FF0E0DF334</u><br>Mån 30 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/391AFEC18D9C9840</u><br>Mån 14 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/0170408FEA72C33A</u><br>Mån 28 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/F00843A72BA8396A</u><br>Mån 11 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/D2F49BEB81810254</u><br>Mån 25 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE</u></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: <u>https://link.webropol.com/s/Taideseikkailunjono</u></p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 45 min <br>Age group: Ages 3–5<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p><b>Mon 2 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">Register here</u></a></p><p><b>Mon 16 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">Register here </u></a></p><p><b>Mon 30 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">Register here</u></a></p><p><b>Mon 14 October at 9 am to 9:45 am</b> <br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">Register here</u></a></p><p><b>Mon 28 October at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">Register here</u></a></p><p><b>Mon 11 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">Register here</u></a></p><p><b>Mon 25 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">Register here</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63427/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63908", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "39,50 €", "sv": "39,50 €", "en": "39,50 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/3662672", "sv": "https://www.lippu.fi/eventseries/3662672", "en": "https://www.lippu.fi/eventseries/3662672" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151320, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-30T12:13:07.393239Z", "last_modified_time": "2024-05-30T12:13:07.393266Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753480.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151320/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-30T12:13:07.347607Z", "last_modified_time": "2024-12-20T01:14:03.760441Z", "date_published": null, "start_time": "2024-11-10T17: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.savoyteatteri.fi/fi/tapahtumat/event/8BF9F45422AED7DFD12E8B04831B2FF5/Dad_Harmony_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/8BF9F45422AED7DFD12E8B04831B2FF5/Dad_Harmony_", "en": "http://www.savoyteatteri.fi/en/events/event/8BF9F45422AED7DFD12E8B04831B2FF5/Dad_Harmony_" }, "location_extra_info": null, "short_description": { "fi": "Isänpäiväkonsertti", "en": "Fathers' Day concert" }, "provider_contact_info": null, "name": { "fi": "Dad Harmony – Loppuunmyyty! / Sold out!", "sv": "Dad Harmony – Slut såld!", "en": "Dad Harmony – Sold out!" }, "description": { "fi": "<p>Isänpäiväkonsertti</p><p>Sosiaalisessa mediassa ilmiöksi noussut Dad Harmony lähtee talvella kiertueelle, jossa keskitytään joululauluihin päivitetyllä ohjelmistolla unohtamatta myös vanhoja suosikkeja. Tällä kiertueella Dad Harmony haluaa tuoda yleisön takaisin olohuoneeseensa kaikkine siihen liittyvine tunnelmallisuuksineen ja joululauluineen. Kiertueella kuullaan uusia kappaleita, parempaa laulua ja enemmän koreografiaa pienten lasten isille suoraan olohuoneesta.</p><p>Dad Harmony jatkaa menestyksekästä tietään sosiaalisessa mediassa julkaisemalla a cappella-lauluvideoita ja keräämällä miljoonia katsojia. DAD Harmony nimettiin viime vuonna Ruotsin suurimmaksi artistiksi TikTokissa. Heillä on tällä hetkellä noin 5 miljoonaa seuraajaa. Skellefteåsta kotoisin olevat isät tulivat kuuluisiksi yhdessä yössä, ja sittemmin he ovat vierailleet aamuohjelmissa ympäri maailmaa ja olivat hiljattain vieraana The Kelly Clarkson Show'ssa.</p><p>Ikäraja: S</p><p>Kesto n. 1 h 15 min, ei väliaikaa</p>", "sv": "<p>Social media-fenomenet Dad Harmony ger sig ut på en vinterturné med fokus på jullåtar med uppdaterad repertoar som även inkluderar gamla favoriter. Med denna turné vill Dad Harmony återigen ta publiken till sitt vardagsrum med allt vad det innebär av mys och skönsång. På turnén tillkommer det nya låtar, bättre sång och mer koreografi för småbarnspappor samt en ny dekor som skapar vardagsrumskänslan.</p><p>Dad Harmony fortsätter att göra succé på sociala medier, där de lägger ut klipp där de sjunger Acapella, och lockar miljontals tittare. DAD Harmony blev utsedda till Sveriges största artist på TikTok under 2023. De har idag en följarskara på ca. 5 miljoner användare. Papporna från Skellefteå blev kända över en natt, och har sedan dess uppmärksammats i morgonsoffor runt om i världen samt var nyligen gäster i The Kelly Clarkson Show.</p><p>Längd: Ca 1 h 15 min, utan paus.</p>", "en": "<p>Fathers' Day concert</p><p>A social media phenomenon, Dad Harmony will go on a tour this winter. The updated repertoire focuses on Christmas carols without forgetting the old favourites. On this tour, Dad Harmony wants to take the audience to their sitting room with a fitting atmosphere and all the Christmas carols that go with it. The tour includes new songs, better singing and more choreography for fathers of small children right from the sitting room.</p><p>Dad Harmony continues on their successful journey on social media by posting a cappella song videos that garner millions of views. Last year, Dad Harmony was named Sweden’s biggest artist on TikTok. They currently have around 5 million followers. Hailing from Skellefteå in Sweden, these fathers became famous overnight and have since appeared on morning shows around the world, most recently The Kelly Clarkson Show.</p><p>Suitable for all ages</p><p>Duration about 1 h 15 min.</p>" }, "provider": { "fi": "Ramasound Oy", "sv": "Ramasound Oy", "en": "Ramasound Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63908/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64478", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "17,80 € / 33,90 €", "en": "17,80 € / 33,90 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2024-3727774/", "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2024-3727774/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152393, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-12T07:14:27.902528Z", "last_modified_time": "2024-09-12T07:14:27.902542Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757521.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152393/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-12T07:14:27.887762Z", "last_modified_time": "2024-12-20T01:14:03.665460Z", "date_published": null, "start_time": "2024-11-10T13: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.caisa.fi/fi/tapahtumat/event/CA0DCF4A830E699705A6B13DE5AE440C/Liikkeella_marraskuussa_Tiziano_Cruz_Soliloquio_I_woke_up_and_hit_my_head_against_the_wall_", "en": "http://www.caisa.fi/en/events/event/CA0DCF4A830E699705A6B13DE5AE440C/Moving_in_November_Tiziano_Cruz_Soliloquio_I_woke_up_and_hit_my_head_against_the_wall_" }, "location_extra_info": null, "short_description": { "fi": "Esityksen ensimmäinen osa alkaa Kallion kirjaston edestä, josta kävelemme yhdessä seuraten paraatia noin 30 minuutin ajan teatterille.", "en": "The performance starts in front of the entrance of Kallio Library, where we will be walking together, following the parade for approx. 30 minutes to the theater." }, "provider_contact_info": null, "name": { "fi": "Liikkeellä marraskuussa – Tiziano Cruz: Soliloquio (I woke up and hit my head against the wall)", "en": "Moving in November – Tiziano Cruz: Soliloquio (I woke up and hit my head against the wall)" }, "description": { "fi": "<p>Esityksen ensimmäinen osa alkaa Kallion kirjaston edestä, josta kävelemme yhdessä seuraten paraatia noin 30 minuutin ajan teatterille.</p><p>Saavu Kallion kirjaston sisäänkäynnin eteen 15 minuuttia ennen esitystä. Esityksen toinen osa tapahtuu Caisassa, teatterin sisätiloissa ja kestää noin 50 minuuttia.</p><p>Nämä kaksi osaa muodostavat yhdessä kokonaisuuden. Jos sinulla on vaikeuksia kävelyn tai liikkumisen kanssa, ota meihin yhteyttä etukäteen. Mikäli sää on erittäin huono, annamme lisäohjeita. Huonon sään sattuessa tarkista ohjeistus Liikkeellä marraskuussa-festivaalin sosiaalisen median kanavista.</p><p>Tapaamispaikka: Esitys alkaa Kallion kirjaston sisäänkäynnin edestä klo 15, tule paikalle klo 14.45.</p><p><b>Tiziano Cruzin</b> teos Soliloquio (I woke up and hit my head against the wall) perustuu lapsuuden kaikuihin ja 58 kirjeeseen, jotka hän kirjoitti äidilleen Covid-19 pandemian aikana. Teos manaa esiin vuosisatoja kestäneen rodullisen ja institutionaalisen syrjinnän valaisemalla Pohjois-Argentiinan alkuperäisyhteisöjen defolklorisoituja kulttuureja, jossa Cruz syntyi ja kasvoi.</p><p>Kurkottamalla äitiään kohti yli maantieteellisten- ja luokkarajojen, Cruz käyttää kirjeitä lähtökohtana kritiikille, joka kohdistuu syrjinnän, syrjäyttämisen ja epäoikeudenmukaisuuden puolustajiin, unohtamatta taidemaailmaa.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 7.–17.11.2024. Osana festivaalia Cruz käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 11.11. klo 12 Caisassa.</p><p>Kesto: noin 1,5h<br>Kieli: Espanja<br>Tekstitykset: Englanti</p><p>Ohjaus, käsikirjoitus ja esitys: Tiziano Cruz<br>Dramaturgia ja ohjaajan assistentti: Rodrigo Herrera<br>Videosuunnittelu: Matías Gutiérrez<br>Äänisuunnittelu ja sävellys: Luciano Giambastiani<br>Valosuunnittelu: Matías Ramos<br>Alkuperäisen käsikirjoituksen oikoluku: Hugo Miranda Campos<br>Taide- ja pukusuunnittelu: Uriel Cistaro<br>Pukujen toteutus: Vega Cardozo Luisa Fernanda ja Luciana Iovane<br>Taiteellinen tuottaja ja graafinen suunnittelu: Luciana Iovane<br>Päätuotanto: Ulmus Gestión Cultural<br>Kansainväliset suhteet, tuotanto ja johtaminen: Cecilia Kuska & Rosa Studio.<br>Vierailu yhteistyössä: Caisa</p>", "en": "<p>The performance starts in front of the entrance of Kallio Library, where we will be walking together, following the parade for approx. 30 minutes to the theater.</p><p>Please be in front of the entrance of the Kallio library 15 minutes before the performance. The second part of the performance takes place inside the Caisa theater and lasts approx. 50 minutes.<br> <br>These two parts are integral to the overall experience. If you have any difficulty with walking, please contact us in advance. In the event of severe weather, further instructions will be provided. In case of bad weather, check Moving in November social media accounts.</p><p>Soliloquio (I woke up and hit my head against the wall) by <b>Tiziano Cruz</b> draws from the echoes of his childhood and the 58 letters he wrote to his mother during the Covid-19 pandemic. The performance seeks to exorcise centuries of abuse and erasure, shining a light on the defolklorized cultures of the indigenous communities of northern Argentina, where Cruz was born and raised.</p><p>By reaching his mother across boundaries of geography and class, Cruz uses the letters as the starting point for a critique of the powers that uphold discrimination, exclusion, and injustice, extending it into the art world.</p><p>The performance is part of Moving in November festival 7.-17.11.2024. As part of the festival, there will be an open discussion with Cruz and local host called Soup Talk on the 11th of November at noon in Caisa.</p><p>Duration: 1,5h<br>Language: Spanish<br>Subtitles: English</p><p>General director, playwright and performer: Tiziano Cruz<br>Dramaturg and director's assistant: Rodrigo Herrera<br>Filmmaker: Matías Gutiérrez<br>Sound designer and composer: Luciano Giambastiani<br>Lights design: Matías Ramos<br>Proofreading of original script: Hugo Miranda Campos<br>Art and costume design: Uriel Cistaro<br>Costumes realization: Vega Cardozo Luisa Fernanda and Luciana Iovane<br>Artistic producer and graphic design: Luciana Iovane<br>Executive production: Ulmus Gestión Cultural<br>International relations, production, and management: Cecilia Kuska & Rosa Studio.<br>Visit in collaboration: Caisa</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64478/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63863", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p29865/?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": false, "offer_price_groups": [], "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/annantalo/vauvakonsertti-annantalossa-3723035/", "sv": "https://www.lippu.fi/artist/annantalo/vauvakonsertti-annantalossa-3723035/", "en": "https://www.lippu.fi/artist/annantalo/vauvakonsertti-annantalossa-3723035/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152114, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-14T13:15:28.083349Z", "last_modified_time": "2024-08-14T13:15:28.083369Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753330.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152114/?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": "2024-08-14T12:14:55.061873Z", "last_modified_time": "2024-12-20T01:14:03.564781Z", "date_published": null, "start_time": "2024-11-10T12: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/BF81889B6A5D75B0027EFAFAADC3D5F7/Pori_Sinfoniettan_muusikot_Vauvakonsertti", "sv": "http://www.annantalo.fi/sv/evenemang/event/BF81889B6A5D75B0027EFAFAADC3D5F7/Pori_Sinfoniettas_musiker_Babykonsert", "en": "http://www.annantalo.fi/en/events/event/BF81889B6A5D75B0027EFAFAADC3D5F7/Musicians_of_Pori_Sinfonietta_Baby_Concert" }, "location_extra_info": null, "short_description": { "fi": "Ota oma viltti ja pehmolelu mukaan ja tule kuuntelemaan klassista konserttia, johon koko perhe on tervetullut! LOPPUUNMYYTY!", "sv": "Ta med dig en egen filt och ett gosedjur och kom och lyssna på en klassisk konsert för hela familjen! SLUTSOLD!", "en": "Bring your blanket and stuffed animal, and join us in listening to a classic concert for the whole family! SOLD OUT!" }, "provider_contact_info": null, "name": { "fi": "Pori Sinfoniettan muusikot: Vauvakonsertti", "sv": "Pori Sinfoniettas musiker: Babykonsert", "en": "Musicians of Pori Sinfonietta: Baby Concert" }, "description": { "fi": "<p>Ota oma viltti ja pehmolelu mukaan ja tule kuuntelemaan klassista konserttia, johon koko perhe on tervetullut! LOPPUUNMYYTY!</p><p>Annantalossa soi huilu-piano-duo, jonka kappaleet on valittu pienille korville.</p><p>Kesto 45 min<br>Ikä: 0–2 v<br>Liput: aikuisille 15 €, vauvat ja lapset ilmaiseksi</p>", "sv": "<p>Ta med dig en egen filt och ett gosedjur och kom och lyssna på en klassisk konsert för hela familjen! SLUTSOLD!</p><p>På Annegården uppträder en flöjt-piano-duo med musikstycken som har valts ut för små öron.</p><p>Längd 45 min.<br>Ålder: 0–2 år<br>Biljetter: vuxna 15 €, bebisar och barn gratis</p>", "en": "<p>Bring your blanket and stuffed animal, and join us in listening to a classic concert for the whole family! SOLD OUT!</p><p>A flute-and-piano duo will play a concert at Annantalo, the songs of which have been selected for smaller listeners.</p><p>Duration: 45 mins.<br>Age: 0–2 years<br>Tickets: adults €15, babies and children free</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63863/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64294", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": 151890, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T18:15:09.618182Z", "last_modified_time": "2024-07-25T18:15:09.618202Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751036.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151890/?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": "2024-07-25T18:15:09.578529Z", "last_modified_time": "2024-12-20T01:14:03.465911Z", "date_published": null, "start_time": "2024-11-10T12:00:00Z", "end_time": "2024-11-10T15: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/1DE2FE6EBE3434B2B66D6904312898FF/Isanpaiva_Lasten_Etnosoi_ssa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1DE2FE6EBE3434B2B66D6904312898FF/Farsdag_pa_Barnens_Etnosoi_", "en": "http://www.malmitalo.fi/en/events/event/1DE2FE6EBE3434B2B66D6904312898FF/Father_s_Day_at_Children_s_Etnosoi_" }, "location_extra_info": null, "short_description": { "fi": "Pääseekö kala naimisiin ja mitä se jatsi nyt olikaan? Näitä ja monia muita isoja ja pieniä kysymyksiä selvitellään konserteissa ja työpajoissa – tai vaikkapa askarrellen.", "sv": "Kan fiskar gifta sig och vad var jazz nu igen för något? Vi utforskar dessa och många andra stora och små frågor i konserter och workshoppar – eller exempelvis genom pyssel.", "en": "Can a fish get married, and what is “jazz” again? These and many other questions, both big and small, are handled in concerts and workshops – or even through crafting." }, "provider_contact_info": null, "name": { "fi": "Isänpäivä Lasten Etnosoi!ssa – Lasten Etnosoi!", "sv": "Farsdag på Barnens Etnosoi! – Barnens Etnosoi!", "en": "Father’s Day at Children’s Etnosoi! – Children’s Etnosoi!" }, "description": { "fi": "<p>Pääseekö kala naimisiin ja mitä se jatsi nyt olikaan? Näitä ja monia muita isoja ja pieniä kysymyksiä selvitellään konserteissa ja työpajoissa – tai vaikkapa askarrellen.</p><p>Isänpäivän ohjelmassa:</p><p>Jatsin riemua lapsille ja perheille:<br>Brasilialaisen Adriano Adewalen ja Sibelius-Akatemian Global Music -osaston muusikoiden konserteissa suunnataan mielikuvitusmatkoille maailman ääriin. Sami Kontolan ja Mikko Innasen lempeässä työpajassa saattaa selvitä jatsin syvin olemus.<br>Pieni sali klo 14.15 ja 15.45</p><p>Musiikki- ja tarinankerronta -työpaja:<br>Taiwanilaisessa tarinassa seikkailevat kala, karppi ja tulikärpänen. Musiikki- ja tarinankerrontatyöpajaan johdattavat Ni Jui Hsin ja Ayla Brinkmann.<br>Tanssisali klo 14.30 ja 16</p><p>Kulttuurienväliset Muumit - Näkymätön lapsi:<br>Etnosoi!-festivaali ja Taideyliopiston Sibelius-Akatemian Global Music -ohjelma ovat yhdistäneet voimansa luodakseen jännittävän ja innovatiivisen projektin, joka herättää eloon klassisen Muumi-tarinan elävän tarinankerronnan, visuaalisuuden ja musiikin avulla. Lopputuloksena on kokonaisvaltainen elämys yleisölle. Tämä ainutlaatuinen esitys keskittyy Muumi-tarinaan \"Näkymätön lapsi\", yhdistäen sen syvällisen sanoman taiteelliseen ilmaisuun tavalla, joka herättää mielikuvituksen ja luovuuden.<br>Malmisali klo 14 ja 15.30</p><p>Tarkista, mitä kaikkea muuta päivän aikana on tiedossa: https://www.etnosoi.fi/fi/etnosoi/lasten-etnosoi</p><p>Vapaa pääsy</p><p>Tapahtuman tuottavat yhdessä Maailman musiikin keskus ja Malmitalo<br>Yhteistyössä mukana Taideyliopiston Sibelius-Akatemian Global Music -osasto sekä Helsinki Jazz ry.</p>", "sv": "<p>Kan fiskar gifta sig och vad var jazz nu igen för något? Vi utforskar dessa och många andra stora och små frågor i konserter och workshoppar – eller exempelvis genom pyssel.</p><p>Farsdagsprogram:</p><p>Konserter av brasilianaren Adriano Adewale och musiker från Sibelius-Akademins avdelning för global musik tar dig med på fantasifulla resor till världens ände. I Sami Kontolas och Mikko Innanens varsamma workshop kan jazzens djupaste väsen möjligen avslöjas.</p><p>En fisk, en karp och en eldfluga är ute på äventyr i en taiwanesisk berättelse. Musik- och berättarworkshopen leds av Ni Jui Hsin och Ayla Brinkmann.</p><p>Kolla in dagens övriga program på etnosoi.fi.</p><p>Fritt inträde</p><p>Evenemanget produceras gemensamt av Maailman musiikin keskus och Malms kulturhus<br>I samarbetet deltar avdelningen för global musik vid Sibelius-Akademin och Helsinki Jazz ry.</p>", "en": "<p>Can a fish get married, and what is “jazz” again? These and many other questions, both big and small, are handled in concerts and workshops – or even through crafting.</p><p>Father’s Day programme:</p><p>Concerts by Brazilian Adriano Adewale and the Global Music Department of the Sibelius Academy are aimed at taking imaginary trips to the ends of the world. Sami Kontola and Mikko Innanen's gentle workshop may reveal the deepest essence of jazz.</p><p>In a Taiwanese story, a fish, a carp, and a firefly go on an adventure. The music and storytelling workshop will be led by Ni Jui Hsin and Ayla Brinkmann.</p><p>Check what else you can do during the day: etnosoi.fi.</p><p>Free admission</p><p>The event is jointly produced by the World Music Centre and Malmitalo Cultural Centre<br>In cooperation with the Global Music Department of the Sibelius Academy of the University of the Arts Helsinki and the Helsinki Jazz Association.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64294/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64893", "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:288/?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: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:p25966/?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": 152948, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-05T12:13:58.383619Z", "last_modified_time": "2024-11-05T12:13:58.383636Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761435.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152948/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-05T12:13:58.337730Z", "last_modified_time": "2024-12-20T01:14:03.379527Z", "date_published": null, "start_time": "2024-11-10T10:00:00Z", "end_time": "2024-11-10T13: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.stoa.fi/fi/tapahtumat/event/491B91C615EB71E4BDD9F5CFD7A4A19B/Venajankielinen_korutyopaja", "en": "http://www.stoa.fi/en/events/event/491B91C615EB71E4BDD9F5CFD7A4A19B/Russian-language_jewelry_workshop" }, "location_extra_info": null, "short_description": { "ru": "Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!" }, "provider_contact_info": null, "name": { "fi": "Venäjänkielinen korutyöpaja", "en": "Russian-language jewelry workshop" }, "description": { "fi": "<p>Tervetuloa luovaan koruvalmistusworkshopiin Stoan kulttuurikeskukseen!<br> <br>Kutsumme sinut oppimaan tekemään yksinkertaisen mutta ainutlaatuisen choker-kaulakorun käyttäen luonnonkiviä, erilaisia helmiä ja korunosia. Yhdessä luomme korun, joka heijastaa persoonallisuuttasi ja tyyliäsi. Tämä on upea tilaisuus kehittää luovuutta, rentoutua ja tavata uusia ihmisiä! Työpaja on venäjänkielinen.<br> <br>Työpajaa järjestetään kolmena eri päivänä. Voit ilmoittautua yhdelle seuraavista päivistä:<br>Su 10.11, klo 12:00–15:00<br>Ti 12.11, klo 12:00–15:00<br>La 23.11, klo 14:00–17:00<br>Työpaja on maksuton, ja osallistujamäärä on rajoitettu 10 henkilöön per työpaja.<br> <br>Ilmoittautuminen sähköpostitse – ilmoitathan samalla, mihin päivään haluat osallistua: maria.bolshedonova@gmail.com.<br> <br>Työpajan vetäjästä:<br>Maria Bolshedonova on helsinkiläinen suunnittelija, jolla on laaja kokemus tekstiili- ja korusuunnittelusta. Hän järjestää luovia työpajoja ja kehittää omaa brändiään, Wild Fern Design.</p>", "ru": "<p>Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!</p><p>Приглашаем вас на трехчасовой мастер-класс, где вы научитесь создавать простой, но уникальный чокер, используя натуральные камни, различные бусины и фурнитуру. Вместе мы создадим украшение, которое отразит вашу индивидуальность и стиль. Это прекрасная возможность проявить творческий потенциал, расслабиться и найти новые знакомства!<br> <br>Мастер-класс проводится в три разных дня. Вы можете записаться на один из следующих дней:<br>Вс, 10.11, с 12:00 до 15:00<br>Вт, 12.11, с 12:00 до 15:00<br>Сб, 23.11, с 14:00 до 17:00<br> <br>Участие в мастер-классе бесплатно, количество мест ограничено — максимум 10 участников на каждую сессию.<br> <br>Для регистрации, пожалуйста, отправьте письмо на электронную почту и укажите дату, на которую хотите записаться: maria.bolshedonova@gmail.com<br> <br>О ведущей:<br>Мария Большедонова — дизайнер из Хельсинки с большим опытом в области текстильного и ювелирного дизайна. Она проводит творческие мастер-классы и развивает свой бренд Wild Fern Design.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64893/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64481", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152477, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T09:13:32.134081Z", "last_modified_time": "2024-09-19T09:13:32.134094Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757537.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152477/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T09:13:32.121667Z", "last_modified_time": "2024-12-20T01:14:03.297164Z", "date_published": null, "start_time": "2024-11-10T10:00:00Z", "end_time": "2024-11-10T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/112FAD6F1D0A6A2F87E382745D975A09/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/112FAD6F1D0A6A2F87E382745D975A09/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/112FAD6F1D0A6A2F87E382745D975A09/Moving_in_November_Soup_Talks" }, "location_extra_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "provider_contact_info": null, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Ola Maciejewska & team", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Ola Maciejewska & team", "en": "Moving in November: Soup Talks – Talk with Ola Maciejewska & team" }, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64481/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63862", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p29865/?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": false, "offer_price_groups": [], "price": { "fi": "15 €", "sv": "15 €", "en": "15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/annantalo/vauvakonsertti-annantalossa-3723035/", "sv": "https://www.lippu.fi/artist/annantalo/vauvakonsertti-annantalossa-3723035/", "en": "https://www.lippu.fi/artist/annantalo/vauvakonsertti-annantalossa-3723035/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152110, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-14T12:14:54.931865Z", "last_modified_time": "2024-08-14T12:14:54.931882Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753329.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152110/?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": "2024-08-14T12:14:54.899681Z", "last_modified_time": "2024-12-20T01:14:03.208194Z", "date_published": null, "start_time": "2024-11-10T09: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/9396EA436109BF5F679708598DA18EC9/Pori_Sinfoniettan_muusikot_Vauvakonsertti", "sv": "http://www.annantalo.fi/sv/evenemang/event/9396EA436109BF5F679708598DA18EC9/Pori_Sinfoniettas_musiker_Babykonsert", "en": "http://www.annantalo.fi/en/events/event/9396EA436109BF5F679708598DA18EC9/Musicians_of_Pori_Sinfonietta_Baby_Concert" }, "location_extra_info": null, "short_description": { "fi": "Ota oma viltti ja pehmolelu mukaan ja tule kuuntelemaan klassista konserttia, johon koko perhe on tervetullut! LOPPUUNMYYTY!", "sv": "Ta med dig en egen filt och ett gosedjur och kom och lyssna på en klassisk konsert för hela familjen! SLUTSOLD!", "en": "Bring your blanket and stuffed animal, and join us in listening to a classic concert for the whole family! SOLD OUT!" }, "provider_contact_info": null, "name": { "fi": "Pori Sinfoniettan muusikot: Vauvakonsertti", "sv": "Pori Sinfoniettas musiker: Babykonsert", "en": "Musicians of Pori Sinfonietta: Baby Concert" }, "description": { "fi": "<p>Ota oma viltti ja pehmolelu mukaan ja tule kuuntelemaan klassista konserttia, johon koko perhe on tervetullut! LOPPUUNMYYTY!</p><p>Annantalossa soi huilu-piano-duo, jonka kappaleet on valittu pienille korville.</p><p>Kesto 45 min<br>Ikä: 0–2 v<br>Liput: aikuisille 15 €, vauvat ja lapset ilmaiseksi</p>", "sv": "<p>Ta med dig en egen filt och ett gosedjur och kom och lyssna på en klassisk konsert för hela familjen! SLUTSOLD!</p><p>På Annegården uppträder en flöjt-piano-duo med musikstycken som har valts ut för små öron.</p><p>Längd 45 min.<br>Ålder: 0–2 år<br>Biljetter: vuxna 15 €, bebisar och barn gratis</p>", "en": "<p>Bring your blanket and stuffed animal, and join us in listening to a classic concert for the whole family! SOLD OUT!</p><p>A flute-and-piano duo will play a concert at Annantalo, the songs of which have been selected for smaller listeners.</p><p>Duration: 45 mins.<br>Age: 0–2 years<br>Tickets: adults €15, babies and children free</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63862/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64266", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-maestro-bettina-sakari-kukko-3722652/", "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-maestro-bettina-sakari-kukko-3722652/", "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-maestro-bettina-sakari-kukko-3722652/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151829, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-24T15:13:20.549021Z", "last_modified_time": "2024-07-24T15:13:20.549036Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749543.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151829/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-24T15:13:20.523770Z", "last_modified_time": "2024-12-20T01:14:03.106330Z", "date_published": null, "start_time": "2024-11-09T16: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/39FFAB70AF250B51742A374931D39DFB/Maestro_Bettina_Sakari_Kukko_ja_ystavia_elaman_varrelta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/39FFAB70AF250B51742A374931D39DFB/Maestro_Bettina_Sakari_Kukko_och_mojligen_nagra_vanner_fran_livets_stig", "en": "http://www.vuotalo.fi/en/events/event/39FFAB70AF250B51742A374931D39DFB/Maestro_Bettina_Sakari_Kukko" }, "location_extra_info": null, "short_description": { "fi": "Toimittaja Bettina Sågbom haastattelee Sakari Kukkoa ruotsiksi hänen elämästään ja urastaan. Välillä Kukko esittää elämänsä tärkeimmät biisit.", "sv": "Journalisten Bettina Sågbom intervjuar Sakari Kukko på svenska om hans liv och karriär. Nu och då framför Kukko de viktigaste låtarna i sitt liv.", "en": "Journalist Bettina Sågbom interviews Sakari Kukko in Swedish about his life and career. In between, Kukko performs the most important songs of his life." }, "provider_contact_info": null, "name": { "fi": "Maestro & Bettina: Sakari Kukko ja ystäviä elämän varrelta – Klubb Ankdamm / Svenska Veckan", "sv": "Maestro & Bettina: Sakari Kukko och möjligen några vänner från livets stig – Klubb Ankdamm / Svenska Veckan", "en": "Maestro & Bettina: Sakari Kukko – Klubb Ankdamm / Svenska Veckan" }, "description": { "fi": "<p>Toimittaja Bettina Sågbom haastattelee Sakari Kukkoa ruotsiksi hänen elämästään ja urastaan. Välillä Kukko esittää elämänsä tärkeimmät biisit.</p><p>Jyrki Sakari Kukko on suomalainen muusikko, joka säveltää ja soittaa muun muassa saksofonia ja huilua. Kukko tunnetaan Piirpauke-yhtyeestä ja sen etnovaikutteisesta musiikista. Kukko on myös Punainen Lanka -yhtyeen perustajajäsen, ja häntä kuullaan mm. Amorphiksen ja Kingston Wallin levyillä.</p><p>Elina Saksalan kirjoittama Kukon elämäkerta Sakari Kukko – kaiken maailman pelimanni julkaistiin elokuussa 2017 (Like).</p><p>Klubi-ilta, tarjoiluista vastaa Café Pokkari<br>Kesto: n. 120 min. sis. väliaika<br>Kielet: suomi, ruotsi<br>Liput 20 € / 15 €, Lippu.fi ja ovelta lippuautomaatilta. <br>Järj. Rauhala Rocks yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Journalisten Bettina Sågbom intervjuar Sakari Kukko på svenska om hans liv och karriär. Nu och då framför Kukko de viktigaste låtarna i sitt liv.</p><p>Jyrki Sakari Kukko är en finländsk musiker som komponerar och spelar bland annat saxofon och flöjt. Kukko är känd från bandet Piirpauke och deras etnoinspirerade musik. Kukko är också en av bandet Punainen Lankas grundare, och kan höras på bland annat Amorphis och Kingston Walls album.</p><p>Kukkos biografi av Elina Saksala, Sakari Kukko – kaiken maailman pelimanni publicerades i augusti 2017 (Like).</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari<br>Längd: ca 120 min. inkl. paus<br>Språk: svenska, finska <br>Biljetter: 20 € / 15 € via Lippu.fi eller från biljettautomaten vid dörren<br>Arr: Rauhala Rocks i samarbete med Nordhuset.</p>", "en": "<p>Journalist Bettina Sågbom interviews Sakari Kukko in Swedish about his life and career. In between, Kukko performs the most important songs of his life.</p><p>Jyrki Sakari Kukko is a Finnish musician who composes and plays saxophone and flute, among others. Kukko is known for the Piirpauke band and its ethnically influenced music. Kukko is also a founding member of Punainen Lanka, and he can be heard on the albums of Amorphis and Kingston Wall, among others.</p><p>Kukko's biography, Sakari Kukko – kaiken maailman pelimanni, written by Elina Saksala, was published in August 2017 (Like).</p><p>Club night, refreshments provided by Café Pokkari<br>Duration: apx. 120 min. with intermission<br>Languages: Finnish, Swedish<br>Tickets: 20 € / 15 € from Lippu.fi and also from the ticket machine at the door<br>Org. Rauhala Rocks in cooperation with Vuotalo.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64266/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64477", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "17,80 € / 33,90 €", "en": "17,80 € / 33,90 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2024-3727774/", "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2024-3727774/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152392, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-12T07:14:27.657276Z", "last_modified_time": "2024-09-12T07:14:27.657295Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757519.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152392/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-12T07:14:27.626149Z", "last_modified_time": "2024-12-20T01:14:02.901736Z", "date_published": null, "start_time": "2024-11-09T13: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.caisa.fi/fi/tapahtumat/event/A945437E7CE568055D56E5662EF0A4F9/Liikkeella_marraskuussa_Tiziano_Cruz_Soliloquio_I_woke_up_and_hit_my_head_against_the_wall_", "en": "http://www.caisa.fi/en/events/event/A945437E7CE568055D56E5662EF0A4F9/Moving_in_November_Tiziano_Cruz_Soliloquio_I_woke_up_and_hit_my_head_against_the_wall_" }, "location_extra_info": null, "short_description": { "fi": "Esityksen ensimmäinen osa alkaa Kallion kirjaston edestä, josta kävelemme yhdessä seuraten paraatia noin 30 minuutin ajan teatterille.", "en": "The performance starts in front of the entrance of Kallio Library, where we will be walking together, following the parade for approx. 30 minutes to the theater." }, "provider_contact_info": null, "name": { "fi": "Liikkeellä marraskuussa – Tiziano Cruz: Soliloquio (I woke up and hit my head against the wall)", "en": "Moving in November – Tiziano Cruz: Soliloquio (I woke up and hit my head against the wall)" }, "description": { "fi": "<p>Esityksen ensimmäinen osa alkaa Kallion kirjaston edestä, josta kävelemme yhdessä seuraten paraatia noin 30 minuutin ajan teatterille.</p><p>Saavu Kallion kirjaston sisäänkäynnin eteen 15 minuuttia ennen esitystä. Esityksen toinen osa tapahtuu Caisassa, teatterin sisätiloissa ja kestää noin 50 minuuttia.</p><p>Nämä kaksi osaa muodostavat yhdessä kokonaisuuden. Jos sinulla on vaikeuksia kävelyn tai liikkumisen kanssa, ota meihin yhteyttä etukäteen. Mikäli sää on erittäin huono, annamme lisäohjeita. Huonon sään sattuessa tarkista ohjeistus Liikkeellä marraskuussa-festivaalin sosiaalisen median kanavista.</p><p>Tapaamispaikka: Esitys alkaa Kallion kirjaston sisäänkäynnin edestä klo 15, tule paikalle klo 14.45.</p><p><b>Tiziano Cruzin</b> teos Soliloquio (I woke up and hit my head against the wall) perustuu lapsuuden kaikuihin ja 58 kirjeeseen, jotka hän kirjoitti äidilleen Covid-19 pandemian aikana. Teos manaa esiin vuosisatoja kestäneen rodullisen ja institutionaalisen syrjinnän valaisemalla Pohjois-Argentiinan alkuperäisyhteisöjen defolklorisoituja kulttuureja, jossa Cruz syntyi ja kasvoi.</p><p>Kurkottamalla äitiään kohti yli maantieteellisten- ja luokkarajojen, Cruz käyttää kirjeitä lähtökohtana kritiikille, joka kohdistuu syrjinnän, syrjäyttämisen ja epäoikeudenmukaisuuden puolustajiin, unohtamatta taidemaailmaa.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 7.–17.11.2024. Osana festivaalia Cruz käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 11.11. klo 12 Caisassa.</p><p>Kesto: noin 1,5h<br>Kieli: Espanja<br>Tekstitykset: Englanti</p><p>Ohjaus, käsikirjoitus ja esitys: Tiziano Cruz<br>Dramaturgia ja ohjaajan assistentti: Rodrigo Herrera<br>Videosuunnittelu: Matías Gutiérrez<br>Äänisuunnittelu ja sävellys: Luciano Giambastiani<br>Valosuunnittelu: Matías Ramos<br>Alkuperäisen käsikirjoituksen oikoluku: Hugo Miranda Campos<br>Taide- ja pukusuunnittelu: Uriel Cistaro<br>Pukujen toteutus: Vega Cardozo Luisa Fernanda ja Luciana Iovane<br>Taiteellinen tuottaja ja graafinen suunnittelu: Luciana Iovane<br>Päätuotanto: Ulmus Gestión Cultural<br>Kansainväliset suhteet, tuotanto ja johtaminen: Cecilia Kuska & Rosa Studio.<br>Vierailu yhteistyössä: Caisa</p>", "en": "<p>The performance starts in front of the entrance of Kallio Library, where we will be walking together, following the parade for approx. 30 minutes to the theater.</p><p>Please be in front of the entrance of the Kallio library 15 minutes before the performance. The second part of the performance takes place inside the Caisa theater and lasts approx. 50 minutes.<br> <br>These two parts are integral to the overall experience. If you have any difficulty with walking, please contact us in advance. In the event of severe weather, further instructions will be provided. In case of bad weather, check Moving in November social media accounts.</p><p>Soliloquio (I woke up and hit my head against the wall) by <b>Tiziano Cruz</b> draws from the echoes of his childhood and the 58 letters he wrote to his mother during the Covid-19 pandemic. The performance seeks to exorcise centuries of abuse and erasure, shining a light on the defolklorized cultures of the indigenous communities of northern Argentina, where Cruz was born and raised.</p><p>By reaching his mother across boundaries of geography and class, Cruz uses the letters as the starting point for a critique of the powers that uphold discrimination, exclusion, and injustice, extending it into the art world.</p><p>The performance is part of Moving in November festival 7.-17.11.2024. As part of the festival, there will be an open discussion with Cruz and local host called Soup Talk on the 11th of November at noon in Caisa.</p><p>Duration: 1,5h<br>Language: Spanish<br>Subtitles: English</p><p>General director, playwright and performer: Tiziano Cruz<br>Dramaturg and director's assistant: Rodrigo Herrera<br>Filmmaker: Matías Gutiérrez<br>Sound designer and composer: Luciano Giambastiani<br>Lights design: Matías Ramos<br>Proofreading of original script: Hugo Miranda Campos<br>Art and costume design: Uriel Cistaro<br>Costumes realization: Vega Cardozo Luisa Fernanda and Luciana Iovane<br>Artistic producer and graphic design: Luciana Iovane<br>Executive production: Ulmus Gestión Cultural<br>International relations, production, and management: Cecilia Kuska & Rosa Studio.<br>Visit in collaboration: Caisa</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64477/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63844", "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:29/?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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € /15 €", "sv": "20 € /15 €", "en": "20 € /15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/rautavaara-ihminen-ja-ikoni-3642108/", "sv": "https://www.lippu.fi/eventseries/rautavaara-ihminen-ja-ikoni-3642108/", "en": "https://www.lippu.fi/eventseries/rautavaara-ihminen-ja-ikoni-3642108/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151918, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T08:14:33.899173Z", "last_modified_time": "2024-07-26T08:14:33.899191Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753210.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151918/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T08:14:33.872501Z", "last_modified_time": "2024-12-20T01:14:02.795461Z", "date_published": null, "start_time": "2024-11-09T13: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/BDF2E3D767A34B6578B3107DC4840759/Rautavaara_ihminen_ja_ikoni", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BDF2E3D767A34B6578B3107DC4840759/Rautavaara_manniskan_och_ikonen", "en": "http://www.kanneltalo.fi/en/events/event/BDF2E3D767A34B6578B3107DC4840759/Rautavaara_an_icon_of_a_man" }, "location_extra_info": null, "short_description": { "fi": "Rautavaara kertoo Tapio Rautavaaran elämäntarinan köyhästä, isättömästä työläispojasta rakastetuksi muusikoksi, olympiavoittajaksi ja koko kansan sankariksi.", "sv": "Rautavaara återger Tapio Rautavaaras livshistoria, från en fattig, faderlös arbetarklasspojke till en älskad musiker, olympisk mästare och nationell hjälte.", "en": "Rautavaara tells the life story of Tapio Rautavaara, from a poor, fatherless working-class boy to a beloved musician, Olympic champion and national hero." }, "provider_contact_info": null, "name": { "fi": "Rautavaara – ihminen ja ikoni – esitys ja keskustelu", "sv": "Rautavaara – människan och ikonen – Diskussion efter teaterföreställningen", "en": "Rautavaara – an icon of a man – Q&A after the show" }, "description": { "fi": "<p>Rautavaara kertoo Tapio Rautavaaran elämäntarinan köyhästä, isättömästä työläispojasta rakastetuksi muusikoksi, olympiavoittajaksi ja koko kansan sankariksi.</p><p>Esitys on tarina legendasta nimeltä ”Rautavaara”. Samalla se kysyy myös ajankohtaisia kysymyksiä: mitä tarkoittaa, jos kansa jakautuu kahtia, miten elää kahtiajaon kanssa, ja miten purkaa sitä? Rautavaara oli köyhän työläisäidin lapsi, joka sai kuulla olevansa ”punakaartilaisen kakara”. Vanhempana hän torjui jyrkät poliittiset jakolinjat ja halusi esiintyä kaikille. Hänestä tuli koko kansan reissumies, kaikkien Tapsa!</p><p>Esitys on monologi, jossa kuullaan Tapio Rautavaaran rakastettuja kappaleita. Rautavaarana nähdään näytelmän kirjoittanut <b>Timo Ruuskanen</b>, palkittu laulava näyttelijä, joka tunnetaan muun muassa Red Nose Companyn perustajajäsenenä. Ruuskanen ihailee Rautavaaran musiikkia, ja on 188 senttimetrisenä tismalleen saman pituinen kuin esikuvansa.</p><p>Työryhmä<br>Käsikirjoitus: Timo Ruuskanen<br>Ohjaus ja dramaturginen apu: Olka Horila<br>Valosuunnittelu: Jukka Kuronen<br>Kiertuevalot: Jere Kolehmainen<br>Äänisuunnittelu: Kari Paukola<br>Tarpeisto: Karita Fallström-Autio<br>Tuotanto: Riihimäen Teatteri, Teatteri Avoimet Ovet ja Timo Ruuskanen</p><p>Kesto n. 1 t 50 min, sis. väliajan<br>Kieli: suomi</p>", "sv": "<p>Rautavaara återger Tapio Rautavaaras livshistoria, från en fattig, faderlös arbetarklasspojke till en älskad musiker, olympisk mästare och nationell hjälte.</p><p>Föreställningen är berättelsen om en legend vid namnet \"Rautavaara\". Samtidigt ställer den också aktuella frågor: vad innebär det att en nation är splittrad, hur kan man leva med splittringen, och hur kan man avveckla den? Rautavaara var barn till en fattig arbetarklassmamma som fick höra att hon var en \"rödgardistunge\". Som vuxen tog han avstånd från skarpa politiska skiljelinjer och ville uppträda för alla. Han blev hela nationens vagabond, allas Tapsa!</p><p>Föreställningen är en monolog där vi får höra Tapio Rautavaaras älskade sånger. Rautavaara spelas av pjäsens författare, den prisbelönte sångaren och skådespelaren <b>Timo Ruuskanen</b>, som bland annat är känd som en av grundarna av Red Nose Company. Ruuskanen beundrar Rautavaaras musik, och med sina 188 centimeter är han exakt lika lång som sin förebild.</p><p>Arbetsgrupp<br>Manus: Timo Ruuskanen<br>Regi och dramaturgisk assistans: Olka Horila<br>Ljusdesign: Jukka Kuronen<br>Turnébelysning: Jere Kolehmainen<br>Ljuddesign: Kari Paukola<br>Rekvisita: Karita Fallström-Autio<br>Produktion: Riihimäen Teatteri, Teatteri Avoimet Ovet och Timo Ruuskanen</p>", "en": "<p>Rautavaara tells the life story of Tapio Rautavaara, from a poor, fatherless working-class boy to a beloved musician, Olympic champion and national hero.</p><p>This show is the story of a legend called \"Rautavaara\". At the same time, it also asks questions about today: what does it mean if a nation is split in two, how do you deal with the division, and how do you bridge the gap? Rautavaara was the child of a poor working mother who had to constantly hear about being “a commie brat”. As a parent, he rejected sharp political divisions and wanted to perform for everyone. He became the whole nation’s travelling man, everyone’s Tapsa!</p><p>The performance is a monologue featuring Tapio Rautavaara's beloved songs. The role of Rautavaara is played by playwright Timo Ruuskanen, an award-winning singer-actor who is known, among other things, as a founding member of Red Nose Company. Ruuskanen admires Rautavaara's music, and is exactly the same height as his role model at 188 centimetres.</p><p>Working group<br>Script: Timo Ruuskanen<br>Guidance and dramaturgical assistance: Olka Horila<br>Lighting: Jukka Kuronen<br>Tour lights: Jere Kolehmainen<br>Sound design: Kari Paukola<br>Equipment: Karita Fallström-Autio<br>Production: Riihimäki Theatre, Open Doors Theatre and Timo Ruuskanen</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63844/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64480", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152476, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-19T09:13:31.962799Z", "last_modified_time": "2024-09-19T09:13:31.962811Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757535.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152476/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-19T09:13:31.950484Z", "last_modified_time": "2024-12-20T01:14:02.700582Z", "date_published": null, "start_time": "2024-11-09T10:00:00Z", "end_time": "2024-11-09T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3987684592533747475BE963023DDBCD/Liikkeella_marraskuussa_Soup_Talks", "sv": "http://www.caisa.fi/sv/evenemang/event/3987684592533747475BE963023DDBCD/Liikkeella_marraskuussa_Soup_Talks", "en": "http://www.caisa.fi/en/events/event/3987684592533747475BE963023DDBCD/Moving_in_November_Soup_Talks" }, "location_extra_info": null, "short_description": { "fi": "Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.", "sv": "Soup Talks är en serie diskussioner och möten med festivalens konstnärer.", "en": "Soup Talks is a series of informal conversations with the artists presenting their work during the festival." }, "provider_contact_info": null, "name": { "fi": "Liikkeellä marraskuussa: Soup Talks – Talk with Mette Edvardsen", "sv": "Liikkeellä marraskuussa: Soup Talks – Talk with Mette Edvardsen", "en": "Moving in November: Soup Talks – Talk with Mette Edvardsen" }, "description": { "fi": "<p>Soup Talks on sarja keskusteluja ja kohtaamisia festivaalin taiteilijoiden kanssa.</p><p>Keskustelusarja kulkee festivaalin läpi tuoden ihmisiä yhteen. Toivotamme teidät tervetulleiksi suuren pöydän ympärille, lämpimän keiton äärelle. Kutsumme yleisön osallistumaan, kuuntelemaan, esittämään kysymyksiä, keskustelemaan. Jokaisen keskustelun moderoi yksi paikallinen taiteilija.</p><p>Vapaa pääsy, vaatii ennakkoilmoittautumisen.</p><p>Tapahtumaan ilmoittaudutaan osoitteessa: https://fienta.com/fi/moving-in-november-soup-talk</p>", "sv": "<p>Soup Talks är en serie diskussioner och möten med festivalens konstnärer.</p><p>Diskussionsserien pågår under hela festivalen och för människor samman. Välkommen att ta plats runt ett stort bord, där vi serverar en varm soppa. Vi bjuder in publiken att delta, lyssna, ställa frågor och diskutera. Varje debatt modereras av en lokal konstnär.</p><p>Anmäl dig till eventet på: https://fienta.com/fi/moving-in-november-soup-talk</p>", "en": "<p>Soup Talks is a series of informal conversations with the artists presenting their work during the festival.</p><p>The talks form a discursive line that goes through the festival and brings people together. We want to welcome the audience and the artists around a big table with a bowl of warm soup. Everybody is invited to join in, to listen, to pose questions and to take part in the discussions. Each of the talks will be hosted by an artist based in the Helsinki area.</p><p>Free admission, registration required in advance.</p><p>Register for the event through this link: https://fienta.com/fi/moving-in-november-soup-talk</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64948", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?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": 152987, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-07T14:14:50.716141Z", "last_modified_time": "2024-11-07T14:14:50.716162Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761443.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152987/?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": "2024-11-07T14:14:50.664673Z", "last_modified_time": "2024-12-20T01:14:02.611885Z", "date_published": null, "start_time": "2024-11-09T09:00:00Z", "end_time": "2024-11-09T12: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/C0DDAE898C623B02281D198B108AF613/Annantalon_taidelauantai_Haamujen_jaljilla", "sv": "http://www.annantalo.fi/sv/evenemang/event/C0DDAE898C623B02281D198B108AF613/Annegardens_konstlordag_Spokjakt", "en": "http://www.annantalo.fi/en/events/event/C0DDAE898C623B02281D198B108AF613/Annantalo_Art_Saturday_Ghost-hunting" }, "location_extra_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.", "en": "At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer." }, "provider_contact_info": null, "name": { "fi": "Annantalon taidelauantai: Haamujen jäljillä", "sv": "Annegårdens konstlördag: Spökjakt", "en": "Annantalo Art Saturday: Ghost-hunting" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p><b>Haamujen jäljillä</b></p><p>Tiedätkö, että Annantalo on hyvin vanha? Se on rakennettu kansakouluksi vuonna 1886 ja on ajan saatossa toiminut myös sotilassairaalana ennen kun siitä tuli lasten ja nuorten taidekeskus Annantalo. Onkohan 138-vuoden aikana taloon unohtunut tai jäänyt elämään jotakin kummaa? Tervetuloa avoimeen non-stop pajaan jossa pääset etsimään, haistelemaan ja koskettelemaan talon haamuja. Luomme myös uusia aaveita Annantalon seinille lentelemään.</p><p>Työpajassa puhutaan suomena ja englantia. Osallistua voi myös ilman ko. kieliä. Työpajaa ohjaavat Annantalon taidekasvattajat.</p><p>Osallistumiseen ei tarvita ennakkotaitoja eikä täydellistä suomen kielen taitoa. Annantalon taidelauantai on maksuton.Tarjolla kuulosuojaimia ja muita aistiapuvälineitä. Lisäksi käytössä on erillinen hiljainen tila.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.</p><p><b>Spökjakt</b></p><p>Visste du att Annegården är ett mycket gammalt hus? Det byggdes 1886 som folkskola och har efter det också använts som militärsjukhus innan det blev Annegårdens konstcentrum för barn och unga. Månne det finns någonting som spökar kvar efter alla dessa 138 år?</p><p>Välkommen till en öppen nonstop-workshop där du kan leta efter, snusa på och röra vid husets spöken. Vi skapar också nya spöken som får sväva på Annegårdens väggar.</p><p>Workshoppens språk är finska och engelska. Det går också att delta även om du inte talar dessa språk.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Inga förkunskaper och ingen anmälan krävs för att delta. Annegårdens konstlördag är avgiftsfri. Workshopparnas språk varierar, men inga kunskaper i finska krävs för att delta. Hörselskydd och andra hjälpmedel finns tillgängliga för barn med särskilda behov. Det finns också ett separat tyst utrymme.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer.</p><p><b>Ghost-hunting</b></p><p>Did you know that Annantalo is very old? It was built as a public school in 1886 and over the years, it has also served as a military hospital before it became the Annantalo Art Centre for Children and Young People. Do you ever wonder if something strange has been forgotten or left alive in the building over the last 138 years?</p><p>Join this open non-stop workshop where you can find, smell and touch the ghosts of the building. We also create new ghosts to haunt the walls of Annantalo.</p><p>This workshop is held in Finnish and English. You can also participate without knowing the languages in question.</p><p>The workshop is led by art educators from Annantalo.</p><p>No advance skills or registration is required to participate. The Annantalo Art Saturday is free of charge.The language of the workshops varies, Finnish language skills are not required to participate. Hearing protection and other aids are available for children with special needs. In addition, there is a separate quiet space.</p><p>A warm welcome to Annantalo on Saturday!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64948/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64564", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "17,80 € / 33,90 €", "sv": "17,80 € / 33,90 €", "en": "17,80 € / 33,90 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2024-3727606/", "sv": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2024-3727606/", "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2024-3727606/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152391, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-12T07:14:27.550398Z", "last_modified_time": "2024-09-12T07:14:27.550416Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757931.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152391/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-12T07:14:27.527365Z", "last_modified_time": "2024-12-20T01:14:02.520483Z", "date_published": null, "start_time": "2024-11-08T18: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.stoa.fi/fi/tapahtumat/event/E4223B8DE3FF205E76C49187396A5F2B/Liikkeella_marraskuussa_Ligia_Lewis_A_Plot_A_Scandal", "sv": "http://www.stoa.fi/sv/evenemang/event/E4223B8DE3FF205E76C49187396A5F2B/Liikkeella_marraskuussa_Ligia_Lewis_A_Plot_A_Scandal", "en": "http://www.stoa.fi/en/events/event/E4223B8DE3FF205E76C49187396A5F2B/Moving_in_November_Ligia_Lewis_A_Plot_A_Scandal" }, "location_extra_info": null, "short_description": { "fi": "Tanssiesitys vie matkalle siirtomaa-ajan orjuuden historiaan ja mytologiaan.", "sv": "Ligia Lewis A Plot / A Scandal väver samman historiska, anekdotiska, politiska och mytiska berättelser om det koloniala slaveriet.", "en": "A plot is a word referring to a story or narrative, a piece of land or property, and the act of scheming or plotting." }, "provider_contact_info": null, "name": { "fi": "Liikkeellä marraskuussa – Ligia Lewis: A Plot / A Scandal", "sv": "Liikkeellä marraskuussa – Ligia Lewis: A Plot / A Scandal", "en": "Moving in November – Ligia Lewis: A Plot / A Scandal" }, "description": { "fi": "<p>Tanssiesitys vie matkalle siirtomaa-ajan orjuuden historiaan ja mytologiaan.</p><p>Stoa on yksi Liikkeellä marraskuussa -nykytanssifestivaalin näyttämöistä ja toimii vuoden 2024 festivaalin avajaisesityksen näyttämönä! <b>Ligia Lewisin</b> A Plot / A Scandal punoo yhteen historiallisia, anekdoottisia, poliittisia ja myyttisiä kertomuksia siirtomaa-ajan orjuuden historiasta. Lewis käyttää oman isoisoäitinsä hahmoa vastarinnan oppaana.</p><p>A Plot on sana, joka viittaa tarinaan tai narratiiviin, maapalaan tai omaisuuteen sekä yhtä lailla juonitteluun. Kolmiosaisen näytelmän kehykseen sotkeutunut A Plot / A Scandal käsittelee \"skandaalin\" ja vastarinnan teemoja Hispaniolan saarella ja Karibialla.</p><p>Ligia Lewis tutkii nautintoja ja niiden kustannuksia kutomalla yhteen joukon historiallisia tapahtumia, poliittisia lakeja ja myyttisiä kertomuksia: John Locken kirjoitukset valkoisen miehen ”luonnollisista oikeuksista” elämään, vapauteen ja omaisuuteen, Jose Aponten vallankumouksellinen juonen, joka käynnisti orjuuden vastaisen kapinan vuonna 1812, sekä Lewisin isoäidin, yhteisön voimahahmon, joka käytti ja kehitti vaihtoehtoisia vastarinnan muotoja kuten Palo-tanssin. A Plot / A Scandal on näkyvyyden ja kätkemisen paikka, joka kutsuu kapinan skandaaliin representaation reunamilla.</p><p>A Plot / A Scandal teoksen esittää Vânia Doutel Vaz.</p><p><b>Ligia Lewis</b> on taiteilija, koreografi ja ohjaaja, jonka tuotanto kattaa näyttämöteoksia, gallerianäyttelyitä ja elokuvia. Hänen teoksiaan leimaavat voimakkaat fyysiset ja emotionaaliset elementit, joissa yhdistyvät komedia ja tragedia, perinteisten kehonäkemysten haastaminen sekä syventyminen historian, muistin ja tuntemattoman teemoihin. Hänen tarkasti määritellyissä koreografisissa maisemissaan liike, puhe ja visuaaliset metaforat luovat tiloja, jotka tuovat mieleen sekä tunnistettavan että arvoituksellisen.</p><p><b>Vânia Doutel Vaz</b> on angolalais-portugalilainen tanssija, joka on kouluttautunut Portugalissa ja esiintynyt arvostetuissa ryhmissä kuten Nederlands Dans Theaterissa ja Cedar Lake Contemporary Balletissa. Vaz tunnetaan myös yhteistyöstään nimekkäiden taiteilijoiden kuten Tânia Carvalhon ja Trajal Harrellin kanssa. Vaz on myös ohjannut portugalilaisia teatteriryhmiä sekä luonut omia tuotantojaan. Hän on saanut tunnustusta yhtenä sadasta vaikutusvaltaisimmasta mustasta henkilöstä portugalinkielisessä maailmassa. Hän on aktiivinen jäsen Black Arts' Unionissa (UNA), mikä osoittaa hänen sitoutumisensa taiteelliseen huippuosaamiseen ja vaikuttamistyöhön.</p><p>Kesto: n. 70min<br>Kieli: englanti</p><p>Konsepti, koreografia, taiteellinen ohjaus, teksti: Ligia Lewis<br>Esitys: Vânia Doutel Vaz<br>Koreografinen apu, vuorotteleva esiintyjä: Corey Scott-Gilbert, Justin Kennedy<br>Tutkimus/dramaturgia: Sarah Lewis-Cappellari<br>Tutkimus: Michael Tsouloukidse<br>Valosuunnittelu ja tekninen johtaja: Joseph Wegmann<br>Musiikin sävellys ja äänisuunnittelu: George Lewis Jr AKA Twin Shadow & Wynne Bennett<br>Ääni: George Lewis Jr AKA Twin Shadow<br>Ääniteknikko: Max Eilbacher, Neda Sanai<br>Lavastus: Ligia Lewis<br>Puvustus: SADAK<br>Lavateknikko: Jachya Freeth, Şenol Şentürk, Anna Cackett<br>Tuotanto ja hallinto: Sina Kießling<br>Tuotanto ja jakelu: Nicole Schuchardt<br>Tuotantoavustaja: Julia Leonhardt<br>Tuotanto: Ligia Lewis<br>Yhteistuotanto: HAU Hebbel am Ufer (Berliini), Ruhrtriennale, Arsenic-Centre d'art scénique contemporain (Lausanne), Tanzquartier Wien, Kunstencentrum VIERNULVIER (Gent), Kaserne Basel, The Museum of Contemporary Art (Los Angeles), Walker Art Center (Minneapolis MN).<br>Residenssituki: Callie's, O Espaço do Tempo.<br>Tukija: NATIONALES PERFORMANCE NETZ Coproduction Fund for Dance, joka on Saksan liittotasavallan ulkoministeriön tukema.<br>Rahoittaja: Berlin Senate Department for Culture and Europe.<br>Vierailua tukevat: Goethe-Institut Finnland ja Saksan ulkoministeriö, NATIONALES PERFORMANCE NETZ International Guest Performance Fund for Dance, joka on Saksan liittotasavallan ulkoministeriön tukema, Saksan Suomi-instituutti, Niilo Helanderin säätiö.</p>", "sv": "<p>Ligia Lewis A Plot / A Scandal väver samman historiska, anekdotiska, politiska och mytiska berättelser om det koloniala slaveriet.</p><p>Lewis låter sin egen gammelmormors karaktär guida motståndet.<br>Ordet Plot betyder en historia eller berättelse, en jordlott eller tomt, men likaså intriger. A Plot / A Scandal utspelar sig som en pjäs i tre delar och utforskar teman som \"skandal\" och motstånd på ön Hispaniola och i Karibien.</p><p>Ligia Lewis utforskar njutning och dess kostnader genom att väva samman en rad historiska händelser, politiska lagar och mytiska berättelser: John Lockes texter om den vite mannens ”naturliga rättigheter” till liv, frihet och egendom, Jose Apontes revolutionära plan som startade ett uppror mot slaveriet 1812 och Lewis mormor, en kraftgestalt i samhället som använde och utvecklade alternativa former av motstånd som Palo-dansen. A Plot / A Scandal är en plats för att synas och döljas som inbjuder till uppror och skandaler i representationens utkanter.<br>A Plot / A Scandal framförs av Vânia Doutel Vaz.</p><p>Ligia Lewis är konstnär, koreograf och regissör som har producerat scenframträdanden, galleriutställningar och filmer. Hennes verk kännetecknas av starka fysiska och känslomässiga inslag, där komedi och tragedi kombineras, traditionella kroppsföreställningar utmanas och teman som historia, minne och det okända behandlas. I hennes väldefinierade koreografiska landskap skapar rörelse, tal och visuella metaforer rum som framkallar både det igenkännbara och det gåtfulla.</p><p>Vânia Doutel Vaz är en engelsk-portugisisk dansare utbildad i Portugal som har uppträtt med prestigefyllda danskompanier som Nederlands Dans Theater och Cedar Lake Contemporary Ballet. Vaz är också känd för sina samarbeten med kända artister som Tânia Carvalho och Trajal Harrell. Vaz har också lett portugisiska teatergrupper och skapat egna produktioner. Hon har utsetts till en av de 100 mest inflytelserika svarta personerna i den portugisisktalande världen. Hon är aktiv medlem i Black Arts' Union (UNA), vilket visar hennes engagemang i konstnärlig toppkompetens och påverkansarbete.</p><p>Stoa är en av scenerna under den samtida dansfestivalen Liikkeellä marraskuussa och är platsen för festivalens öppningsföreställning 2024.</p><p>Längd: ca 70 min.<br>Språk: engelska</p><p>Koncept, koreografi, konstnärlig ledning, text: Ligia Lewis<br>Framförande: Vânia Doutel Vaz<br>Koreografisk assistans, alternerande artist: Corey Scott-Gilbert, Justin Kennedy<br>Forskning/dramaturgi: Sarah Lewis-Cappellari<br>Forskning: Michael Tsouloukidse<br>Ljusdesign och teknisk chef: Joseph Wegmann<br>Musikkomposition och ljuddesign: George Lewis Jr AKA Twin Shadow & Wynne Bennett<br>Ljud: George Lewis Jr AKA Twin Shadow<br>Ljudtekniker: Max Eilbacher, Neda Sanai<br>Scenografi: Ligia Lewis<br>Kostymdesign: SADAK<br>Scentekniker: Jachya Freeth, Şenol Şentürk, Anna Cackett<br>Produktion och förvaltning: Sina Kießling<br>Produktion och distribution: Nicole Schuchardt<br>Produktionsassistent: Julia Leonhardt<br>Produktion: Ligia Lewis<br>Samproduktion: HAU Hebbel am Ufer (Berlin), Ruhrtriennale, Arsenic-Centre d'art scénique contemporain (Lausanne), Tanzquartier Wien, Kunstencentrum VIERNULVIER (Gent), Kaserne Basel, The Museum of Contemporary Art (Los Angeles), Walker Art Center (Minneapolis MN).<br>Residensstöd: Callie's, O Espaço do Tempo.<br>Mecenat: NATIONALES PERFORMANCE NETZ Coproduction Fund for Dance, med stöd av Förbundsrepubliken Tysklands utrikesministerium.<br>Sponsor: Berlin Senate Department for Culture and Europe.<br>Besöket stöds av: Goethe-Institut Finnland och Tysklands utrikesministerium, NATIONALES PERFORMANCE NETZ International Guest Performance Fund for Dance, med stöd av Förbundsrepubliken Tysklands utrikesministerium, Finlandsinstitutet i Tyskland, Niilo Helanders stiftelse.</p>", "en": "<p>A plot is a word referring to a story or narrative, a piece of land or property, and the act of scheming or plotting.</p><p>Stoa is one of the festival venues of Moving in November. This year the opening performance Ligia Lewis' A Plot/ A Scandal will take place at Stoa on the 7th & 8th of November.</p><p>In this performance Ligia Lewis weaves together historical, anecdotal, political and mythical narratives around the history of colonial slavery, using her own great-grandmother as a guide to resistance.</p><p>Intricately entangled in a three-part play, A Plot / A Scandal engages themes of “scandal” and resistance on the island of Hispaniola, and the greater Caribbean. Ligia Lewis explores such pleasures and their cost weaving together a series of historical events, political laws, and mythical narratives, ranging from John Locke’s treatise on white man’s ‘natural rights’ to life, liberty, and property, to Jose Aponte’s revolutionary plot that led to the antislave rebellion in 1812, to Lewis’s great-grandmother, a guiding figure for the community who unfolded alternative forms of resistance such as the Palo dance. Thus, A Plot / A Scandal operates as a site of visibility and concealment, inviting the scandal of rebellion at the edges of representation.</p><p><b>Ligia Lewis</b> is an artist, choreographer, and director whose work spans stage performances, gallery exhibits, and film. Her creations, marked by intense physical and emotional elements, blend comedy and tragedy, challenging conventional views of the body while exploring themes of history, memory, and the unknown. Her highly defined choreographic landscapes incorporate movement, speech, and visual metaphors to create spaces that evoke both the familiar and the enigmatic.</p><p>Vânia Doutel Vaz is a dancer of Angolan-Portuguese heritage, trained in Portugal and performed with prestigious companies like Nederlands Dans Theater and Cedar Lake Contemporary Ballet. Collaborating with renowned artists such as Tânia Carvalho and Trajal Harrell, Vaz has made her mark in the dance world.</p><p>Vaz has also directed and assisted movement for Portuguese theatre groups and created her own productions, receiving recognition as one of the 100 most influential black personalities in the Lusophone world. She's an active member of the Black Arts’ Union (UNA), showcasing her commitment to artistic excellence and advocacy.</p><p>Duration: 70 min<br>Language: English<br> <br>Concept, choreography, artistic direction, text: Ligia Lewis<br>Performance: Vânia Doutel Vaz<br>Choreographic assistance, alternating performer: Corey Scott-Gilbert, Justin Kennedy<br>Research/Dramaturgy: Sarah Lewis-Cappellari <br>Research: Michael Tsouloukidse <br>Lighting design & technical direction: Joseph Wegmann <br>Music composition & Sound design: George Lewis Jr AKA Twin Shadow & Wynne Bennett <br>Voice over: George Lewis Jr AKA Twin Shadow <br>Sound technician: Max Eilbacher, Neda Sanai <br>Set design: Ligia Lewis <br>Costume: SADAK <br>Stage technician: Jachya Freeth, Şenol Şentürk, Anna Cackett<br>Production & administration: Sina Kießling <br>Production & distribution: Nicole Schuchardt <br>Production assistance: Julia Leonhardt <br>Production: Ligia Lewis<br>Co-production: HAU Hebbel am Ufer (Berlin), Ruhrtriennale, Arsenic-Centre d'art scénique contemporain (Lausanne), Tanzquartier Wien, Kunstencentrum VIERNULVIER (Gent), Kaserne Basel, The Museum of Contemporary Art (Los Angeles), Walker Art Center (Minneapolis MN). <br>With the residency support of: Callie’s, O Espaço do Tempo.<br>Supported by: the NATIONALES PERFORMANCE NETZ Coproduction Fund for Dance, which is funded by the Federal Government Commissioner for Culture and the Media.<br>Funded by: Berlin Senate Department for Culture and Europe.</p><p>Visit supported by Goethe-Institut Finnland and German Federal Foreign Office, NATIONALES PERFORMANCE NETZ International Guest Performance Fund for Dance, which is funded by the Federal Government Commissioner for Culture and the Media, The Finland Institute in Germany, Niilo Helander’s Foundation</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64564/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63452", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "34,50/38,50 €", "sv": "34,50/38,50 €", "en": "34,50/38,50 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/pola-ivanka/", "sv": "https://www.lippu.fi/artist/pola-ivanka/", "en": "https://www.lippu.fi/artist/pola-ivanka/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150785, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-24T12:14:49.733775Z", "last_modified_time": "2024-04-24T12:14:49.733793Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745142.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150785/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-24T12:14:49.669089Z", "last_modified_time": "2024-12-20T01:14:02.417499Z", "date_published": null, "start_time": "2024-11-08T17: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.savoyteatteri.fi/fi/tapahtumat/event/F4003294ADCBBBB27840544B50925337/Pola_Ivanka_Olen_kuningatar_30_v_kimalletta_ja_kultaa", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F4003294ADCBBBB27840544B50925337/Pola_Ivanka_30v-taiteilijajuhla", "en": "http://www.savoyteatteri.fi/en/events/event/F4003294ADCBBBB27840544B50925337/Pola_Ivanka_30v-taiteilijajuhla" }, "location_extra_info": null, "short_description": { "fi": "Drag-artisti Pola Ivankan 30-vuotisjuhlakonsertti!", "sv": "Dragartisten Pola Ivankas 30-årsjubileumskonsert!", "en": "Drag artist Pola Ivanka’s 30th anniversary concert!" }, "provider_contact_info": null, "name": { "fi": "Pola Ivanka: Olen kuningatar – 30 v. kimalletta ja kultaa", "sv": "Pola Ivanka 30v-taiteilijajuhla", "en": "Pola Ivanka 30v-taiteilijajuhla" }, "description": { "fi": "<p>Drag-artisti Pola Ivankan 30-vuotisjuhlakonsertti!</p><p>Suomen tunnetuimpiin drag-artisteihin lukeutuva <b>Pola Ivanka</b> juhlii 30-vuotista uraansa Helsingin Savoy-teatterissa 8. marraskuuta. Juhlan kunniaksi luvassa on upea konsertti, jossa lavalle nousevat Polan lisäksi tähtivierailijoina <b>Sonja Lumme</b> sekä 40-jäseninen <b>ZinZingen</b>-kuoro.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p>", "sv": "<p>Dragartisten Pola Ivankas 30-årsjubileumskonsert!</p><p>En av Finlands mest kända dragartister Pola Ivanka firar sin 30-åriga karriär på Savoy-teatern i Helsingfors den 8 november. Jubileet till ära utlovas en spektakulär konsert, där även Sonja Lumme och 40-mannakören ZinZingen upp på scenen tillsammans med Pola.</p><p>Längd ca 2 h 15 min., inklusive paus</p>", "en": "<p>Drag artist Pola Ivanka’s 30th anniversary concert!</p><p>Pola Ivanka, one of Finland’s most famous drag artists, celebrates their 30-year career at the Savoy Theatre in Helsinki on 8 November. There will be a spectacular concert in honour of the celebration, in which Sonja Lumme and the 40-member ZinZingen choir will take to the stage in addition to Pola.</p><p>Duration: approx. 2 h 15 min, including an intermission</p>" }, "provider": { "fi": "Tepsa Tuotanto Oy", "sv": "Tepsa Tuotanto Oy", "en": "Tepsa Tuotanto Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63452/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63817", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "22,50 € / 17,50 €", "sv": "22,50 € / 17,50 €", "en": "22,50 € / 17,50 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/etnosoi-batsuekh-dorj-mn-malmitalo-18651338/", "sv": "https://www.lippu.fi/event/etnosoi-batsuekh-dorj-mn-malmitalo-18651338/", "en": "https://www.lippu.fi/event/etnosoi-batsuekh-dorj-mn-malmitalo-18651338/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151888, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T17:13:38.229015Z", "last_modified_time": "2024-07-25T17:13:38.229030Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753138.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151888/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T17:13:38.200285Z", "last_modified_time": "2024-12-20T01:14:02.313342Z", "date_published": null, "start_time": "2024-11-08T17: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/3EE6525CD36F026CBBD83BB2A3807366/Nasanjargal_Ganbold_Johanni_Curtet_MN_FR_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3EE6525CD36F026CBBD83BB2A3807366/Nasanjargal_Ganbold_Johanni_Curtet_MN_FR_", "en": "http://www.malmitalo.fi/en/events/event/3EE6525CD36F026CBBD83BB2A3807366/Nasanjargal_Ganbold_Johanni_Curtet_MN_FR_" }, "location_extra_info": null, "short_description": { "fi": "Kuvittele hetki Mongolian arojen kulttuurista maisemaa, jossa perinteinen musiikki kytkeytyy ympäristöön ja paimentolaisfilosofiaan.", "sv": "För dem som älskar den tuvinska strupsångstraditionen bjuder Etnosoi! denna gången på en specialgäst från Mongoliet.", "en": "Imagine for a moment the cultural homeland of Mongolia’s steppes. A place where traditional music links to the environment and nomadic philosophy." }, "provider_contact_info": null, "name": { "fi": "Nasanjargal Ganbold & Johanni Curtet (MN/FR) – Etnosoi!", "sv": "Nasanjargal Ganbold & Johanni Curtet (MN/FR) – Etnosoi!", "en": "Nasanjargal Ganbold & Johanni Curtet (MN/FR) – Etnosoi!" }, "description": { "fi": "<p>Kuvittele hetki Mongolian arojen kulttuurista maisemaa, jossa perinteinen musiikki kytkeytyy ympäristöön ja paimentolaisfilosofiaan.</p><p>Batsükh Dorj’n tilalla kuullaan Nasanjargal Ganbold & Johanni Curtet (MN/FR).</p><p>Mongolialainen äänimaisema käy vuoropuhelua luonnon kanssa soittimien, kuten morin khuur -hevosenpääviulun ja tovshuur-luutun, sekä laulun keinoin, kuten ylistyslaulujen tai kurkkulaulun avulla.</p><p><b>Nasanjargal Ganbold (alias Nasaa)</b>, alansa mestari, tulee Altailta, Mongolian kurkkulaulun kehdosta. Nasaa hallitsee erilaisia khöömiin ja kurkkulaulun tekniikoita. Monipuolisena instrumentalistina hän edistää perinteisen musiikin uudistumista luomalla sovituksia morin khuur -viululla, bishguur-oboella ja tovshuur-luutulla. Pitkän soolo- ja yhteistyöuran jälkeen, joihin on lukeutunut tuotantoja ja CD-julkaisuja ryhmien Börte, Hosoo-Transmongolia ja Sedaa kanssa, hänen uusin musiikillinen projektinsa vuodesta 2023 alkaen on Tengerton kvartetin perustaminen sekä esiintyminen duona mongolialaisen kansanlaulaja Sara Teamusicianin kanssa.</p><p><b>Johanni Curtet</b> on länsimaisen kurkkulaulun asiantuntija, jonka laaja etnomusikologinen tausta lisää tietoisuutta monimuotoisesta mongolialaisesta perinteestä akateemisissa- ja elokuvapiireissä. Curtetin säestyksellä duo luo musiikillisia maailmoja, jotka on omistettu paimentolaiskulttuurille, matkalla kauas vuorten taakse, kohti avaria tiloja. Luodakseen sopivan ympäristön khöömiin laulutaiteelle heidän ohjelmistonsa sisältää luonnon äänimaisemien jäljittelyä, ylistyslauluja ympäröiville voimille, muinaisia ja nykyaikaisia runoja, sooloinstrumentaalikappaleita sekä kurkkulauluimprovisaatioita. Eri mongolialaisten musiikkitraditioiden ja etnomusikologisen lähestymistavan yhteistyö johdattaa yleisön ainutlaatuiselle matkalle harmonioiden maailmaan, jossa khöömiin taito yhdistää heidät.</p><p>Nasanjargal Ganbold – khöömei, kurkkulaulu, morin khuur -hevosenpääviulu, tovshuur-luuttu, bishguur-oboe, munniharppu<br>Johanni Curtet – khöömei, kurkkulaulu, dombra, kitara, munniharppu</p><p>Kesto: 1 t 15 min</p><p>Lisää tietoa konsertista ja festivaalista: <u><a href=\"https://www.etnosoi.fi/fi/etnosoi/etnosoi-etusivu\">etnosoi.fi</a></u></p>", "sv": "<p>För dem som älskar den tuvinska strupsångstraditionen bjuder Etnosoi! denna gången på en specialgäst från Mongoliet.</p><p>Mer information om konserten och festivalen: <u><a href=\"https://www.etnosoi.fi/fi/etnosoi/etnosoi-etusivu\">etnosoi.fi</a></u></p>", "en": "<p>Imagine for a moment the cultural homeland of Mongolia’s steppes. A place where traditional music links to the environment and nomadic philosophy.</p><p>Mongolian soundscape strives in dialogue with nature through their instruments, such as the morin khuur horse fiddle or the tovshuur lute, as well as with their voices, through praises or throat-singing.</p><p>Nasanjargal Ganbold (aka Nasaa), a master in the field, comes from the Altai, the cradle of khöömii in Mongolia. Nasaa excels in different khöömii and throat singing techniques. As a multi-instrumentalist, he contributes to the renewal of traditional music through the creation of arrangements using morin khuur fiddle, bishguur oboe, and tovshuur lute. After abundant soloist and collaborative career, production, and release of CDs with groups Börte, Hosoo-Transmongolia, and Sedaa, his latest musical project from 2023 is co-founding a quartet Tengerton as well as performing in a duo with Mongolian folk singer Sara Teamusician.</p><p>Through the accompaniment of Johanni Curtet, a specialist in throat-singing in the West whose rich ethnomusicological background raises awareness of the diverse Mongolian tradition in academic and filmographic circles, they create musical worlds dedicated to nomadic culture through a journey far beyond the mountains, reaching into the wide open spaces. To provide a setting for the vocal art of khöömii, their repertoire strives to imitate the sonority of nature, praises to the surrounding entities, ancient and contemporary poems, solo instrumental pieces, and throat-singing improvisations.</p><p>The collaboration between the diverse Mongolian musicality enriched with the quality of the ethnomusicological approach leads the audience on a unique journey through harmonics where the art of khöömii unites them.</p><p>Nasanjargal Ganbold – khöömii, throat-singing, morin khuur fiddle, tovshuur lute, bishguur oboe, mouth harp<br>Johanni Curtet – khöömii, throat-singing, dombra lute, guitar, mouth harp</p><p>Nb! Nasanjargal Ganbold replaces Batsükh Dorj mentioned in the advance information for this concert.</p><p>Duration: 1 hour 15 minutes</p><p>More information about the concert and the festival: <u><a href=\"https://www.etnosoi.fi/fi/etnosoi/etnosoi-etusivu\">etnosoi.fi</a></u></p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63817/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63842", "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:29/?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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € /15 €", "sv": "20 € /15 €", "en": "20 € /15 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/rautavaara-ihminen-ja-ikoni-3642108/", "sv": "https://www.lippu.fi/eventseries/rautavaara-ihminen-ja-ikoni-3642108/", "en": "https://www.lippu.fi/eventseries/rautavaara-ihminen-ja-ikoni-3642108/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151917, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T08:14:33.602838Z", "last_modified_time": "2024-07-26T08:14:33.602857Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753206.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151917/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T08:14:33.575496Z", "last_modified_time": "2024-12-20T01:14:02.213904Z", "date_published": null, "start_time": "2024-11-08T16: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/95CE3B866A8692F1D7E4A18CCDB26671/Rautavaara_ihminen_ja_ikoni", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/95CE3B866A8692F1D7E4A18CCDB26671/Rautavaara_manniskan_och_ikonen", "en": "http://www.kanneltalo.fi/en/events/event/95CE3B866A8692F1D7E4A18CCDB26671/Rautavaara_an_icon_of_a_man" }, "location_extra_info": null, "short_description": { "fi": "Rautavaara kertoo Tapio Rautavaaran elämäntarinan köyhästä, isättömästä työläispojasta rakastetuksi muusikoksi, olympiavoittajaksi ja koko kansan sankariksi.", "sv": "Rautavaara återger Tapio Rautavaaras livshistoria, från en fattig, faderlös arbetarklasspojke till en älskad musiker, olympisk mästare och nationell hjälte.", "en": "Rautavaara tells the life story of Tapio Rautavaara, from a poor, fatherless working-class boy to a beloved musician, Olympic champion and national hero." }, "provider_contact_info": null, "name": { "fi": "Rautavaara – ihminen ja ikoni", "sv": "Rautavaara – människan och ikonen", "en": "Rautavaara – an icon of a man" }, "description": { "fi": "<p>Rautavaara kertoo Tapio Rautavaaran elämäntarinan köyhästä, isättömästä työläispojasta rakastetuksi muusikoksi, olympiavoittajaksi ja koko kansan sankariksi.</p><p>Esitys on tarina legendasta nimeltä ”Rautavaara”. Samalla se kysyy myös ajankohtaisia kysymyksiä: mitä tarkoittaa, jos kansa jakautuu kahtia, miten elää kahtiajaon kanssa, ja miten purkaa sitä? Rautavaara oli köyhän työläisäidin lapsi, joka sai kuulla olevansa ”punakaartilaisen kakara”. Vanhempana hän torjui jyrkät poliittiset jakolinjat ja halusi esiintyä kaikille. Hänestä tuli koko kansan reissumies, kaikkien Tapsa!</p><p>Esitys on monologi, jossa kuullaan Tapio Rautavaaran rakastettuja kappaleita. Rautavaarana nähdään näytelmän kirjoittanut <b>Timo Ruuskanen</b>, palkittu laulava näyttelijä, joka tunnetaan muun muassa Red Nose Companyn perustajajäsenenä. Ruuskanen ihailee Rautavaaran musiikkia, ja on 188 senttimetrisenä tismalleen saman pituinen kuin esikuvansa.</p><p>Työryhmä<br>Käsikirjoitus: Timo Ruuskanen<br>Ohjaus ja dramaturginen apu: Olka Horila<br>Valosuunnittelu: Jukka Kuronen<br>Kiertuevalot: Jere Kolehmainen<br>Äänisuunnittelu: Kari Paukola<br>Tarpeisto: Karita Fallström-Autio<br>Tuotanto: Riihimäen Teatteri, Teatteri Avoimet Ovet ja Timo Ruuskanen</p><p>Kesto n. 1 t 50 min, sis. väliajan<br>Kieli: suomi</p>", "sv": "<p>Rautavaara återger Tapio Rautavaaras livshistoria, från en fattig, faderlös arbetarklasspojke till en älskad musiker, olympisk mästare och nationell hjälte.</p><p>Föreställningen är berättelsen om en legend vid namnet \"Rautavaara\". Samtidigt ställer den också aktuella frågor: vad innebär det att en nation är splittrad, hur kan man leva med splittringen, och hur kan man avveckla den? Rautavaara var barn till en fattig arbetarklassmamma som fick höra att hon var en \"rödgardistunge\". Som vuxen tog han avstånd från skarpa politiska skiljelinjer och ville uppträda för alla. Han blev hela nationens vagabond, allas Tapsa!</p><p>Föreställningen är en monolog där vi får höra Tapio Rautavaaras älskade sånger. Rautavaara spelas av pjäsens författare, den prisbelönte sångaren och skådespelaren <b>Timo Ruuskanen</b>, som bland annat är känd som en av grundarna av Red Nose Company. Ruuskanen beundrar Rautavaaras musik, och med sina 188 centimeter är han exakt lika lång som sin förebild.</p><p>Arbetsgrupp<br>Manus: Timo Ruuskanen<br>Regi och dramaturgisk assistans: Olka Horila<br>Ljusdesign: Jukka Kuronen<br>Turnébelysning: Jere Kolehmainen<br>Ljuddesign: Kari Paukola<br>Rekvisita: Karita Fallström-Autio<br>Produktion: Riihimäen Teatteri, Teatteri Avoimet Ovet och Timo Ruuskanen</p>", "en": "<p>Rautavaara tells the life story of Tapio Rautavaara, from a poor, fatherless working-class boy to a beloved musician, Olympic champion and national hero.</p><p>This show is the story of a legend called \"Rautavaara\". At the same time, it also asks questions about today: what does it mean if a nation is split in two, how do you deal with the division, and how do you bridge the gap? Rautavaara was the child of a poor working mother who had to constantly hear about being “a commie brat”. As a parent, he rejected sharp political divisions and wanted to perform for everyone. He became the whole nation’s travelling man, everyone’s Tapsa!</p><p>The performance is a monologue featuring Tapio Rautavaara's beloved songs. The role of Rautavaara is played by playwright Timo Ruuskanen, an award-winning singer-actor who is known, among other things, as a founding member of Red Nose Company. Ruuskanen admires Rautavaara's music, and is exactly the same height as his role model at 188 centimetres.</p><p>Working group<br>Script: Timo Ruuskanen<br>Guidance and dramaturgical assistance: Olka Horila<br>Lighting: Jukka Kuronen<br>Tour lights: Jere Kolehmainen<br>Sound design: Kari Paukola<br>Equipment: Karita Fallström-Autio<br>Production: Riihimäki Theatre, Open Doors Theatre and Timo Ruuskanen</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63842/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27580, "next": "