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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=53&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 11836, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=54&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=52&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:66995", "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:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/", "sv": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/", "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/" }, "description": null, "price": { "fi": "33 € / 17 € / 0 €", "sv": "33 € / 17 € / 0 €", "en": "33 € / 17 € / 0 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491273, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-03T15:13:31.238248Z", "last_modified_time": "2025-11-03T15:13:31.238264Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777408.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491273/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-03T15:13:31.073090Z", "last_modified_time": "2025-11-10T13:13:06.424106Z", "date_published": null, "start_time": "2025-11-07", "end_time": "2025-11-14", "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, "short_description": { "fi": "Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.", "sv": "Liikkeellä marraskuussa – Moving in November är en festival för modern dans som ordnas varje år i huvudstadsregionen.", "en": "Liikkeellä marraskuussa – Moving in November is an annual contemporary dance festival held in the Helsinki Metropolitan Area." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/729B6C09F63F822DD5EC4942C4FC103F/Liikkeella_marraskuussa_Moving_in_November", "sv": "http://www.caisa.fi/sv/evenemang/event/729B6C09F63F822DD5EC4942C4FC103F/Liikkeella_marraskuussa_Moving_in_November", "en": "http://www.caisa.fi/en/events/event/729B6C09F63F822DD5EC4942C4FC103F/Liikkeella_marraskuussa_Moving_in_November" }, "description": { "fi": "<p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä, että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.</p><p>Caisa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2025 festivaali järjestetään 6.–16. marraskuuta.</p><p><b>Caisan Liikkeellä marraskuussa -ohjelma</p><p>7.–14.11. Soup Talks</b><br>Soup Talks on sarja keskusteluja ja kohtaamisia Liikkeellä marraskuussa -festivaalin taiteilijoiden kanssa. <br>Maksuton, ilmoittautuminen etukäteen vaaditaan.</p><p><b>7.11. klo 16.30–22.30<br>8.11. klo 10–20<br>Antonia Atarah: Don’t thank for the food</b><br>Don’t thank for the food on Antonia Atarahin ja työryhmän fasilitoima performatiivinen installaatio ja näyttelytila. <br>Vapaa pääsy.</p><p><b>8.11. klo 14, 15 ja 16<br>Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky</b><br>Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää. <br>Vapaa pääsy.</p><p><b>11.11. klo 18<br>12.11. klo 21<br>Lucía García Pullés: Mother Tongue</b><br>Mother Tongue on kieltä käsittelevä soolo, äänen ja kaiun duetto, väliin asettuva olento. <br>Liput 33 € / 17 €</p><p><u><a href=\"https://www.caisa.fi/fi/tapahtumat/\"> Tutustu tapahtumiin tarkemmin Caisan tapahtumakalenterin kautta</a></u></p><p>Liikkeellä marraskussa tapahtuu myös kulttuurikeskus Stoassa. <u><a href=\"https://www.stoa.fi/fi/tapahtumat/\">Katso Stoan ohjelma. </a></u></p><p>Koko festivaalin ohjelman löydät: https://liikkeellamarraskuussa.fi/<br>Festivaaliesityksiin on myynnissä myös festivaalipasseja. Lisätietoja: https://liikkeellamarraskuussa.fi/liput-ja-esityspaikat-2/</p>", "sv": "<p>Liikkeellä marraskuussa – Moving in November är en festival för modern dans som ordnas varje år i huvudstadsregionen.</p><p>Festivalen bjuder in folk att träffas och uppleva konstnärliga verk från både den lokala konstscenen och andra länder. Festivalen presenterar konstnärernas kritiska tänkande, visioner, erfarenheter och drömmar och öppnar små fönster till den värld vi lever i.</p><p>Caisa är en av platserna där festivalen Liikkeellä marraskuussa – Moving in November ordnas. Festivalen 2025 ordnas den 6–16 november.</p>", "en": "<p>Liikkeellä marraskuussa – Moving in November is an annual contemporary dance festival held in the Helsinki Metropolitan Area.</p><p>The festival invites people to come together and experience artistic works from both the local art scene and abroad. The festival presents artists’ critical thinking, visions, experiences and dreams, opening small windows into the world that we live in.</p><p>Caisa is one of the venues of the Moving in November festival. The 2025 Festival will take place from 6 to 16 November.</p>" }, "name": { "fi": "Liikkeellä marraskuussa – Moving in November", "sv": "Liikkeellä marraskuussa – Moving in November", "en": "Liikkeellä marraskuussa – Moving in November" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66995/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66252", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kanneltalo/haetaetila-3891893/", "sv": "https://www.lippu.fi/artist/kanneltalo/haetaetila-3891893/", "en": "https://www.lippu.fi/artist/kanneltalo/haetaetila-3891893/" }, "description": null, "price": { "fi": "20 € / 15 € / 0 €", "sv": "20 € / 15 € / 0 €", "en": "20 € / 15 € / 0 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 804192, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-19T13:14:11.061691Z", "last_modified_time": "2025-05-19T13:14:11.061708Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773059.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/804192/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-05-19T13:14:10.893592Z", "last_modified_time": "2025-11-08T14:13:13.776028Z", "date_published": null, "start_time": "2025-11-12T16: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, "short_description": { "fi": "Siitä, mitä neljä naista näkivät, voi tulla totta minä hetkenä hyvänsä. Monitaiteinen näyttämöteos mielensisäisestä sodasta kuvitteellisessa kaupungissa.", "sv": "Det som fyra kvinnor sett kan bli verklighet när som helst. Ett tvärkonstnärligt scenkonstverk om ett själsligt krig i en fiktiv stad.", "en": "What these four women saw could turn into reality at any moment. A multidisciplinary stage art work about internal war of the mind in an imaginary city." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F39E7FBB9177D2E1A25B3E833096D0EA/Hatatila_esitys_sodan_raunioista_ja_sydamen_palosta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F39E7FBB9177D2E1A25B3E833096D0EA/Hatatila_en_forestallning_om_krigets_ruiner_och_hjartats_brand", "en": "http://www.kanneltalo.fi/en/events/event/F39E7FBB9177D2E1A25B3E833096D0EA/Hatatila_a_performance_about_the_ruins_of_war_and_the_passion_of_heart" }, "description": { "fi": "<p>Siitä, mitä neljä naista näkivät, voi tulla totta minä hetkenä hyvänsä. Monitaiteinen näyttämöteos mielensisäisestä sodasta kuvitteellisessa kaupungissa.</p><p>Hätätila kertoo neljästä naisesta, jotka ovat kokeneet sodan synnyinmaassaan. Nyt he asuvat pohjoisessa valtiossa kaukana sekasorrosta. Mutta vaikka heidän kehonsa ovat päässeet turvaan, heidän sielunsa elävät edelleen sodan kauhuja. Traumat kummittelevat heissä kuin hiljainen virus ja piinaavat heidän mielikuvitustaan toistaen silmien edessä tuhon ja kuoleman kohtauksia. <br> <br>Tässä esityksessä kutsumme yleisön astumaan kuvitteelliseen maailmaan, joka kumpuaa näiden neljän naisen sisältä, heidän näkyihinsä tallennetuista kuvista. Se on maailma, jossa totuus ja taru sekoittuvat, ja jossa rauhanomainen paikka muuttuu yhtäkkiä pelon tantereeksi. <br> <br>Esitys alkaa fantasiamaailmasta, jossa naiset joutuvat kuvitteelliseen eurooppalaiseen rauniokaupunkiin – tuntemattomaan kaupunkiin, josta kuitenkin voi tunnistaa piirteitä tunnetuista länsimaisista, sodan runtelemista kaupungeista – ja etenee liikkeen, äänimaisemien ja visuaalisen kerronnan keinoin. <br> <br>Kaiken keskellä fiktiivinen diktaattori ottaa tuhotun kaupungin ja naiset haltuunsa. Syntyy konflikti, jossa naiset kapinoivat diktaattorin auktoriteettia vastaan ja etsivät keinoja selviytyä ja paeta. <br> <br>Lopulta naiset keräävät voimansa ja vapautuvat peloistaan. He ymmärtävät, että se mitä heille tapahtui, oli illuusio – mutta se oli illuusio, joka kantaa todelliselle maailmalle varoittavan viestin: Emme halua elää tällaista painajaista. Siitä, mitä naiset näkivät, voi tulla totta minä hetkenä hyvänsä. Aina on myös mahdollisuus välttää se. <br> <br>Teos on saanut innoituksensa Albert Camus’n näytelmästä L’État de siège (1948). Produktio on toteutettu Suomen Kulttuurirahaston Maailma näyttämölle -apurahan ja Opetus- ja kulttuuriministeriön hankeavustuksen turvin. <br> <br>Sisältöhuomio: Tapahtuma sisältää sodan ja kriisien kuvausta.</p><p>Esitys on suunnattu yli 13-vuotiaille.</p><p><b>Valtuusto 150 vuotta -etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Huomioithan esityksen teemat ja ikäsuosituksen.</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kanneltalo-helsingin-kaupunki-nuorisolippu-kanneltalo-20219369/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p><p><b>Työryhmä</b><br>Bakr Hasan on Irakissa syntynyt näyttelijä ja teatterintekijä, joka nousi suomalaisten tietoisuuteen teoksellaan Bagdadin Julia (2022). Ethno Contemporary Ballet on ukrainalaislähtöinen tanssiryhmä, jossa esiintyvät tanssija ja koreografi Nina Bulgakova sekä tanssijat Anastasiia Mostova ja Kateryna Zhuravlova. Ryhmä tunnetaan tunteikkaan tarinallisista teoksistaan ja kansainvälisistä yhteistyöprojekteista. Angela Aldebs on Syyriasta kotoisin oleva tanssija ja koreografi, joka on työskennellyt mm. Kansallisteatterissa useissa eri produktioissa. Kati Outinen on ikoninen suomalainen näyttelijä, joka palkittiin Lyypekin pohjoismaisen elokuvafestivaalin elämäntyöpalkinnolla 2024.</p><p>Ohjaus, käsikirjoitus: Bakr Hasan <br>Koreografi: Alpo Aaltokoski <br>Esiintyjät: Angela Aldebs, Nina Bulgakova, Bakr Hasan, Anastasiia Mostova, Kati Outinen (videolla), Kateryna Zhuravlova <br>Lavastus: Markus Tsokkinen <br>Valosuunnittelu, videot: Kosti Kinnunen <br>Pukusuunnittelu: Anna Sinkkonen <br>Valokuvat: Kai Kuusisto <br>Tuotanto: Helmi Saksala, Nomadi-tuotanto</p><p>Kesto: 1 tunti</p><p>Tiistain 11.11. ja keskiviikon 12.11. esitysten jälkeen salissa järjestetään englanninkielinen yleisökeskustelu työryhmän kanssa.</p><p>Kieli: Pääasiassa sanaton esitys, jossa käytetään myös jonkin verran suomea ja englantia.</p>", "sv": "<p>Det som fyra kvinnor sett kan bli verklighet när som helst. Ett tvärkonstnärligt scenkonstverk om ett själsligt krig i en fiktiv stad.</p><p>Hätätila berättar om fyra kvinnor som har upplevt ett krig i sitt hemland. Nu bor de i ett nordligt land långt från kaoset. Men fastän deras kroppar är i trygghet lever deras själar fortfarande med krigets fasor. Deras trauman spökar i dem som ett tyst virus och plågar dem genom att spela upp scener av förstörelse och död framför deras ögon. <br> <br>I den här föreställningen bjuder vi in publiken att stiga in i en fiktiv värld, som väller fram ur dessa fyra kvinnor, ur de bilder som finns hos dem. Det är en värld där verklighet och fiktion blandas ihop och där en fredlig plats plötsligt blir ett fält av rädsla. <br> <br>Förställningen börjar i en fantasivärld, där kvinnorna hamnar i en fiktiv europeisk ruinstad – en okänd stad, där man ändå kan känna igen drag av den bekanta västvärlden, krigshärjade städer – och rör sig framåt genom rörelser, ljudlandskap och visuellt berättande. <br> <br>Mitt i allting tar en fiktiv diktator makten över den förstörda staden och kvinnorna. Det uppstår en konflikt, där kvinnorna revolterar mot diktatorns auktoritet och söker sätt att överleva och fly. <br> <br>Till slut samlar kvinnorna sina krafter och blir fria från rädslan. De förstår att det som hände dem var en illusion – men det var en illusion med ett budskap som är en varning till den verkliga världen: Vi vill inte leva i en sådan mardröm. Det som kvinnorna såg kan bli verklighet när som helst. Det är också alltid möjligt att undvika det. <br> <br>Verket är inspirerat av Albert Camus pjäs L’État de siège (1948). Produktionen har genomförts med hjälp av Finska kulturfondens Maailma näyttämölle-stipendium och Undervisnings- och kulturministeriets projektunderstöd. <br> <br>Innehållsvarning: Evenemanget innehåller beskrivningar av krig och kriser.</p><p>Föreställningen riktar sig till personer över 13 år.</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Observera föreställningens teman och åldersrekommendationen.</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kanneltalo-helsingin-kaupunki-nuorisolippu-kanneltalo-20219369/?affiliate=FSF#tab=\">HÄR</a></u></p><p><b>Arbetsgrupp</b><br>Bakr Hasan är en skådespelare och teaterkonstnär född i Irak, som blev känd bland finländarna genom sitt verk Bagdadin Julia (2022). Ethno Contemporary Ballet är en ukrainsk dansgrupp som består av dansaren och koreografen Nina Bulgakova samt dansarna Anastasiia Mostova och Kateryna Zhuravlova. Gruppen är känd för sina känslosamma och episka verk samt sina internationella samarbetsprojekt. Angela Aldebs är en dansare och koreograf från Syrien, som bland annat har arbetat i flera produktioner på Nationalteatern. Kati Outinen är en ikonisk finländsk skådespelare som belönades med ett livsverkspris vid Nordiska filmdagarna Lübeck 2024.</p><p>Regi, manus: Bakr Hasan <br>Koreograf: Alpo Aaltokoski <br>På scenen: Angela Aldebs, Nina Bulgakova, Bakr Hasan, Anastasiia Mostova, Kati Outinen (på videon), Kateryna Zhuravlova <br>Iscensättning: Markus Tsokkinen <br>Ljusdesign, video: Kosti Kinnunen <br>Kostym: Anna Sinkkonen <br>Fotografier: Kai Kuusisto <br>Produktion: Helmi Saksala, Nomadi-tuotanto</p><p>Längd: 1 h</p><p>Evenemangets språk: Huvudsakligen ordlös föreställning, även finska och engelska används</p>", "en": "<p>What these four women saw could turn into reality at any moment. A multidisciplinary stage art work about internal war of the mind in an imaginary city.</p><p>Hätätila – ‘state of emergency’ – is a show about four women who experienced war in their country of origin. Now they are living in a northern country far away from the chaos. But even though their corporal bodies are now safe, their souls are still reliving the horrors of war. Their traumas haunt them like a silent virus, tormenting their imagination and repeating scenes of destruction and death right before their minds’ eyes. <br> <br>In this performance, we invite our audience to step into an imaginary world that grows from within these four women and stems from the images stored in their visions. A world where truth and stories intertwine and where a place of peace suddenly transforms into a terrain of terror. <br> <br>The performance starts in a fantasy world where the women end up in imaginary European city ruins that still have clear, identifiable characteristics of well-known Western countries and war-torn cities. Movement, different soundscapes and visual storytelling move the story forward from there. <br> <br>In the midst of it all, a fictitous dictator takes control of the city – and the women. A conflict breaks out, where the women rebel against the dictator’s authority and look for ways to survive and escape. <br> <br>In the end, the women gather their strength and become free of their fears. They understand that what happened to them was only an illusion – but an illusion that carries a warning to the real world: We do not want to live through this kind of a nightmare. What these women saw could turn into reality at any moment. But there is always the chance to avoid this. <br> <br>The work was inspired by the play L’État de siège (The State of Siege, 1948) written by Albert Camus. The production was implemented with the help of the World on Stage grant from the Finnish Cultural Foundation and project funding from the Ministry of Education and Culture. <br> <br>Content notes: The event includes depictions of war and crises.</p><p>The performance is intended for audiences over the age of 13.</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Please note the performance themes and the age recommendation.</p><p>Get your free ticket <u><a href=\"https://www.lippu.fi/event/kanneltalo-helsingin-kaupunki-nuorisolippu-kanneltalo-20219369/?affiliate=FSF#tab=\">HERE</a></u></p><p><b>Team</b><br>Bakr Hasan is an Iraq-born actor and theatre producer that became well-known in Finland with his work Bagdadin Julia (‘Julia of Baghdad’, 2022). Ethno Contemporary Ballet is a dance group, originally from Ukraine, featuring dancer and choreographer Nina Bulgakova and dancers Anastasiia Mostova and Kateryna Zhuravlova. The group is known for their expressive and evocative works and their international cooperation projects. Angela Aldebs is a Syria-born dancer and choreographer that has worked in several different productions with the Finnish National Theatre, for example. Kati Outinen is an iconic Finnish actress to whom the Nordic Film Days in Lübeck dedicated its Homage in 2024.</p><p>Direction, screenplay: Bakr Hasan<br>Choreography: Alpo Aaltokoski<br>Performers: Angela Aldebs, Nina Bulgakova, Bakr Hasan, Anastasiia Mostova, Kati Outinen (on video), Kateryna Zhuravlova<br>Staging: Markus Tsokkinen<br>Lighting design, videos: Kosti Kinnunen<br>Costume design: Anna Sinkkonen<br>Photos: Kai Kuusisto <br>Production: Helmi Saksala, Nomadi-tuotanto</p><p>Duration: 1 h</p><p>Audience discussion in English after the performance on Tuesday 11 November and on Wednesday 12 November. Welcome!<br>Language of the event: Mainly a non-verbal performance that also uses some Finnish and English.</p>" }, "name": { "fi": "Hätätila – esitys sodan raunioista ja sydämen palosta – Bakr Hasan, Alpo Aaltokoski Company ja työryhmä", "sv": "Hätätila – en föreställning om krigets ruiner och hjärtats brand – Bakr Hasan, Alpo Aaltokoski Company och arbetsgruppen", "en": "Hätätila – a performance about the ruins of war and the passion of heart – Bakr Hasan, Alpo Aaltokoski Company and the team" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66252/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66251", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kanneltalo/haetaetila-3891893/", "sv": "https://www.lippu.fi/artist/kanneltalo/haetaetila-3891893/", "en": "https://www.lippu.fi/artist/kanneltalo/haetaetila-3891893/" }, "description": null, "price": { "fi": "20 € / 15 € / 0 €", "sv": "20 € / 15 € / 0 €", "en": "20 € / 15 € / 0 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 804191, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-19T13:14:10.491539Z", "last_modified_time": "2025-05-19T13:14:10.491557Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773057.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/804191/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-05-19T13:14:10.318236Z", "last_modified_time": "2025-11-08T14:13:13.180817Z", "date_published": null, "start_time": "2025-11-11T16: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, "short_description": { "fi": "Siitä, mitä neljä naista näkivät, voi tulla totta minä hetkenä hyvänsä. Monitaiteinen näyttämöteos mielensisäisestä sodasta kuvitteellisessa kaupungissa.", "sv": "Det som fyra kvinnor sett kan bli verklighet när som helst. Ett tvärkonstnärligt scenkonstverk om ett själsligt krig i en fiktiv stad.", "en": "What these four women saw could turn into reality at any moment. A multidisciplinary stage art work about internal war of the mind in an imaginary city." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4DA043DCCA32CC73B3A84D1F320503F7/Hatatila_esitys_sodan_raunioista_ja_sydamen_palosta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4DA043DCCA32CC73B3A84D1F320503F7/Hatatila_en_forestallning_om_krigets_ruiner_och_hjartats_brand", "en": "http://www.kanneltalo.fi/en/events/event/4DA043DCCA32CC73B3A84D1F320503F7/Hatatila_a_performance_about_the_ruins_of_war_and_the_passion_of_heart" }, "description": { "fi": "<p>Siitä, mitä neljä naista näkivät, voi tulla totta minä hetkenä hyvänsä. Monitaiteinen näyttämöteos mielensisäisestä sodasta kuvitteellisessa kaupungissa.</p><p>Hätätila kertoo neljästä naisesta, jotka ovat kokeneet sodan synnyinmaassaan. Nyt he asuvat pohjoisessa valtiossa kaukana sekasorrosta. Mutta vaikka heidän kehonsa ovat päässeet turvaan, heidän sielunsa elävät edelleen sodan kauhuja. Traumat kummittelevat heissä kuin hiljainen virus ja piinaavat heidän mielikuvitustaan toistaen silmien edessä tuhon ja kuoleman kohtauksia. <br> <br>Tässä esityksessä kutsumme yleisön astumaan kuvitteelliseen maailmaan, joka kumpuaa näiden neljän naisen sisältä, heidän näkyihinsä tallennetuista kuvista. Se on maailma, jossa totuus ja taru sekoittuvat, ja jossa rauhanomainen paikka muuttuu yhtäkkiä pelon tantereeksi. <br> <br>Esitys alkaa fantasiamaailmasta, jossa naiset joutuvat kuvitteelliseen eurooppalaiseen rauniokaupunkiin – tuntemattomaan kaupunkiin, josta kuitenkin voi tunnistaa piirteitä tunnetuista länsimaisista, sodan runtelemista kaupungeista – ja etenee liikkeen, äänimaisemien ja visuaalisen kerronnan keinoin. <br> <br>Kaiken keskellä fiktiivinen diktaattori ottaa tuhotun kaupungin ja naiset haltuunsa. Syntyy konflikti, jossa naiset kapinoivat diktaattorin auktoriteettia vastaan ja etsivät keinoja selviytyä ja paeta. <br> <br>Lopulta naiset keräävät voimansa ja vapautuvat peloistaan. He ymmärtävät, että se mitä heille tapahtui, oli illuusio – mutta se oli illuusio, joka kantaa todelliselle maailmalle varoittavan viestin: Emme halua elää tällaista painajaista. Siitä, mitä naiset näkivät, voi tulla totta minä hetkenä hyvänsä. Aina on myös mahdollisuus välttää se. <br> <br>Teos on saanut innoituksensa Albert Camus’n näytelmästä L’État de siège (1948). Produktio on toteutettu Suomen Kulttuurirahaston Maailma näyttämölle -apurahan ja Opetus- ja kulttuuriministeriön hankeavustuksen turvin. <br> <br>Sisältöhuomio: Tapahtuma sisältää sodan ja kriisien kuvausta.</p><p>Esitys on suunnattu yli 13-vuotiaille.<br> <br>Kesto: 1 tunti</p><p>Tiistain 11.11. ja keskiviikon 12.11. esitysten jälkeen salissa järjestetään yleisökeskustelu englanniksi.</p><p>Kieli: Pääasiassa sanaton esitys, jossa käytetään myös jonkin verran suomea ja englantia.</p><p><b>Valtuusto 150 vuotta -etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Huomioithan esityksen teemat ja ikäsuosituksen.</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kanneltalo-helsingin-kaupunki-nuorisolippu-kanneltalo-20219368/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p><p><b>Työryhmä</b><br>Bakr Hasan on Irakissa syntynyt näyttelijä ja teatterintekijä, joka nousi suomalaisten tietoisuuteen teoksellaan Bagdadin Julia (2022). Ethno Contemporary Ballet on ukrainalaislähtöinen tanssiryhmä, jossa esiintyvät tanssija ja koreografi Nina Bulgakova sekä tanssijat Anastasiia Mostova ja Kateryna Zhuravlova. Ryhmä tunnetaan tunteikkaan tarinallisista teoksistaan ja kansainvälisistä yhteistyöprojekteista. Angela Aldebs on Syyriasta kotoisin oleva tanssija ja koreografi, joka on työskennellyt mm. Kansallisteatterissa useissa eri produktioissa. Kati Outinen on ikoninen suomalainen näyttelijä, joka palkittiin Lyypekin pohjoismaisen elokuvafestivaalin elämäntyöpalkinnolla 2024.</p><p>Ohjaus, käsikirjoitus: Bakr Hasan <br>Koreografi: Alpo Aaltokoski <br>Esiintyjät: Angela Aldebs, Nina Bulgakova, Bakr Hasan, Anastasiia Mostova, Kati Outinen (videolla), Kateryna Zhuravlova <br>Lavastus: Markus Tsokkinen <br>Valosuunnittelu, videot: Kosti Kinnunen <br>Pukusuunnittelu: Anna Sinkkonen <br>Valokuvat: Kai Kuusisto <br>Tuotanto: Helmi Saksala, Nomadi-tuotanto</p>", "sv": "<p>Det som fyra kvinnor sett kan bli verklighet när som helst. Ett tvärkonstnärligt scenkonstverk om ett själsligt krig i en fiktiv stad.</p><p>Hätätila berättar om fyra kvinnor som har upplevt ett krig i sitt hemland. Nu bor de i ett nordligt land långt från kaoset. Men fastän deras kroppar är i trygghet lever deras själar fortfarande med krigets fasor. Deras trauman spökar i dem som ett tyst virus och plågar dem genom att spela upp scener av förstörelse och död framför deras ögon. <br> <br>I den här föreställningen bjuder vi in publiken att stiga in i en fiktiv värld, som väller fram ur dessa fyra kvinnor, ur de bilder som finns hos dem. Det är en värld där verklighet och fiktion blandas ihop och där en fredlig plats plötsligt blir ett fält av rädsla. <br> <br>Förställningen börjar i en fantasivärld, där kvinnorna hamnar i en fiktiv europeisk ruinstad – en okänd stad, där man ändå kan känna igen drag av den bekanta västvärlden, krigshärjade städer – och rör sig framåt genom rörelser, ljudlandskap och visuellt berättande. <br> <br>Mitt i allting tar en fiktiv diktator makten över den förstörda staden och kvinnorna. Det uppstår en konflikt, där kvinnorna revolterar mot diktatorns auktoritet och söker sätt att överleva och fly. <br> <br>Till slut samlar kvinnorna sina krafter och blir fria från rädslan. De förstår att det som hände dem var en illusion – men det var en illusion med ett budskap som är en varning till den verkliga världen: Vi vill inte leva i en sådan mardröm. Det som kvinnorna såg kan bli verklighet när som helst. Det är också alltid möjligt att undvika det. <br> <br>Verket är inspirerat av Albert Camus pjäs L’État de siège (1948). Produktionen har genomförts med hjälp av Finska kulturfondens Maailma näyttämölle-stipendium och Undervisnings- och kulturministeriets projektunderstöd. <br> <br>Notera om innehållet: Evenemanget innehåller beskrivningar av krig och kriser.</p><p>Föreställningen riktar sig till personer över 13 år.</p><p>Längd: 1 h</p><p>Evenemangets språk: Huvudsakligen ordlös föreställning, även finska och engelska används.</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Observera föreställningens teman och åldersrekommendationen.</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kanneltalo-helsingin-kaupunki-nuorisolippu-kanneltalo-20219368/?affiliate=FSF#tab=\">HÄR</a></u></p><p><b>Arbetsgrupp</b><br>Bakr Hasan är en skådespelare och teaterkonstnär född i Irak, som blev känd bland finländarna genom sitt verk Bagdadin Julia (2022). Ethno Contemporary Ballet är en ukrainsk dansgrupp som består av dansaren och koreografen Nina Bulgakova samt dansarna Anastasiia Mostova och Kateryna Zhuravlova. Gruppen är känd för sina känslosamma och episka verk samt sina internationella samarbetsprojekt. Angela Aldebs är en dansare och koreograf från Syrien, som bland annat har arbetat i flera produktioner på Nationalteatern. Kati Outinen är en ikonisk finländsk skådespelare som belönades med ett livsverkspris vid Nordiska filmdagarna Lübeck 2024.</p><p>Regi, manus: Bakr Hasan <br>Koreograf: Alpo Aaltokoski <br>På scenen: Angela Aldebs, Nina Bulgakova, Bakr Hasan, Anastasiia Mostova, Kati Outinen (på videon), Kateryna Zhuravlova <br>Iscensättning: Markus Tsokkinen <br>Ljusdesign, video: Kosti Kinnunen <br>Kostym: Anna Sinkkonen <br>Fotografier: Kai Kuusisto <br>Produktion: Helmi Saksala, Nomadi-tuotanto</p>", "en": "<p>What these four women saw could turn into reality at any moment. A multidisciplinary stage art work about internal war of the mind in an imaginary city.</p><p>Hätätila – ‘state of emergency’ – is a show about four women who experienced war in their country of origin. Now they are living in a northern country far away from the chaos. But even though their corporal bodies are now safe, their souls are still reliving the horrors of war. Their traumas haunt them like a silent virus, tormenting their imagination and repeating scenes of destruction and death right before their minds’ eyes. <br> <br>In this performance, we invite our audience to step into an imaginary world that grows from within these four women and stems from the images stored in their visions. A world where truth and stories intertwine and where a place of peace suddenly transforms into a terrain of terror. <br> <br>The performance starts in a fantasy world where the women end up in imaginary European city ruins that still have clear, identifiable characteristics of well-known Western countries and war-torn cities. Movement, different soundscapes and visual storytelling move the story forward from there. <br> <br>In the midst of it all, a fictitous dictator takes control of the city – and the women. A conflict breaks out, where the women rebel against the dictator’s authority and look for ways to survive and escape. <br> <br>In the end, the women gather their strength and become free of their fears. They understand that what happened to them was only an illusion – but an illusion that carries a warning to the real world: We do not want to live through this kind of a nightmare. What these women saw could turn into reality at any moment. But there is always the chance to avoid this. <br> <br>The work was inspired by the play L’État de siège (The State of Siege, 1948) written by Albert Camus. The production was implemented with the help of the World on Stage grant from the Finnish Cultural Foundation and project funding from the Ministry of Education and Culture.</p><p>Please note: The event includes depictions of war and crises.</p><p>The performance is intended for audiences over the age of 13.</p><p>Duration: 1 h</p><p>Audience discussion in English after the performance on Tuesday 11 November and on Wednesday 12 November. Welcome!</p><p>Language of the event: Mainly a non-verbal performance that also uses some Finnish and English.</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Please note the performance themes and the age recommendation.</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kanneltalo-helsingin-kaupunki-nuorisolippu-kanneltalo-20219368/?affiliate=FSF#tab=\">HERE</a></u></p><p><b>Team</b><br>Bakr Hasan is an Iraq-born actor and theatre producer that became well-known in Finland with his work Bagdadin Julia (‘Julia of Baghdad’, 2022). Ethno Contemporary Ballet is a dance group, originally from Ukraine, featuring dancer and choreographer Nina Bulgakova and dancers Anastasiia Mostova and Kateryna Zhuravlova. The group is known for their expressive and evocative works and their international cooperation projects. Angela Aldebs is a Syria-born dancer and choreographer that has worked in several different productions with the Finnish National Theatre, for example. Kati Outinen is an iconic Finnish actress to whom the Nordic Film Days in Lübeck dedicated its Homage in 2024.</p><p>Direction, screenplay: Bakr Hasan<br>Choreography: Alpo Aaltokoski<br>Performers: Angela Aldebs, Nina Bulgakova, Bakr Hasan, Anastasiia Mostova, Kati Outinen (on video), Kateryna Zhuravlova<br>Staging: Markus Tsokkinen<br>Lighting design, videos: Kosti Kinnunen<br>Costume design: Anna Sinkkonen<br>Photos: Kai Kuusisto <br>Production: Helmi Saksala, Nomadi-tuotanto</p>" }, "name": { "fi": "Hätätila – esitys sodan raunioista ja sydämen palosta – Bakr Hasan, Alpo Aaltokoski Company ja työryhmä", "sv": "Hätätila – en föreställning om krigets ruiner och hjärtats brand – Bakr Hasan, Alpo Aaltokoski Company och arbetsgruppen", "en": "Hätätila – a performance about the ruins of war and the passion of heart – Bakr Hasan, Alpo Aaltokoski Company and the team" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66251/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67087", "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: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: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-veden-vartija-3209461/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-veden-vartija-3209461/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-veden-vartija-3209461/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490922, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T10:13:38.447347Z", "last_modified_time": "2025-09-26T10:13:38.447358Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777860.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490922/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-26T10:13:38.349679Z", "last_modified_time": "2025-11-08T11:13:04.782171Z", "date_published": null, "start_time": "2025-11-14T08: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, "short_description": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9E4AE230648A7BB622BC328A1614DAE1/Wilman_Dance_co_Voimaelain", "sv": "http://www.annantalo.fi/sv/evenemang/event/9E4AE230648A7BB622BC328A1614DAE1/Wilman_Dance_co_Voimaelain", "en": "http://www.annantalo.fi/en/events/event/9E4AE230648A7BB622BC328A1614DAE1/Wilman_Dance_co_Voimaelain" }, "description": null, "name": { "fi": "Wilman Dance co: Voimaeläin", "sv": "Wilman Dance co: Voimaeläin", "en": "Wilman Dance co: Voimaeläin" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67087/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67086", "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: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: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-veden-vartija-3209461/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-veden-vartija-3209461/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-veden-vartija-3209461/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490918, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T09:13:33.306472Z", "last_modified_time": "2025-09-26T09:13:33.306486Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777857.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490918/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-26T09:13:33.186034Z", "last_modified_time": "2025-11-08T11:13:04.308963Z", "date_published": null, "start_time": "2025-11-13T08:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CCA6D7A4C2436CEEB278C2DA9F7DD895/Wilman_Dance_co_Voimaelain", "sv": "http://www.annantalo.fi/sv/evenemang/event/CCA6D7A4C2436CEEB278C2DA9F7DD895/Wilman_Dance_co_Voimaelain", "en": "http://www.annantalo.fi/en/events/event/CCA6D7A4C2436CEEB278C2DA9F7DD895/Wilman_Dance_co_Voimaelain" }, "description": null, "name": { "fi": "Wilman Dance co: Voimaeläin", "sv": "Wilman Dance co: Voimaeläin", "en": "Wilman Dance co: Voimaeläin" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67086/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67088", "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: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: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-veden-vartija-3209461/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-veden-vartija-3209461/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-veden-vartija-3209461/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490921, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T10:13:36.981661Z", "last_modified_time": "2025-09-26T10:13:36.981676Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777856.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490921/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-26T10:13:36.871263Z", "last_modified_time": "2025-11-08T11:13:04.139955Z", "date_published": null, "start_time": "2025-11-13T07: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, "short_description": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9BF269CB031CE00AB6111C972C3B6B21/Wilman_Dance_co_Voimaelain", "sv": "http://www.annantalo.fi/sv/evenemang/event/9BF269CB031CE00AB6111C972C3B6B21/Wilman_Dance_co_Voimaelain", "en": "http://www.annantalo.fi/en/events/event/9BF269CB031CE00AB6111C972C3B6B21/Wilman_Dance_co_Voimaelain" }, "description": null, "name": { "fi": "Wilman Dance co: Voimaeläin", "sv": "Wilman Dance co: Voimaeläin", "en": "Wilman Dance co: Voimaeläin" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67088/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66127", "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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1201885, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T08:17:43.363662Z", "last_modified_time": "2025-07-07T08:17:43.363681Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772231.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201885/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-07T08:17:43.240598Z", "last_modified_time": "2025-11-07T12:13:46.143289Z", "date_published": null, "start_time": "2025-11-14", "end_time": "2026-04-11", "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, "short_description": { "fi": "Kaukana Maasta, kylmien tähtien katveessa, hiljainen kadonneiden esineiden tähdistö liikkuu hitaasti. Tutkiva katse huomaa sen. Onko se viesti vai vain jokin jälki?", "sv": "Långt från jorden, bland de kalla stjärnorna, roterar en tyst konstellation av förlorade saker långsamt. En nyfiken blick faller på den. Är det här ett meddelande eller bara ett spår?", "en": "Far from Earth, among the cold stars, a quiet constellation of lost things turns slowly. A curious gaze meets it. Is this a message, or just a trace?" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/84820D87546D143CC414AC64E798D957/Echoes_Through_Light-Years", "sv": "http://www.annantalo.fi/sv/evenemang/event/84820D87546D143CC414AC64E798D957/Echoes_Through_Light-Years", "en": "http://www.annantalo.fi/en/events/event/84820D87546D143CC414AC64E798D957/Echoes_Through_Light-Years" }, "description": { "fi": "<p>Kaukana Maasta, kylmien tähtien katveessa, hiljainen kadonneiden esineiden tähdistö liikkuu hitaasti. Tutkiva katse huomaa sen. Onko se viesti vai vain jokin jälki?</p><p>Echoes Through Light-Years (Kaikuja valovuosien takaa) on leikkisä tutkimusmatka, jossa taiteilijat Alves Ludovico ja Mariana Núñez Sánchez kutsuvat nuoret tutkijat tulkitsemaan hiljaisen maailmojenvälisen lähetyksen. Veistokset leijuvat matalalla kuin eksyneet satelliitit. Robotti vaeltaa huoneessa yksinäisellä tehtävällään. Kaksi kaukaista olentoa yrittää ymmärtää toisiaan ilman yhteistä kieltä, tukeutuen vain eleisiin ja arvailuun.</p><p>Mitä haluaisit sanoa kummalliselle toiselle valovuosien päässä? Ja mitä meidän jäänteemme kertoisivat meistä, vaikka emme itse sanoisi yhtään mitään?</p><p>Näyttelyn ovat toteuttaneet taiteilijat <b>Alves Ludovico</b> ja <b>Mariana Núñez Sánchez</b>, kuraattori <b>Isabela Hueara Carneiro</b> ja äänitaiteilija <b>Haiyun Yu</b>.</p><p>Näyttelyn avajaiset 13.11. klo 17–19, tervetuloa!</p><p>_</p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kesän 2024 aikana hakuun tuli 126 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kolme näyttelyä toisen kerroksen galleriaan.</p>", "sv": "<p>Långt från jorden, bland de kalla stjärnorna, roterar en tyst konstellation av förlorade saker långsamt. En nyfiken blick faller på den. Är det här ett meddelande eller bara ett spår?</p><p>Echoes Through Light-Years (Ekar genom ljusår) är en lekfull utforskning där konstnärerna Alves Ludovico och Mariana Núñez Sánchez bjuder in unga utforskare att avkoda en tyst överföring mellan världar. Skulpturer driver lågt som förlorade satelliter. En robot vandrar runt i rummet på ett ensamt uppdrag. Två avlägsna varelser försöker förstå varandra utan ett gemensamt språk och förlitar sig endast på gester och gissningar.</p><p>Vad skulle du vilja säga till en nyfiken annan, ljusår bort? Och vad skulle våra efterlämningar säga om oss, även då vi inte säger någonting alls?</p><p>Utställningen skapades av konstnärerna <b>Alves Ludovico</b> och <b>Mariana Núñez Sánchez</b>, curatorn <b>Isabela Hueara Carneiro</b> och ljudkonstnären <b>Haiyun Yu</b>.</p><p>Vernissagen är den 13.11. kl. 17–19 – Välkommen!</p><p>_</p><p>Utställningen har valts till repertoaren genom Annegårdens öppna ansökan. Under sommaren 2024 lämnades 126 ansökningar av vilka Annegårdens elevråd valde tre utställningar till galleriet på andra våningen.</p>", "en": "<p>Far from Earth, among the cold stars, a quiet constellation of lost things turns slowly. A curious gaze meets it. Is this a message, or just a trace?</p><p>Echoes Through Light-Years is a playful exploration in which artists Alves Ludovico and Mariana Núñez Sánchez invite young explorers to decode a quiet transmission between worlds. Sculptures drift low like lost satellites. A robot roves the room on a lonely quest. Two distant beings attempt to understand each other without a common tongue, relying only on gestures and guesswork.</p><p>What would you want to say to a curious other, light-years away? And what might our leftovers say about us, even if we say nothing at all?</p><p>The exhibition was created by artists <b>Alves Ludovico</b> and <b>Mariana Núñez Sánchez</b>, curator <b>Isabela Hueara Carneiro</b>, and sound artist <b>Haiyun Yu</b>.</p><p>Exhibition opening on November 13th from 17 to 19– Welcome!</p><p>_</p><p>The exhibition was selected for the programme through Annantalo’s open call. During the summer of 2024, 126 applications were submitted, from which Annantalo’s student jury selected three exhibitions for the gallery on the second floor of the building.</p>" }, "name": { "fi": "Echoes Through Light-Years – Näyttely", "sv": "Echoes Through Light-Years – Utställning", "en": "Echoes Through Light-Years – Exhibition" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66127/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-3880", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "route:<nolink>" }, "description": null, "price": null } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [ { "id": 1493762, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-07T12:05:30.846196Z", "last_modified_time": "2025-11-07T12:05:30.846224Z", "url": "https://helsinginkaupunginorkesteri.fi/sites/default/files/2025-10/tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "name": "tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "cropping": "", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:u4804001030", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493762/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:59:01.104326Z", "last_modified_time": "2025-11-07T12:05:31.225491Z", "date_published": null, "start_time": "2025-11-15T16:10:00Z", "end_time": "2025-11-15T16: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, "short_description": { "fi": "Musiikkitalon Päälämpiössä konsertoivat helsinkiläisten musiikkiopistojen oppilaat.", "sv": "Elever från musikinstituten i Helsingfors uppträder i Musikhusets huvudfoajé före HSOs konserter inleds.", "en": "HPO has invited music schools in Helsinki to perform in the main foyer of the Helsinki Music Centre before its concerts." }, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/3880", "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/3880", "en": "https://helsinginkaupunginorkesteri.fi/en/node/3880" }, "description": { "fi": "<p>Musiikkitalon Päälämpiössä konsertoivat helsinkiläisten musiikkiopistojen oppilaat.</p>", "sv": "<p>Elever från musikinstituten i Helsingfors uppträder i Musikhusets huvudfoajé före HSOs konserter inleds.</p>", "en": "<p>HPO has invited music schools in Helsinki to perform in the main foyer of the Helsinki Music Centre before its concerts.</p>" }, "name": { "fi": "HKO: Pieni alkusoitto", "sv": "HSO – Liten ouvertyr ", "en": "HPO – Little Overture " }, "provider_contact_info": null, "location_extra_info": { "fi": "Päälämpiö", "sv": "Huvudfoajé", "en": "Main Foyer" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-3880/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-272222222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [ { "id": 1491323, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-07T09:12:16.221071Z", "last_modified_time": "2025-11-07T09:12:16.221086Z", "url": "https://helsinginkaupunginorkesteri.fi/sites/default/files/2025-10/tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "name": "tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "cropping": "", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:u4804001030", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491323/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:24:28.712201Z", "last_modified_time": "2025-11-07T10:24:28.712218Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "provider_contact_info": null, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-272222222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-27222222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:22:50.458088Z", "last_modified_time": "2025-11-07T10:22:50.458118Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "provider_contact_info": null, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-27222222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-2722222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:17:22.377879Z", "last_modified_time": "2025-11-07T10:17:22.377899Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "provider_contact_info": null, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2722222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-272222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:16:34.912510Z", "last_modified_time": "2025-11-07T10:16:34.912525Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "provider_contact_info": null, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-272222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-27222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:16:05.372968Z", "last_modified_time": "2025-11-07T10:16:05.372984Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "provider_contact_info": null, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-27222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:1ecfd75d-d9b2-4c47-bedb-679b4c22c746", "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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=61125_LE_Kielivalinnat_EK1679173119" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-11-06T20:17:49.819468Z", "last_modified_time": "2025-11-06T20:22:44.633410Z", "date_published": "2025-11-06T20:17:16Z", "start_time": "2025-11-10T07:00:00Z", "end_time": "2025-11-10T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 25, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-11-07T08:00:00+02:00", "enrolment_end_time": "2025-11-10T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "Lyhyt kuvaus FI", "sv": "Lyhyt kuvaus SV" }, "info_url": null, "description": { "fi": "<div><p>Tarkka kuvaus FI</p></div>", "sv": "<div><div>Tarkka kuvaus SV</div></div>" }, "name": { "fi": "6/11/25 LE Kielivalinnat EK", "sv": "6/11/25 LE Kielivalinnat EK SV" }, "provider_contact_info": null, "location_extra_info": { "fi": "Ylätila" }, "provider": { "fi": "Annantalo", "sv": "Annantalo SV" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:1ecfd75d-d9b2-4c47-bedb-679b4c22c746/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67256", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p40387/?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:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491321, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-06T15:13:08.298587Z", "last_modified_time": "2025-11-06T15:13:08.298598Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777758.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491321/?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": "2025-11-06T15:13:08.198112Z", "last_modified_time": "2025-11-06T15:13:08.420299Z", "date_published": null, "start_time": "2025-11-20T12:00:00Z", "end_time": "2025-11-20T12: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, "short_description": { "fi": "Kun kirja avataan, siellä on kirjaimia ja kuvia. Kuka ne tekee? Ja sitten vielä ne, jotka kirjoittavat ja piirtävät. Ja vielä hän, joka lukee tai kuuntelee.", "sv": "När boken öppnas, finns bokstäver och bilder där. Vem skapar dem? Och sedan ännu de som skriver och tecknar. Och ännu hen som läser eller lyssnar.", "en": "When a book opens, it’s filled with letters and pictures. Who makes them all? And then there are the ones that write and draw. And the one who reads or listens." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F96A88B4D8B89A46BEF3D6979ED52EFC/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan", "sv": "http://www.annantalo.fi/sv/evenemang/event/F96A88B4D8B89A46BEF3D6979ED52EFC/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan", "en": "http://www.annantalo.fi/en/events/event/F96A88B4D8B89A46BEF3D6979ED52EFC/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan" }, "description": { "fi": "<p>Kun kirja avataan, siellä on kirjaimia ja kuvia. Kuka ne tekee? Ja sitten vielä ne, jotka kirjoittavat ja piirtävät. Ja vielä hän, joka lukee tai kuuntelee.</p><p>Työpajoissa tutustutaan lasten kanssa kirjan salaisuuksiin kirjailijan ja kuvittajan ja näyttelijän kanssa. Lapset saavat esittää kysymyksiä paikalla oleville tekijöille, esittää omia näkemyksiään kirjan tarinasta: paikoista, henkilöistä, juonesta. He saavat myös asettua kriitikon, kuvittajan ja kirjailijan asemaan ja kertoa, miten he olisivat jonkin kirjan sisältämistä asioista kertoneet tai kuvittaneet. Näyttelijä tarjoutuu heidän käyttöönsä ja rakentaa lasten ehdotusten mukaan kirjan henkilöä, tapahtumia ja varsinkin kirjan henkilöiden päässä olevia ajatuksia, joita ei aina ole kirjaan kirjoitettu. <br> <br>Keskustelussa on tarkoitus myös pohtia, miksi vieressä istujan mielipide henkilöistä, tapahtumista, paikoista onkin toisenlainen kuin oma. Mistä erot voisivat johtua? Onko edes olemassa oikeaa tapaa lukea, katsoa ja ymmärtää tekstiä ja kuvia? <br> <br>Myös esiintyjät saavat oman puheenvuoronsa, he kertovat, miten tarina ja kuva heidän kynästään syntyy, miten tarinaa rakennetaan näyttämölle. Entä jos kirjan päähenkilöllä onkin punainen tukka, mutta näyttelijän hiukset ovatkin maantienväriset? Onko tällä väliä? Lopuksi lapset saavat kuvittaa ja esittää itse kertomansa tapahtuman, joka voisi olla kirjan kansien välissä. <br> <br>Työpajoissa ollaan herkkäkorvaisia ja edetään lasten esittämien kysymysten ja näkemysten mukaan, ei aikuisten opetustilannetta.</p><p><b>Ilmoittautuminen työpajoihin</b><br>Työpajat ovat maksuttomia, mutta vaativat ilmoittautumisen etukäteen. Lähetä sähköposti Kaisa Langelle ja ilmoita kumpaan työpajaan olette lapsen/lasten kanssa tulossa. Ilmoittaudu sähköpostitse viimeistään 19.11.: kaisa.lange@gmail.com</p><p>Kohderyhmä: 5–8-vuotiaat <br>Kieli: suomi <br>Vapaa pääsy</p><p>Järj. Pro lastenkirjallisuus ry</p>", "sv": "<p>När boken öppnas, finns bokstäver och bilder där. Vem skapar dem? Och sedan ännu de som skriver och tecknar. Och ännu hen som läser eller lyssnar.</p><p>Man bekantar sig tillsammans med barnen, författaren, illustratören och skådespelaren med bokens hemligheter under evenemanget. Barnen får ställa frågor till upphovsmännen på plats, framföra sina egna åsikter om bokens berättelse: platser, personer, handling. De får också ställa sig i kritikerns, illustratörens och författarens position och berätta hur de skulle ha berättat eller illustrerat något i bokens innehåll. Skådespelaren ställer sig till deras förfogande och skapar enligt barnens förslag bokens karaktär, evenemang och i synnerhet de tankar som finns i huvudet på bokens karaktärer, vilka inte alltid skrivits i boken. <br> <br>Det är meningen att man i diskussionen även funderar på varför den bredvidsittande personens åsikt om karaktärerna, händelserna och platserna är annorlunda än den egna. Vad kunde skillnaderna bero på? Finns det ens ett rätt sätt att läsa, titta på och förstå text och bilder? <br> <br>Även uppträdarnafår ett eget anförande, där de berättar hur berättelsen och bilderna uppstår ur deras penna, hur berättelsen byggs upp på scenen. Tänk om bokens huvudperson har rött hår, men skådespelarens hår är landsvägsgrått? Spelar det någon roll? Slutligen får barnen illustrera och presentera en händelse som de själva berättar och som kunde finnas mellan en bokpärm. <br> <br>Under evenemangen lyssnar man noggrant på barnen och framskrider enligt deras frågor och åsikter, inte enligt de vuxnas undervisningssituation.</p><p>Workshopparna är avgiftsfria, men kräver förhandsanmälan. Skicka ett e-postmeddelande och meddela till vilken workshop ni kommer med barnet/barnen. Anmäl dig per e-post senast 19.11. kaisa.lange@gmail.com</p><p>Målgrupp: 5–8-åringar<br>Språk: finska</p>", "en": "<p>When a book opens, it’s filled with letters and pictures. Who makes them all? And then there are the ones that write and draw. And the one who reads or listens.</p><p>In these events, children will explore the secrets if books together with the author, illustrator and actor. The children can ask questions to them and present their own views about the story in the book, its places, characters and the plot. They can also step into the shoes of a critic, an illustrator and an author and share how they would have expressed or illustrated some of the things in the book. The actor will be available to them, following the children’s suggestions and depicting the book’s character, the events and especially the thoughts inside the heads of the book characters, which may not always have been written on the pages. <br> <br>The purpose of the discussion is also to consider why the person sitting next to you may have such a different view of the character, the events and the places. What could cause these differences? And is there just one right way to read, to watch and to understand a text and images? <br> <br>The performers are also given their turn to share how the stories and illustrations flow from their pens and how the story is built on stage. What happens when the book’s main character has red hair, but the actor’s hair is mouse-coloured? Does this matter? Finally, the children will get to illustrate and present a story told by them that could be found between the covers of a book. <br> <br>We will proceed sensitively in these events, moving forward based on the questions and views presented by the children; this is not an educational lecture for adults.</p><p>The workshops are free of charge, but require prior registration. Please send an email to Kaisa Lange, kaisa.lange@gmail.com and indicate which workshop you and your child/children will attend. Please register by email no later than November 19th.</p><p>Target group: 5–8-year-olds<br>Language: Finnish</p>" }, "name": { "fi": "Lastenkulttuuria jokaiselle: Kun kirja avataan", "sv": "Lastenkulttuuria jokaiselle: Kun kirja avataan", "en": "Lastenkulttuuria jokaiselle: Kun kirja avataan" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67256/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67099", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p40387/?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:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491320, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-06T15:13:07.934445Z", "last_modified_time": "2025-11-06T15:13:07.934456Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777757.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491320/?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": "2025-11-06T15:13:07.832775Z", "last_modified_time": "2025-11-06T15:13:08.092931Z", "date_published": null, "start_time": "2025-11-20T11:00:00Z", "end_time": "2025-11-20T11: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, "short_description": { "fi": "Kun kirja avataan, siellä on kirjaimia ja kuvia. Kuka ne tekee? Ja sitten vielä ne, jotka kirjoittavat ja piirtävät. Ja vielä hän, joka lukee tai kuuntelee.", "sv": "När boken öppnas, finns bokstäver och bilder där. Vem skapar dem? Och sedan ännu de som skriver och tecknar. Och ännu hen som läser eller lyssnar.", "en": "When a book opens, it’s filled with letters and pictures. Who makes them all? And then there are the ones that write and draw. And the one who reads or listens." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/96DE90632A402B1E30C8AE8815EEA370/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan", "sv": "http://www.annantalo.fi/sv/evenemang/event/96DE90632A402B1E30C8AE8815EEA370/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan", "en": "http://www.annantalo.fi/en/events/event/96DE90632A402B1E30C8AE8815EEA370/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan" }, "description": { "fi": "<p>Kun kirja avataan, siellä on kirjaimia ja kuvia. Kuka ne tekee? Ja sitten vielä ne, jotka kirjoittavat ja piirtävät. Ja vielä hän, joka lukee tai kuuntelee.</p><p>Työpajoissa tutustutaan lasten kanssa kirjan salaisuuksiin kirjailijan ja kuvittajan ja näyttelijän kanssa. Lapset saavat esittää kysymyksiä paikalla oleville tekijöille, esittää omia näkemyksiään kirjan tarinasta: paikoista, henkilöistä, juonesta. He saavat myös asettua kriitikon, kuvittajan ja kirjailijan asemaan ja kertoa, miten he olisivat jonkin kirjan sisältämistä asioista kertoneet tai kuvittaneet. Näyttelijä tarjoutuu heidän käyttöönsä ja rakentaa lasten ehdotusten mukaan kirjan henkilöä, tapahtumia ja varsinkin kirjan henkilöiden päässä olevia ajatuksia, joita ei aina ole kirjaan kirjoitettu. <br> <br>Keskustelussa on tarkoitus myös pohtia, miksi vieressä istujan mielipide henkilöistä, tapahtumista, paikoista onkin toisenlainen kuin oma. Mistä erot voisivat johtua? Onko edes olemassa oikeaa tapaa lukea, katsoa ja ymmärtää tekstiä ja kuvia? <br> <br>Myös esiintyjät saavat oman puheenvuoronsa, he kertovat, miten tarina ja kuva heidän kynästään syntyy, miten tarinaa rakennetaan näyttämölle. Entä jos kirjan päähenkilöllä onkin punainen tukka, mutta näyttelijän hiukset ovatkin maantienväriset? Onko tällä väliä? Lopuksi lapset saavat kuvittaa ja esittää itse kertomansa tapahtuman, joka voisi olla kirjan kansien välissä. <br> <br>Työpajoissa ollaan herkkäkorvaisia ja edetään lasten esittämien kysymysten ja näkemysten mukaan, ei aikuisten opetustilannetta.</p><p><b>Ilmoittautuminen työpajoihin</b><br>Työpajat ovat maksuttomia, mutta vaativat ilmoittautumisen etukäteen. Lähetä sähköposti Kaisa Langelle ja ilmoita kumpaan työpajaan olette lapsen/lasten kanssa tulossa. Ilmoittaudu sähköpostitse viimeistään 19.11.: kaisa.lange@gmail.com</p><p>Kohderyhmä: 5–8-vuotiaat <br>Kieli: suomi <br>Vapaa pääsy</p><p>Järj. Pro lastenkirjallisuus ry</p>", "sv": "<p>När boken öppnas, finns bokstäver och bilder där. Vem skapar dem? Och sedan ännu de som skriver och tecknar. Och ännu hen som läser eller lyssnar.</p><p>Man bekantar sig tillsammans med barnen, författaren, illustratören och skådespelaren med bokens hemligheter under evenemanget. Barnen får ställa frågor till upphovsmännen på plats, framföra sina egna åsikter om bokens berättelse: platser, personer, handling. De får också ställa sig i kritikerns, illustratörens och författarens position och berätta hur de skulle ha berättat eller illustrerat något i bokens innehåll. Skådespelaren ställer sig till deras förfogande och skapar enligt barnens förslag bokens karaktär, evenemang och i synnerhet de tankar som finns i huvudet på bokens karaktärer, vilka inte alltid skrivits i boken. <br> <br>Det är meningen att man i diskussionen även funderar på varför den bredvidsittande personens åsikt om karaktärerna, händelserna och platserna är annorlunda än den egna. Vad kunde skillnaderna bero på? Finns det ens ett rätt sätt att läsa, titta på och förstå text och bilder? <br> <br>Även uppträdarnafår ett eget anförande, där de berättar hur berättelsen och bilderna uppstår ur deras penna, hur berättelsen byggs upp på scenen. Tänk om bokens huvudperson har rött hår, men skådespelarens hår är landsvägsgrått? Spelar det någon roll? Slutligen får barnen illustrera och presentera en händelse som de själva berättar och som kunde finnas mellan en bokpärm. <br> <br>Under evenemangen lyssnar man noggrant på barnen och framskrider enligt deras frågor och åsikter, inte enligt de vuxnas undervisningssituation.</p><p>Workshopparna är avgiftsfria, men kräver förhandsanmälan. Skicka ett e-postmeddelande och meddela till vilken workshop ni kommer med barnet/barnen. Anmäl dig per e-post senast 19.11. kaisa.lange@gmail.com</p><p>Målgrupp: 5–8-åringar<br>Språk: finska</p>", "en": "<p>When a book opens, it’s filled with letters and pictures. Who makes them all? And then there are the ones that write and draw. And the one who reads or listens.</p><p>In these events, children will explore the secrets if books together with the author, illustrator and actor. The children can ask questions to them and present their own views about the story in the book, its places, characters and the plot. They can also step into the shoes of a critic, an illustrator and an author and share how they would have expressed or illustrated some of the things in the book. The actor will be available to them, following the children’s suggestions and depicting the book’s character, the events and especially the thoughts inside the heads of the book characters, which may not always have been written on the pages. <br> <br>The purpose of the discussion is also to consider why the person sitting next to you may have such a different view of the character, the events and the places. What could cause these differences? And is there just one right way to read, to watch and to understand a text and images? <br> <br>The performers are also given their turn to share how the stories and illustrations flow from their pens and how the story is built on stage. What happens when the book’s main character has red hair, but the actor’s hair is mouse-coloured? Does this matter? Finally, the children will get to illustrate and present a story told by them that could be found between the covers of a book. <br> <br>We will proceed sensitively in these events, moving forward based on the questions and views presented by the children; this is not an educational lecture for adults.</p><p>The workshops are free of charge, but require prior registration. Please send an email to Kaisa Lange, kaisa.lange@gmail.com and indicate which workshop you and your child/children will attend. Please register by email no later than November 19th.</p><p>Target group: 5–8-year-olds<br>Language: Finnish</p>" }, "name": { "fi": "Lastenkulttuuria jokaiselle: Kun kirja avataan", "sv": "Lastenkulttuuria jokaiselle: Kun kirja avataan", "en": "Lastenkulttuuria jokaiselle: Kun kirja avataan" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67099/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67232", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491319, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-06T15:13:07.527476Z", "last_modified_time": "2025-11-06T15:13:07.527491Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780034.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491319/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-06T15:13:07.422814Z", "last_modified_time": "2025-11-06T15:13:07.662214Z", "date_published": null, "start_time": "2025-11-20T08:00:00Z", "end_time": "2025-11-20T14: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, "short_description": { "fi": "Tule kuulemaan Bravo! -festivaalista ja lapsille ja nuorille suunnatun esittävän taiteen järjestöstä Suomen Assitejsta." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EBD50DB95D266A87B3750A9AD1DB9AA2/Lastenkulttuuria_jokaiselle_Bravo_-festivaali_ja_Assitej_esittaytyvat_", "sv": "http://www.annantalo.fi/sv/evenemang/event/EBD50DB95D266A87B3750A9AD1DB9AA2/Lastenkulttuuria_jokaiselle_Bravo_-festivaali_ja_Assitej_esittaytyvat_", "en": "http://www.annantalo.fi/en/events/event/EBD50DB95D266A87B3750A9AD1DB9AA2/Lastenkulttuuria_jokaiselle_Bravo_-festivaali_ja_Assitej_esittaytyvat_" }, "description": { "fi": "<p>Tule kuulemaan Bravo! -festivaalista ja lapsille ja nuorille suunnatun esittävän taiteen järjestöstä Suomen Assitejsta.</p><p>Esittelypisteellä voit tavata festivaalin tekijöitä ja kuulla lisää Assitejin toiminnasta.</p><p>Vapaa pääsy</p>" }, "name": { "fi": "Lastenkulttuuria jokaiselle: Bravo! -festivaali ja Assitej esittäytyvät", "sv": "Lastenkulttuuria jokaiselle: Bravo! -festivaali ja Assitej esittäytyvät", "en": "Lastenkulttuuria jokaiselle: Bravo! -festivaali ja Assitej esittäytyvät" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67232/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66071", "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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3883402", "sv": "https://www.lippu.fi/eventseries/name-3883402", "en": "https://www.lippu.fi/eventseries/name-3883402" }, "description": null, "price": { "fi": "15-48 € / 30-79 € 2 konserttia", "sv": "15-48 € / 30-79 € 2 konserttia", "en": "15-48 € / 30-79 € 2 konserttia" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 652564, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-30T15:13:55.528124Z", "last_modified_time": "2025-04-30T15:13:55.528139Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771302.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/652564/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-30T15:13:55.454227Z", "last_modified_time": "2025-11-06T13:13:42.998688Z", "date_published": null, "start_time": "2025-11-16T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "The Beat Goes On palaa muutaman vuoden tauon jälkeen Savoy-teatteriin. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.", "sv": "The Beat Goes On återvänder till Savoy-teatern efter ett uppehåll på några år. Det utlovas äkta levande 60-talsmusik, med underbara melodier från årtiondet framförda av många av de ursprungliga musikerna från 60-talet. Dessutom trevliga människor och en härlig atmosfär. Programmet är som vanligt uppdelat på två kvällar.", "en": "The Beat Goes On returns to the Savoy Theatre after a break of a few years. The event delivers real, live Sixties music, with the ever-popular tunes of the 60s performed by a host of original 60s musicians. Plus great people and an amazing atmosphere! As usual, the programme is spread over two evenings:" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/50AE9DCA2DAC6CFF092A5F888FDCDC6B/The_Beat_Goes_On", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/50AE9DCA2DAC6CFF092A5F888FDCDC6B/The_Beat_Goes_On", "en": "http://www.savoyteatteri.fi/en/events/event/50AE9DCA2DAC6CFF092A5F888FDCDC6B/The_Beat_Goes_On" }, "description": { "fi": "<p>The Beat Goes On palaa muutaman vuoden tauon jälkeen Savoy-teatteriin. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.</p><p>Lauantaina 15.11. klo 18.00 alkaen: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Sunnuntaina 16.11. klo 16.00 alkaen: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Kesto n. 3 h, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Liput: 48 €/15 € lapsi, molemmat konsertit 79 €/30 € lapsi + tilausmaksut (alk. 1,50 € + 0,65 % tilauksesta).</p>", "sv": "<p>The Beat Goes On återvänder till Savoy-teatern efter ett uppehåll på några år. Det utlovas äkta levande 60-talsmusik, med underbara melodier från årtiondet framförda av många av de ursprungliga musikerna från 60-talet. Dessutom trevliga människor och en härlig atmosfär. Programmet är som vanligt uppdelat på två kvällar.</p><p>Lördag 15.11 från kl. 18:00: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Söndag 16.11 från kl. 16:00: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Längd ca 3 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Biljetter: 48 €/barn 15 €, båda konserterna 79 €/barn 30 € + bokningsavgifter (från 1,50 € + 0,65 % per bokning).</p>", "en": "<p>The Beat Goes On returns to the Savoy Theatre after a break of a few years. The event delivers real, live Sixties music, with the ever-popular tunes of the 60s performed by a host of original 60s musicians. Plus great people and an amazing atmosphere! As usual, the programme is spread over two evenings:</p><p>Saturday 15 November starting at 18:00: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Sunday 16 November starting at 16:00: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Duration approx. 3 h, intermission included.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>Tickets: €48/children €15, both concerts €79/children €30 + order fees (starting at €1.50 + 0.65% of the order).</p>" }, "name": { "fi": "The Beat Goes On", "sv": "The Beat Goes On", "en": "The Beat Goes On" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Back To The Sixties edistämisyhdistys ry", "sv": "Back To The Sixties edistämisyhdistys ry", "en": "Back To The Sixties edistämisyhdistys ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66071/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66070", "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": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3883402", "sv": "https://www.lippu.fi/eventseries/name-3883402", "en": "https://www.lippu.fi/eventseries/name-3883402" }, "description": null, "price": { "fi": "15-48 € / 30-79 € 2 konserttia", "sv": "15-48 € / 30-79 € 2 konserttia", "en": "15-48 € / 30-79 € 2 konserttia" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 652563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-30T15:13:55.255442Z", "last_modified_time": "2025-04-30T15:13:55.255487Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771301.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/652563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-30T15:13:55.137648Z", "last_modified_time": "2025-11-06T13:13:42.510239Z", "date_published": null, "start_time": "2025-11-15T16: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, "short_description": { "fi": "The Beat Goes On palaa muutaman vuoden tauon jälkeen Savoy-teatteriin. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.", "sv": "The Beat Goes On återvänder till Savoy-teatern efter ett uppehåll på några år. Det utlovas äkta levande 60-talsmusik, med underbara melodier från årtiondet framförda av många av de ursprungliga musikerna från 60-talet. Dessutom trevliga människor och en härlig atmosfär. Programmet är som vanligt uppdelat på två kvällar.", "en": "The Beat Goes On returns to the Savoy Theatre after a break of a few years. The event delivers real, live Sixties music, with the ever-popular tunes of the 60s performed by a host of original 60s musicians. Plus great people and an amazing atmosphere! As usual, the programme is spread over two evenings:" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F0C03FB9746E55A9769B4BFA22CCF3C2/The_Beat_Goes_On", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F0C03FB9746E55A9769B4BFA22CCF3C2/The_Beat_Goes_On", "en": "http://www.savoyteatteri.fi/en/events/event/F0C03FB9746E55A9769B4BFA22CCF3C2/The_Beat_Goes_On" }, "description": { "fi": "<p>The Beat Goes On palaa muutaman vuoden tauon jälkeen Savoy-teatteriin. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.</p><p>Lauantaina 15.11. klo 18.00 alkaen: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Sunnuntaina 16.11. klo 16.00 alkaen: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Kesto n. 3 h, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Liput: 48 €/15 € lapsi, molemmat konsertit 79 €/30 € lapsi + tilausmaksut (alk. 1,50 € + 0,65 % tilauksesta).</p>", "sv": "<p>The Beat Goes On återvänder till Savoy-teatern efter ett uppehåll på några år. Det utlovas äkta levande 60-talsmusik, med underbara melodier från årtiondet framförda av många av de ursprungliga musikerna från 60-talet. Dessutom trevliga människor och en härlig atmosfär. Programmet är som vanligt uppdelat på två kvällar.</p><p>Lördag 15.11 från kl. 18:00: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Söndag 16.11 från kl. 16:00: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Längd ca 3 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Biljetter: 48 €/barn 15 €, båda konserterna 79 €/barn 30 € + bokningsavgifter (från 1,50 € + 0,65 % per bokning).</p>", "en": "<p>The Beat Goes On returns to the Savoy Theatre after a break of a few years. The event delivers real, live Sixties music, with the ever-popular tunes of the 60s performed by a host of original 60s musicians. Plus great people and an amazing atmosphere! As usual, the programme is spread over two evenings:</p><p>Saturday 15 November starting at 18:00: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Sunday 16 November starting at 16:00: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Duration approx. 3 h, intermission included.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>Tickets: €48/children €15, both concerts €79/children €30 + order fees (starting at €1.50 + 0.65% of the order).</p>" }, "name": { "fi": "The Beat Goes On", "sv": "The Beat Goes On", "en": "The Beat Goes On" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Back To The Sixties edistämisyhdistys ry", "sv": "Back To The Sixties edistämisyhdistys ry", "en": "Back To The Sixties edistämisyhdistys ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66070/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:e76857f9-9d1b-4eb7-b047-02e51af29ccb", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20547/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "sv": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "en": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ru": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "zh_hans": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ar": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634" }, "description": { "fi": "Hintatietojen lisätiedot - Suomeksi", "sv": "Hintatietojen lisätiedot", "en": "Hintatietojen lisätiedot", "ru": "Hintatietojen lisätiedot", "zh_hans": "Hintatietojen lisätiedot", "ar": "Hintatietojen lisätiedot" }, "price": { "fi": "5", "sv": "4", "en": "4", "ru": "4", "zh_hans": "4", "ar": "4" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1491309, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-05T13:14:16.443975Z", "last_modified_time": "2025-11-05T13:14:16.443990Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491309/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "created_time": "2025-10-31T08:04:32.467693Z", "last_modified_time": "2025-11-05T13:14:17.360428Z", "date_published": "2025-10-31T08:03:24Z", "start_time": "2025-12-24T06:00:00Z", "end_time": "2025-12-24T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 15, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 50, "minimum_attendee_capacity": 1, "enrolment_start_time": "2025-10-31T08:00:00+02:00", "enrolment_end_time": "2025-12-22T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "31.10.2025 - TLDG\nKielivalinnan muuttaminen ei valu Linked Eventsiin", "sv": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "en": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ru": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "zh_hans": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ar": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2" }, "info_url": { "sv": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "en": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ru": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "zh_hans": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ar": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634" }, "description": { "fi": "<div><p>31.10.2025 - TLDG<br>Kielivalinnan muuttaminen ei valu Linked Eventsiin<br>- SWE Otsikko ja kuvaukset lisätty.<br>- SWE Otsikko ja kuvaukset poistettu.</p><p>- syöttökielet Ruotsi poistettu +++++</p><p>-Syöttökielet poistettu<br>-Lisätty SK kiina,Arabia,Englanti,Venäjä ja Ruotsi</p></div>", "sv": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>", "en": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2+++</p></div>", "ru": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>", "zh_hans": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>", "ar": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>" }, "name": { "fi": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "sv": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "en": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ru": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "zh_hans": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ar": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumapaikan lisätiedot - Suomi", "sv": "Tapahtumapaikan lisätiedot - Ruotsi", "en": "Tapahtumapaikan lisätiedot - Englanti", "ru": "Tapahtumapaikan lisätiedot - Venäjä", "zh_hans": "Tapahtumapaikan lisätiedot - Kiina", "ar": "Tapahtumapaikan lisätiedot arabiaksi" }, "provider": { "fi": "ABC Yritys Oy", "sv": "ABC Yritys Oy", "en": "ABC Yritys Oy", "ru": "ABC Yritys Oy", "zh_hans": "ABC Yritys Oy", "ar": "ABC Yritys Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:e76857f9-9d1b-4eb7-b047-02e51af29ccb/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }