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

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

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

See the result

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

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

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

See the result

event/?start=now&end=today

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

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

See the result

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

See the result

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

See the result

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

See the result

event/?suitable_for=12,14

See the result

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

See the result

event/?publisher_ancestor=ahjo:00001

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

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

See the result

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

See the result

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&hide_recurring_children=true&page=82
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 21743,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=83",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=81"
    },
    "data": [
        {
            "id": "espoo_le:agndtghogu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-31T08:26:42.731720Z",
            "last_modified_time": "2025-11-04T10:39:48.715621Z",
            "date_published": null,
            "start_time": "2025-11-10T15:30:00Z",
            "end_time": "2025-11-10T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan uutta lastenkirjaa.\n"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tarjolla täytekakkua, mehua ja lorupullia.&nbsp;</p><p>Tulkaa yhdessä lasten kanssa kuuntelemaan, miten Jauhopeukalot -kirja on syntynyt kirjailijan, kuvittajan ja pikkuleipurin yhteistyöllä.&nbsp;</p><p>Aika 10.11.2025 klo 17.30–18.30.&nbsp;</p>"
            },
            "name": {
                "fi": "Elina Pulli: Jauhopeukalot - kirjan julkistamistilaisuus"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndtghogu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67244",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 1491276,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-04T10:13:16.140068Z",
                    "last_modified_time": "2025-11-04T10:13:16.140081Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768470.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491276/?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-11-04T10:13:15.989418Z",
            "last_modified_time": "2025-11-04T10:13:16.323323Z",
            "date_published": null,
            "start_time": "2025-11-19T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.",
                "sv": "Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.",
                "en": "Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B0B7EB41ECE3E4392FDF0883984B8B71/FLOW_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/B0B7EB41ECE3E4392FDF0883984B8B71/FLOW_7_",
                "en": "http://www.vuotalo.fi/en/events/event/B0B7EB41ECE3E4392FDF0883984B8B71/FLOW_7_"
            },
            "description": {
                "fi": "<p>Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ensi-ilta: 28.03.2025<br>Ikäraja: 7<br>Pituus: 85 min.<br>Kieli: Ei puhuttua dialogia</p><p>Ryhmille pakollinen ennakkoilmoittautuminen osoitteessa kultus.hel.fi <br>Oppimateriaalit Koulukinosta: Oppimateriaalit Archive - Koulukino</p>",
                "sv": "<p>Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.</p><p>En modig katt möter en stor flodvåg. En katt räddas i en båt tillsammans med en glad hund, en trött capybara, en busig lemur och en grinig fågel. Djuren ger sig ut på en äventyrsresa genom storslagen natur och mystiska städer – en ny främmande värld där samarbete och vänskap är av största vikt.</p><p>Den dialogfria filmen accentueras av musik, som delvis är bearbetad i Finland! Den är en fantastisk filmupplevelse för både barn och vuxna och har överösts med stora internationella priser, med en Oscar för bästa animerade film som finaste utmärkelsen.<br>Premiär: 28.03.2025</p><p>Åldersgräns: 7<br>Längd: 85 min.<br>Språk: Ingen talad dialog</p><p>Obligatorisk förhandsanmälan för grupper på kultus.hel.fi <br>Läromedel om Koulukino: Oppimateriaalit Archive - Koulukino</p>",
                "en": "<p>Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild.</p><p>A brave cat faces a great tidal wave. The cat is rescued on a boat with a happy dog, a tired capybara, a mischievous lemur and a grumpy bird. The animals embark on an adventurous journey through magnificent nature and mysterious cities – a new alien world in which cooperation and friendship are paramount.</p><p>The dialogue-free film is emphasised by music, some of which was produced in Finland! A fantastic cinematic experience for children and adults alike, the film has been showered with major international awards, crowned with an Oscar for Best Animated Feature.<br>Premiere: 28 March 2025</p><p>Age rating: 7<br>Duration: 85 min<br>Language: No spoken dialogue</p><p>Groups are required to register in advance at kultus.hel.fi<br>Learning materials from Koulukino in Finnish: Learning materials archive – School Cinema Association</p>"
            },
            "name": {
                "fi": "FLOW (7) – Koulukino",
                "sv": "FLOW (7) – Koulukino",
                "en": "FLOW (7) – Koulukino"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67244/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66829",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491275,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-04T10:13:12.984756Z",
                    "last_modified_time": "2025-11-04T10:13:12.984771Z",
                    "url": "instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772442.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491275/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-07T15:14:18.187890Z",
            "last_modified_time": "2025-11-04T10:13:13.153268Z",
            "date_published": null,
            "start_time": "2025-11-12T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.",
                "sv": "Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.",
                "en": "Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Flow on uskomattoman hyvin animoitu ja tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ensi-ilta: 28.03.2025<br>Ikäraja: 7<br>Pituus: 85 min.<br>Kieli: Ei puhuttua dialogia</p><p>Ryhmille pakollinen ennakkoilmoittautuminen osoitteessa kultus.hel.fi <br>Oppimateriaalit Koulukinosta: Oppimateriaalit Archive - Koulukino</p>",
                "sv": "<p>Flow är en otroligt väl animerad och känslosam äventyrsfilm där djuren verkligen får bete sig som de gör i det vilda.</p><p>En modig katt möter en stor flodvåg. En katt räddas i en båt tillsammans med en glad hund, en trött capybara, en busig lemur och en grinig fågel. Djuren ger sig ut på en äventyrsresa genom storslagen natur och mystiska städer – en ny främmande värld där samarbete och vänskap är av största vikt.</p><p>Den dialogfria filmen accentueras av musik, som delvis är bearbetad i Finland! Den är en fantastisk filmupplevelse för både barn och vuxna och har överösts med stora internationella priser, med en Oscar för bästa animerade film som finaste utmärkelsen.</p><p>Premiär: 28.03.2025<br>Åldersgräns: 7<br>Längd: 85 min.<br>Språk: Ingen talad dialog</p><p>Obligatorisk förhandsanmälan för grupper på kultus.hel.fi <br>Läromedel om Koulukino: Oppimateriaalit Archive - Koulukino</p>",
                "en": "<p>Flow is an incredibly well-animated and emotional adventure film in which animals really do behave like they do in the wild.</p><p>A brave cat faces a great tidal wave. The cat is rescued on a boat with a happy dog, a tired capybara, a mischievous lemur and a grumpy bird. The animals embark on an adventurous journey through magnificent nature and mysterious cities – a new alien world in which cooperation and friendship are paramount.</p><p>The dialogue-free film is emphasised by music, some of which was produced in Finland! A fantastic cinematic experience for children and adults alike, the film has been showered with major international awards, crowned with an Oscar for Best Animated Feature.</p><p>Premiere: 28 March 2025<br>Age rating: 7<br>Duration: 85 min<br>Language: No spoken dialogue</p><p>Groups are required to register in advance at kultus.hel.fi<br>Learning materials from Koulukino in Finnish: Learning materials archive – School Cinema Association</p>"
            },
            "name": {
                "fi": "Flow (7) – Koulukino",
                "sv": "Flow (7) – Koulukino",
                "en": "Flow (7) – Koulukino"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66829/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66833",
            "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:669/?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:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490412,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-18T10:15:02.037797Z",
                    "last_modified_time": "2025-08-18T10:15:02.037817Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772494.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490412/?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-08-18T10:15:01.933639Z",
            "last_modified_time": "2025-11-04T10:13:00.447302Z",
            "date_published": null,
            "start_time": "2025-10-04",
            "end_time": "2026-09-05",
            "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": "Pilven sisällä, pinnan alla, maan kätköissä vai luukun takana? Piilossa on näyttely asioista, jotka eivät aina ole näkyvillä.",
                "sv": "En utställning om sådant som inte alltid är synligt.",
                "en": "An exhibition of things that are not always visible."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/631086C4A57DC529631B9A941D17A7E9/Piilossa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/631086C4A57DC529631B9A941D17A7E9/Piilossa_I_gomman_",
                "en": "http://www.annantalo.fi/en/events/event/631086C4A57DC529631B9A941D17A7E9/Piilossa_Hidden_"
            },
            "description": {
                "fi": "<p>Pilven sisällä, pinnan alla, maan kätköissä vai luukun takana? Piilossa on näyttely asioista, jotka eivät aina ole näkyvillä.</p><p>Piilossa-näyttelyssä Alagalleria on muuttunut huoneistoksi: se on jaettu erilaisiin tiloihin, joista kukin on omanlaisensa piilo.</p><p>Näyttely on prosessi – se ei siis ole jatkuvasti samanlainen, vaan muuttuu kauden aikana. Osa huoneista saattaa olla välillä kiinni ja avautua uudella sisällöllä tai siellä olevat teokset voivat vaihtua. Näyttelyssä voi siis vierailla monta kertaa ja löytää aina jotain uutta!</p><p>Näyttelyssä ovat mukana taiteilijat <b>Janne Kärkkäinen</b>, <b>Anniina Salo</b> ja <b>Kirsti Taiviola</b>. Esillä on myös vaihtuvasti teoksia lapsilta ja nuorilta. Mukana ovat taideryhmät <b>Kohina</b>, <b>Kontrasti</b>, <b>Jäljen etsijät</b>, <b>Painotassut</b> ja <b>Sähäkät siveltimet</b>.</p><p>Näyttelyssä tapahtuu! <a href=\"https://www.annantalo.fi/fi/tapahtumat/event/C43CBD3DDD54E539EF347E3727BEA24C/Piilossa_tapahtuu_\"><u>Katso lisätietoja työpajoista ja muista näyttelyyn liittyvistä tapahtumista</u></a></p><p>Annantalon vuosien 2025-2026 teemana on Piilossa. Se kutsuu perheitä tutkimaan, mitä kaikkea voi olla näkymättömissä – tunteita, unelmia, leikkejä tai kokonaisia tarinoita. Piilossa voi olla jotakin, joka vain odottaa tulevansa nähdyksi. Ehkä löydämme sen yhdessä Annantalosta!</p>",
                "sv": "<p>En utställning om sådant som inte alltid är synligt.</p><p>Dolt eller synligt? I den här utställningen har Annegårdens nedre galleri blivit till en lägenhet. Den är indelad i nio olika rum, som vart och ett har ett eget gömställe.</p><p>Utställningen är en process – den är inte alltid likadan utan förändras under utställningsperioden. En del av rummen kan ibland vara stängda och öppnas med nytt innehåll, eller så kan verken i dem bytas ut. Man kan alltså ta del av utställningen många gånger och alltid hitta något nytt!</p><p>Det händer saker i utställningen! <a href=\"https://www.annantalo.fi/sv/evenemangen/event/C43CBD3DDD54E539EF347E3727BEA24C/Piilossa_tapahtuu_\"><u>Se mer information om verkstäder och andra evenemang som hör till utställningen.</u></a></p><p>Annegården har gömställen och att gömma sig som tema för åren 2025–2026. Familjer bjuds in att utforska allt det som kan vara dolt – känslor, drömmar, lekar eller hela berättelser. Det som är gömt kanske bara väntar på att någon ska se det. Kanske hittar vi det tillsammans på Annegården!</p>",
                "en": "<p>An exhibition of things that are not always visible.</p><p>Hidden or visible? The exhibition has changed the gallery into nine separate rooms - each different kind of hiding place.</p><p>The exhibition is a process – meaning that it does not stay the same but instead changes during the exhibition term. Some of the rooms may be closed for a time and then reopen with new contents or different works. You can therefore visit the exhibition many times and always find something new!</p><p>There’s a lot happening in the exhibition! <a href=\"https://www.annantalo.fi/en/events/event/C43CBD3DDD54E539EF347E3727BEA24C/Piilossa_tapahtuu_\"><u>See more information about workshops and other events related to the exhibition.</u></a></p><p>The Annantalo theme for 2025–2026 is Hide and seek. It invites families to explore all the things that could be hidden – feelings, dreams, games or entire stories. Maybe something hidden is only waiting to be seen. Maybe we can discover it together at Annantalo!</p>"
            },
            "name": {
                "fi": "Piilossa",
                "sv": "Piilossa (I gömman)",
                "en": "Piilossa (Hidden)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66833/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66122",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491274,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-04T09:13:46.877780Z",
                    "last_modified_time": "2025-11-04T09:13:46.877795Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772213.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491274/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-04T08:13:19.801764Z",
            "last_modified_time": "2025-11-04T09:13:46.931620Z",
            "date_published": null,
            "start_time": "2025-12-04T17: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": "Koilliskuoron joulukonsertti",
                "sv": "Julkonsert med Koilliskuoro",
                "en": "Koilliskuoro Choir's Christmas Concert"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/078A82112971AA300A839FE54BF8D510/Joulun_Savel",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/078A82112971AA300A839FE54BF8D510/Julens_Melodi",
                "en": "http://www.malmitalo.fi/en/events/event/078A82112971AA300A839FE54BF8D510/The_Sound_of_Christmas"
            },
            "description": {
                "fi": "<p>Koilliskuoron joulukonsertti</p><p>Helsingin työväenopiston Koilliskuoron joulukonsertti Malmitalon Pienessä salissa klo 19.<br>Kuoroa johtaa Tiina Tuuri.</p><p>Kesto noin 45min.</p><p>Tilaisuuteen on vapaa pääsy.</p><p>Tervetuloa!</p>",
                "sv": "<p>Julkonsert med Koilliskuoro</p><p>På konserten uppträder Malms kulturhus egen kör Koilliskuoro. <br>Kören leds av Tiina Tuuri.</p><p>Längd: cirka 1 timme</p><p>Fritt inträde!</p>",
                "en": "<p>Koilliskuoro Choir's Christmas Concert</p><p>The concert features Malmitalo's own Koilliskuoro choir. <br>The choir is conducted by Tiina Tuuri.</p><p>Duration: about 1 hour</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Joulun Sävel",
                "sv": "Julens Melodi",
                "en": "The Sound of Christmas"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66122/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agne4mxkvu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxh4m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxjam/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxj2e/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490895,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-24T11:15:24.338597Z",
                    "last_modified_time": "2025-09-24T11:15:24.338612Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png",
                    "name": "",
                    "cropping": "250,0,746,496",
                    "photographer_name": "",
                    "alt_text": "Valkoinen, partasuinen mies valkoisessa harsohameessa ja mustassa hupparissa istuu värikästä seinää vasten.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490895/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-04T09:07:23.840264Z",
            "last_modified_time": "2025-11-04T09:07:23.840283Z",
            "date_published": null,
            "start_time": "2025-11-12T08:00:00Z",
            "end_time": "2025-11-13T15:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tanssiteatteri Tsuumin esitys tekee katsojasta koreografin kun tanssitaiteilija Patrik Riipinen herättää katsojien visiot eloon yleisön silmien edessä. ",
                "sv": "Dansteater Tsuumis föreställning gör publiken till koreograf när danskonstnären Patrik Riipinen väcker åskådarnas visioner till liv inför deras ögon.",
                "en": "Dance Theatre Tsuumi’s performance turns the audience into choreographers as dance artist Patrik Riipinen brings their visions to life before their eyes."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule katsomaan millaisia esityksiä syntyy kirjastossa kun päätösvalta teoksen vaatetuksesta, musiikista, teemasta ja tilan käytöstä annetaan tällä kertaa esityksen katsojille. Työpajamaisessa teoksessa pääset itse kokeilemaan koreografin työhön liittyviä valintoja ja ihailemaa omaa tai toisen katsojan luomaa tanssiteosta. Aiempaa kokemusta ei tarvita, uteliaisuus ja kokeilunhalu riittävät!</p><p>Voit tulla tekemään teoksen vaikka moneen kertaan, sillä Tsuumi on teoksen kanssa kiertueella Espoon kaupungin kirjastossa.</p><p>&nbsp;</p><p>LIPPULAIVAN KIRJASTO</p><p>Keskiviikko 12.11. klo 10 ja klo 17&nbsp;</p><p>Torstai 13.11. iltanäytös klo 17.00&nbsp;</p><p>&nbsp;</p><p>ENTRESSEN KIRJASTO</p><p>pe 28.11. Klo 17&nbsp;</p><p>la 29.11.&nbsp;klo 13 ja 15.30&nbsp;</p><p>&nbsp;</p><p>SELLON KIRJASTO</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>",
                "sv": "<p>Kom och se vilka föreställningar som uppstår i biblioteket när beslut om verkets kostym, musik, tema och rumsanvändning denna gång ges till publiken. I det verkstadsliknande verket får du själv prova på koreografens val och beundra ett dansverk skapat av dig själv eller en annan åskådare. Ingen tidigare erfarenhet behövs – nyfikenhet och lust att prova räcker!</p><p>Du kan komma och skapa ett verk flera gånger, eftersom Tsuumi turnerar med föreställningen i Esbo stads bibliotek.</p><p>&nbsp;</p><p>LIPPULAIVA BIBLIOTEK</p><p>Keskiviikko 12.11. klo 10 ja klo 17&nbsp;</p><p>Torstai 13.11. iltanäytös klo 17.00&nbsp;</p><p>&nbsp;</p><p>ENTRESSEN BIBLIOTEK</p><p>pe 28.11. Klo 17&nbsp;</p><p>la 29.11.&nbsp;klo 13 ja 15.30&nbsp;</p><p>&nbsp;</p><p>SELLO BIBLIOTEK</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>",
                "en": "<p>Come and see what kinds of performances emerge in the library when the decisions about costume, music, theme, and use of space are handed over to the audience. In this workshop-like piece, you’ll get to try out the choices a choreographer makes and admire a dance work created by yourself or another viewer. No prior experience is needed – curiosity and a willingness to experiment are enough!</p><p><br></p><p>You can come and create a piece more than once, as Tsuumi is touring with the performance in the libraries of the City of Espoo.</p><p>&nbsp;</p><p>LIPPULAIVA LIBRARY</p><p>Keskiviikko 12.11. klo 10 ja klo 17&nbsp;</p><p>Torstai 13.11. iltanäytös klo 17.00&nbsp;</p><p>&nbsp;</p><p>ENTRESSE LIBRARY</p><p>pe 28.11. Klo 17&nbsp;</p><p>la 29.11.&nbsp;klo 13 ja 15.30&nbsp;</p><p>&nbsp;</p><p>SELLO LIBRARY</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>"
            },
            "name": {
                "fi": "Tanssiteatteri Tsuumi: Your Solo in Me",
                "sv": "Dansteater Tsuumi: Your Solo in Me",
                "en": "Dance Theatre Tsuumi: Your Solo in Me"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": {
                "fi": "Tsuumi",
                "sv": "Tsuumi",
                "en": "Tsuumi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxkvu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66062",
            "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/event/name-20161416",
                        "sv": "https://www.lippu.fi/event/name-20161416",
                        "en": "https://www.lippu.fi/event/name-20161416"
                    },
                    "description": null,
                    "price": {
                        "fi": "33,90-39,90 €",
                        "sv": "33,90-39,90 €",
                        "en": "33,90-39,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 588863,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-22T06:13:32.398379Z",
                    "last_modified_time": "2025-04-22T06:13:32.398396Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771189.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/588863/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-22T06:13:32.310585Z",
            "last_modified_time": "2025-11-04T08:13:23.496123Z",
            "date_published": null,
            "start_time": "2025-12-19T17: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": "Alati suosiotaan kasvattava lauluntekijä Samuli Putro lähtee yhtyeensä kanssa pitkälle kiertueelle lokakuussa 2025.",
                "sv": "Den ständigt populäre låtskrivaren Samuli Putro ger sig ut på en lång turné med sitt band i oktober 2025.",
                "en": "Ever-popular songwriter Samuli Putro will embark on a long tour with his band in October 2025."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/806C9767F64DE19535A5C9E51CE1DAA9/Samuli_Putro_-_Vaikkei_olla_perilla_on_ajatukset_siella",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/806C9767F64DE19535A5C9E51CE1DAA9/Samuli_Putro_-_Vaikkei_olla_perilla_on_ajatukset_siella",
                "en": "http://www.savoyteatteri.fi/en/events/event/806C9767F64DE19535A5C9E51CE1DAA9/Samuli_Putro_-_Vaikkei_olla_perilla_on_ajatukset_siella"
            },
            "description": {
                "fi": "<p>Alati suosiotaan kasvattava lauluntekijä Samuli Putro lähtee yhtyeensä kanssa pitkälle kiertueelle lokakuussa 2025.</p><p>Kaksikymmentäviisi keikkaa käsittävä rundi vie Putron konserttisaleihin, teattereihin ja klubeile.</p><p><i>”En minä nyt oikein tiedä miten tässä näin kävi. Mutta koska tekemisen paloa ja kysyntää tuntuu riittävän, niin sama kai se on pistellä menemään”</i>, toteaa viisikymmentäviisi vuotta elokuussa täyttävä Putro.</p><p>Kukoistuskausi näkyy myös julkaisurintamalla. Putron yhdeksäs sooloalbumi julkaistaan lokakuussa. Sen ensimmäinen single ”Kuvat meistä kaikista” on soinut radioissa jo taajaan. Myös kiertueen nimi on siitä napattu.</p><p><i>”Kai minä sitten olen aina ollut moderni maankiertäjä. Kaikki muu on tullut siihen rinnalle kuin takaapäin kiitävä auto ohituskaistalla”</i>, muotoilee alkuvuodesta myös esikoiskirjansa julkaissut Putro.</p><p>Samuli Putron levynjulkaisukiertueella nähdään \"Suomen coolein trio\", eli:</p><p>Samuli Putro - laulu, kitara<br>Tuukka Tuunanen - koskettimet<br>Miikka Heikkinen – rummut</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>Den ständigt populäre låtskrivaren Samuli Putro ger sig ut på en lång turné med sitt band i oktober 2025.</p><p>Turnén med tjugofem spelningar tar Putro till konsertsalar, teatrar och klubbar.</p><p>”Jag vet inte riktigt hur det här gick till. Men eftersom det verkar finnas tillräckligt med entusiasm för att arbeta och också efterfrågan, så är det väl lika bra att köra på”, säger Putro, som fyllde 55 år i augusti.</p><p>Glansperioden syns också på utgivningsfronten. Putros nionde soloalbum släpps i oktober. Albumets första singel Kuvat meistä kaikista har redan spelats flitigt på radio. Även det finska namnet på turnén, Vaikkei olla perillä on ajatukset siellä (Även om vi inte är framme är tankarna där), är hämtat från den.</p><p>”Jag antar att jag alltid har varit en modern vagabond. Allt annat har kommit vid sidan om, som en bil som kommer i hög fart bakifrån i en omkörningsfil”, säger Putro, som också gav ut sin debutbok i början av året.</p><p>På Samuli Putros skivsläppsturné medverkar \"Finlands coolaste trio\", det vill säga:</p><p>Samuli Putro – sång, gitarr<br>Tuukka Tuunanen – klaviatur<br>Miikka Heikkinen – trummor</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Ever-popular songwriter Samuli Putro will embark on a long tour with his band in October 2025.</p><p>The twenty-five-show tour will take Putro to concert halls, theatres and clubs.</p><p>\"I don't really even know how this happened. But seems like there’s still fire to continue this work and there’s demand for it, so why stop?” says Putro, who turned fifty-five in August.</p><p>This era of creativity is also reflected in his released works. Putro's ninth solo album will be released in October. Its first single \"Kuvat meistä kaikista\" has already been extensively played in the radio, and it has also given the tour its name, loosely translated as ‘We’re not there yet, but our thoughts have arrived’.</p><p>\"I guess I've always been kind of a modern traveller. Everything else has just appeared by my side, like a fast car passing by on the fast lane,” muses Putro, who also published his debut book earlier this year.</p><p>Samuli Putro's album release tour will feature the ‘coolest trio in Finland’:</p><p>Samuli Putro – vocals, guitar<br>Tuukka Tuunanen – keyboards<br>Miikka Heikkinen – drums</p><p>Duration approx. 2 h, including intermission</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>"
            },
            "name": {
                "fi": "Samuli Putro - Vaikkei olla perillä on ajatukset siellä – Loppuunmyyty! / Sold out!",
                "sv": "Samuli Putro - Vaikkei olla perillä on ajatukset siellä – Slutsålt!",
                "en": "Samuli Putro - Vaikkei olla perillä on ajatukset siellä – Sold out!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Central Line Entertainment Oy",
                "sv": "Central Line Entertainment Oy",
                "en": "Central Line Entertainment Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66062/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67110",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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": 1491116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-17T08:13:48.361325Z",
                    "last_modified_time": "2025-10-17T08:13:48.361338Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778065.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491116/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2025-10-17T08:13:48.249803Z",
            "last_modified_time": "2025-11-04T08:13:08.866242Z",
            "date_published": null,
            "start_time": "2025-11-04T14: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": "Oletko seniori tai huolissasi seniori-ikäisestä läheisestäsi? Onko sinulla kokemusta itselläsi tai tiedätkö läheisesi kokeneen lähisuhdeväkivaltaa?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/141BFC1F8A5E343B93AA6D3930E9183B/PERUUNTUNUT_Seniorin_salaisuus_vapaaksi_vakivallasta_-hanke",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/141BFC1F8A5E343B93AA6D3930E9183B/PERUUNTUNUT_Seniorin_salaisuus_vapaaksi_vakivallasta_-hanke",
                "en": "http://www.malmitalo.fi/en/events/event/141BFC1F8A5E343B93AA6D3930E9183B/PERUUNTUNUT_Seniorin_salaisuus_vapaaksi_vakivallasta_-hanke"
            },
            "description": {
                "fi": "<p>Oletko seniori tai huolissasi seniori-ikäisestä läheisestäsi? Onko sinulla kokemusta itselläsi tai tiedätkö läheisesi kokeneen lähisuhdeväkivaltaa?</p><p>Oletko itse huomannut käyttäytyväsi väkivaltaisesti lähisuhteessasi?</p><p>Paikalla keskustelemassa aiheesta Kirsi Lamminaho, Lähisuhdeväkivaltatyön asiantuntija.</p><p>Hankkeessa tarjoamme kaikille lähisuhdeväkivallan osapuolille terapeuttista keskusteluapua.</p><p>Paikkana Malmitalon Kokoushuone 2.</p>"
            },
            "name": {
                "fi": "PERUUNTUNUT Seniorin salaisuus – vapaaksi väkivallasta -hanke",
                "sv": "PERUUNTUNUT Seniorin salaisuus – vapaaksi väkivallasta -hanke",
                "en": "PERUUNTUNUT Seniorin salaisuus – vapaaksi väkivallasta -hanke"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67110/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agnewuhkz4",
            "has_user_editable_resources": true,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?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": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2025-11-03T20:03:05.612663Z",
            "last_modified_time": "2025-11-03T20:34:20.804050Z",
            "date_published": null,
            "start_time": "2033-11-10T12:40:00Z",
            "end_time": "2033-11-10T16:40:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 3,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "testiä"
            },
            "info_url": {
                "fi": ""
            },
            "description": {
                "fi": "<p>kuvataan moderointia</p>"
            },
            "name": {
                "fi": "Moderointi"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": "HippiLeiri ry."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agnewuhkz4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66739",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/#calendar-start=2025-11",
                        "sv": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/#calendar-start=2025-11",
                        "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/#calendar-start=2025-11"
                    },
                    "description": null,
                    "price": {
                        "fi": "33 € / 17 €",
                        "sv": "33 € / 17 €",
                        "en": "33 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1225634,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T09:12:50.932752Z",
                    "last_modified_time": "2025-07-10T09:12:50.932771Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765145.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1225634/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T09:12:50.854460Z",
            "last_modified_time": "2025-11-03T15:13:30.597286Z",
            "date_published": null,
            "start_time": "2025-11-06",
            "end_time": "2025-11-16",
            "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 är en festival för modern dans som ordnas varje år i huvudstadsregionen.",
                "en": "Moving in November is a contemporary dance festival organised yearly in the Helsinki area."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4291BEC7CB936CC7DDF2C629C02D1732/Liikkeella_marraskuussa_Moving_in_November",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4291BEC7CB936CC7DDF2C629C02D1732/Liikkeella_marraskuussa_Moving_in_November",
                "en": "http://www.stoa.fi/en/events/event/4291BEC7CB936CC7DDF2C629C02D1732/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>Stoa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2025 festivaali järjestetään 6.–16. marraskuuta.</p><p><b>Stoan Liikkeellä marraskuussa -ohjelma</p><p>6.11. klo 19<br>7.11. klo 18<br>Michael Turinsky: Work Body</b><br>Work Body on saanut inspiraationsa runosta The Ashes of Gramsci. Work Body luo tilaa ’vammaisen’ ja ’työtä tekevän’ ruumiin välisille resonansseille. <br>Liput 33 € / 17 €</p><p><b>8.11. klo 14–18<br>Adam Kinner & Christopher Willes: MANUAL-työpaja</b> <br>Työpajassa osallistujille esitellään MANUAL-teoksen sisältöjä ja taiteellisia työskentelytapoja. <br>Liput 35 € / 25 €</p><p><b>10.11. klo 20<br>11.11. klo 20<br>Cherish Menzo: FRANK</b><br>Jossakin rituaalin, karnevaalin ja maailmanlopun välillä on FRANK – joka on myös lyhenne Frankensteinille.<br>Liput 33 € / 17 €</p><p><b>12.11. klo 11–19 <br>13.11. klo 11–19 <br>14.11. klo 11–18 <br>15.11. klo 10–16<br>Adam Kinner & Christopher Willes: MANUAL</b><br>Adam Kinner ja Christopher Willes ovat luoneet yhdelle osallistujalle kerrallaan esitettävän teoksen. Teos muuttaa kirjastotilan aistilliseksi kohtaamistilaksi ja tarkentuneen havainnon ympäristöksi. MANUAL, joka tapahtuu Itäkeskuksen kirjaston kätköissä aukioloaikojen puitteissa, kutsuu osallistujat paikalle ohjeiden mukaisesti tapaamaan vieraan ennalta sovitussa paikassa.<br>Liput 10 €</p><p><b>13.11. klo 18 <br>15.11. klo 19 <br>Exercise on empathy [a score for performing a human]</b><br>Paikkasensitiivisessä teoksessaan Sakko palaa muistamaan viime vuoden työskentelyään kysyen, minkä tulee muuttua ajan ja paikan ollessa toinen. <br>Vapaa pääsy!</p><p><b>14.11. klo 18<br>15.11. klo 16 <br>Ewa Dziarnowska: This resting, patience</b><br>Kolmituntinen teos tuo esiin hienovaraisen, jatkuvan liikkeen, joka on alati muuntuvaa, avautuvaa ja aistillista – horjuttaen sekä installaation passiivisuuden että esityksen aikaraamit ja dramaturgian. <br>Liput 33 € / 17 €</p><p><b>15.11. klo 20 <br>16.11. klo 17 <br>Soa Ratsifandrihana: Fampitaha, fampita, fampitàna</b><br>Soa Ratsifandrihana etsii sanastoa kehojen ja historian välillä ymmärtääkseen paremmin, mikä niitä yhdistää ja erottaa toisistaan. Yhdessä kitaristi Joël Rabesolon ja esiintyjien Audrey Merilusin ja Stanley Ollivierin kanssa Ratsifandrihana rakentaa iloisen, säteilevän esityksen, uuden toiseuden, jossa kehot heräävät hiljaisuudestaan ja tarjoavat itselleen mahdollisuuden kielelliseen ilmaisuun. <br>Liput 33 € / 17 €</p><p><u><a href=\"https://www.stoa.fi/fi/tapahtumat/\"> Tutustu tapahtumiin tarkemmin Stoan tapahtumakalenterin kautta</a></u></p><p>Liikkeellä marraskussa tapahtuu myös kulttuurikeskus Caisassa. <u><a href=\"https://www.caisa.fi/fi/tapahtumat/\">Katso Caisan 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 ä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>Stoa är en av platserna där festivalen Liikkeellä marraskuussa ordnas. Festivalen 2025 ordnas den 6–16 november.</p><p>Festivalpass för festivalens föreställningar finns också till försäljning. Mer information: https://liikkeellamarraskuussa.fi/liput-ja-esityspaikat-2/</p>",
                "en": "<p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Stoa is one of the festival venues. In year 2025 Moving in November Festival will take place in 6.–16.11. The festival program will be published in September.</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:66739/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67225",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p16919/?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": 1491271,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-03T12:12:01.298352Z",
                    "last_modified_time": "2025-11-03T12:12:01.298363Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779182.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491271/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-03T12:12:01.248270Z",
            "last_modified_time": "2025-11-03T14:13:13.427658Z",
            "date_published": null,
            "start_time": "2025-11-08T14: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": "Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.",
                "en": "Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/AE38842848210647651AD3B396FDBC92/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky",
                "sv": "http://www.caisa.fi/sv/evenemang/event/AE38842848210647651AD3B396FDBC92/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky",
                "en": "http://www.caisa.fi/en/events/event/AE38842848210647651AD3B396FDBC92/Moving_in_November_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky"
            },
            "description": {
                "fi": "<p>Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.</p><p>Ryhmän jäsenet ovat sekä palestiinalaisia että suomalaisia, jotka ovat halunneet oppia ja edistää Dabke-tanssin perinnettä. Eri ikäisistä ja eri taustoista tulevista ihmisistä koostuva ryhmä kokoontuu Helsingissä viikottain, vastarinnan eleenä jatkuvan olemassaolon häivyttämisen ja hävittämisen aikana.</p><p>Dabke on Levantin alueelta peräisin oleva perinteinen rivitanssi, joka on tuhansien vuosien ajan rytmittänyt ilon ja yhteisöllisen voiman hetkiä. Palestiinassa, Libanonissa, Syyriassa ja Jordaniassa tanssittu tanssi koostuu sille erityisistä rytmeistä ja askeleista, mutta sen ydinolemus on kuitenkin yhteys: jaettu liike, joka koostuu yhtäaikaisesta askelpoljennasta, värähdellen sekä maan että tanssijoiden lävitse.</p><p>Dabkessa tanssijat perinteisesti pitävät kiinni toistensa käsistä tai olkapäistä ja muodostavat puoliympyrään kaartuvan rivin. Aina avonaisena pysyvä piiri on ele ulospäin: jatkuva kutsu liittyä, katsoa ja osallistua. Palestiinalaisille Dabke on enemmän kuin juhla: se on sietokyvyn harjoittamista, unohtamasta kieltäytymistä, sekä elävä todiste kulttuurista, jonka olemassaoloa uhkaavat pakkosiirto ja miehitys.</p><p>Elokuva dokumentoi tanssiryhmän viikoittaisia harjoituksia, ja näyttää, kuinka Dabkea opetellaan ja opetetaan eri sukupolvien, kielten ja elettyjen kokemusten kesken. Tanssin voimallisen yhteyden ja siihen liittyvän yhdessäolon lisäksi elokuva tuo esille kääntämisen ja väärinymmärryksen hetkiä, osoittaen, kuinka askeleet muuntuvat ja merkitykset muovautuvat harjoittelun tuloksena. Teos pohtii, kuinka pakkosiirto haastaa ja muovaa kulttuurin harjoittamisen muotoja ja paljastaa tanssin dynaamisen, jaetun kielen, joka tuo eri paikoista ja taustoista tulevia ihmisiä yhteen.</p><p>Kesto: 8 min<br>Kieli: englanti ja arabia, tekstitys englanniksi ja arabiaksi<br>Vapaa pääsy</p><p>Teos on osa Focus on the Local Landscape - Paikallisjälkiä -ohjelmaa Liikkeellä marraskuussa -festivaalin kehyksessä 6.–16.11.2025. Osana festivaalia Focus on the Local Landscape -taiteilijat käyvät yhteistä keskustelua avoimessa, Anna Kozoninan ja Audience Clubin moderoimassa Soup Talks -keskustelussa 16.11. klo 13 Eskuksen tiloissa.</p>",
                "en": "<p>Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows.</p><p>The group consists of people from Palestine together with Finnish participants who have chosen to learn and carry forward the tradition of dancing Dabke. Spanning different ages and backgrounds, the group gathers weekly in Helsinki to dance as an act of resistance in the face of ongoing erasure.</p><p>Dabke is a traditional line dance originating from the Levant, where it has long marked moments of joy and collective strength. Across Palestine, Lebanon, Syria, and Jordan, Dabke takes on distinct rhythms and steps, yet the dance is bound by its core spirit of unity: a communal movement, marked by synchronized stomping, where each step reverberates through the ground and through the group.</p><p>In Dabke, the dancers traditionally join hands or shoulders to form a line that curves into a half-circle or open arc. The never-closed circle formation is a gesture outwards, as a continuous invitation for others to join, witness, and participate. For Palestinians, Dabke has become more than celebration – it is a practice of endurance, a refusal to forget, and a living manifestation of a culture threatened by displacement and occupation.</p><p>The film documents the group’s weekly rehearsal, showing how Dabke is learned and transmitted across generations, languages, and different lived experiences of the dance. Alongside the powerful harmony and togetherness of the choreography, the film draws attention to moments of translation and misinterpretation in learning the steps, showing how steps are modified and meanings reshaped through practice. The work reflects on how displacement challenges and transforms cultural practices, revealing dance as a dynamic, shared language that links people across places and backgrounds.</p><p>This performance is a part of the Focus on the Local Landscape within the frame of Moving in November 6.-16.11.2025. As part of the festival, there will be an open Soup Talks discussion with the Focus on the Local Landscape artists hosted by Anna Kozonina and the Audience Club on the 16th of November at 13 in Eskus.</p><p>Language: English and Arabic, English and Arabic subtitles</p>"
            },
            "name": {
                "fi": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa",
                "sv": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa",
                "en": "Moving in November – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67225/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67233",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p16919/?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": 1491270,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-03T12:12:01.089698Z",
                    "last_modified_time": "2025-11-03T12:12:01.089708Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779181.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491270/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-03T12:12:01.040151Z",
            "last_modified_time": "2025-11-03T14:13:13.177584Z",
            "date_published": null,
            "start_time": "2025-11-08T13: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": "Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.",
                "en": "Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/652438AAC9D42FC87F224A15136B6946/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky",
                "sv": "http://www.caisa.fi/sv/evenemang/event/652438AAC9D42FC87F224A15136B6946/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky",
                "en": "http://www.caisa.fi/en/events/event/652438AAC9D42FC87F224A15136B6946/Moving_in_November_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky"
            },
            "description": {
                "fi": "<p>Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.</p><p>Ryhmän jäsenet ovat sekä palestiinalaisia että suomalaisia, jotka ovat halunneet oppia ja edistää Dabke-tanssin perinnettä. Eri ikäisistä ja eri taustoista tulevista ihmisistä koostuva ryhmä kokoontuu Helsingissä viikottain, vastarinnan eleenä jatkuvan olemassaolon häivyttämisen ja hävittämisen aikana.</p><p>Dabke on Levantin alueelta peräisin oleva perinteinen rivitanssi, joka on tuhansien vuosien ajan rytmittänyt ilon ja yhteisöllisen voiman hetkiä. Palestiinassa, Libanonissa, Syyriassa ja Jordaniassa tanssittu tanssi koostuu sille erityisistä rytmeistä ja askeleista, mutta sen ydinolemus on kuitenkin yhteys: jaettu liike, joka koostuu yhtäaikaisesta askelpoljennasta, värähdellen sekä maan että tanssijoiden lävitse.</p><p>Dabkessa tanssijat perinteisesti pitävät kiinni toistensa käsistä tai olkapäistä ja muodostavat puoliympyrään kaartuvan rivin. Aina avonaisena pysyvä piiri on ele ulospäin: jatkuva kutsu liittyä, katsoa ja osallistua. Palestiinalaisille Dabke on enemmän kuin juhla: se on sietokyvyn harjoittamista, unohtamasta kieltäytymistä, sekä elävä todiste kulttuurista, jonka olemassaoloa uhkaavat pakkosiirto ja miehitys.</p><p>Elokuva dokumentoi tanssiryhmän viikoittaisia harjoituksia, ja näyttää, kuinka Dabkea opetellaan ja opetetaan eri sukupolvien, kielten ja elettyjen kokemusten kesken. Tanssin voimallisen yhteyden ja siihen liittyvän yhdessäolon lisäksi elokuva tuo esille kääntämisen ja väärinymmärryksen hetkiä, osoittaen, kuinka askeleet muuntuvat ja merkitykset muovautuvat harjoittelun tuloksena. Teos pohtii, kuinka pakkosiirto haastaa ja muovaa kulttuurin harjoittamisen muotoja ja paljastaa tanssin dynaamisen, jaetun kielen, joka tuo eri paikoista ja taustoista tulevia ihmisiä yhteen.</p><p>Kesto: 8 min<br>Kieli: englanti ja arabia, tekstitys englanniksi ja arabiaksi<br>Vapaa pääsy</p><p>Teos on osa Focus on the Local Landscape - Paikallisjälkiä -ohjelmaa Liikkeellä marraskuussa -festivaalin kehyksessä 6.–16.11.2025. Osana festivaalia Focus on the Local Landscape -taiteilijat käyvät yhteistä keskustelua avoimessa, Anna Kozoninan ja Audience Clubin moderoimassa Soup Talks -keskustelussa 16.11. klo 13 Eskuksen tiloissa.</p>",
                "en": "<p>Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows.</p><p>The group consists of people from Palestine together with Finnish participants who have chosen to learn and carry forward the tradition of dancing Dabke. Spanning different ages and backgrounds, the group gathers weekly in Helsinki to dance as an act of resistance in the face of ongoing erasure.</p><p>Dabke is a traditional line dance originating from the Levant, where it has long marked moments of joy and collective strength. Across Palestine, Lebanon, Syria, and Jordan, Dabke takes on distinct rhythms and steps, yet the dance is bound by its core spirit of unity: a communal movement, marked by synchronized stomping, where each step reverberates through the ground and through the group.</p><p>In Dabke, the dancers traditionally join hands or shoulders to form a line that curves into a half-circle or open arc. The never-closed circle formation is a gesture outwards, as a continuous invitation for others to join, witness, and participate. For Palestinians, Dabke has become more than celebration – it is a practice of endurance, a refusal to forget, and a living manifestation of a culture threatened by displacement and occupation.</p><p>The film documents the group’s weekly rehearsal, showing how Dabke is learned and transmitted across generations, languages, and different lived experiences of the dance. Alongside the powerful harmony and togetherness of the choreography, the film draws attention to moments of translation and misinterpretation in learning the steps, showing how steps are modified and meanings reshaped through practice. The work reflects on how displacement challenges and transforms cultural practices, revealing dance as a dynamic, shared language that links people across places and backgrounds.</p><p>This performance is a part of the Focus on the Local Landscape within the frame of Moving in November 6.-16.11.2025. As part of the festival, there will be an open Soup Talks discussion with the Focus on the Local Landscape artists hosted by Anna Kozonina and the Audience Club on the 16th of November at 13 in Eskus.</p><p>Language: English and Arabic, English and Arabic subtitles</p>"
            },
            "name": {
                "fi": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa",
                "sv": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa",
                "en": "Moving in November – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67233/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67224",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p16919/?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": 1491269,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-03T12:12:00.855705Z",
                    "last_modified_time": "2025-11-03T12:12:00.855715Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779180.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491269/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-03T12:12:00.772484Z",
            "last_modified_time": "2025-11-03T14:13:12.984924Z",
            "date_published": null,
            "start_time": "2025-11-08T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.",
                "en": "Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/FF33B12EEDEFAC0BFB49C42509AA4D26/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky",
                "sv": "http://www.caisa.fi/sv/evenemang/event/FF33B12EEDEFAC0BFB49C42509AA4D26/Liikkeella_marraskuussa_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky",
                "en": "http://www.caisa.fi/en/events/event/FF33B12EEDEFAC0BFB49C42509AA4D26/Moving_in_November_Laura_Cemin_Bianca_Hisse_Their_Eyes_Will_Sear_Holes_in_the_Night_Sky"
            },
            "description": {
                "fi": "<p>Bianca Hissen ja Laura Ceminin elokuva seuraa Helsingissä toimivaa palestiinalaista Al Huriya Dabken -tanssiryhmää.</p><p>Ryhmän jäsenet ovat sekä palestiinalaisia että suomalaisia, jotka ovat halunneet oppia ja edistää Dabke-tanssin perinnettä. Eri ikäisistä ja eri taustoista tulevista ihmisistä koostuva ryhmä kokoontuu Helsingissä viikottain, vastarinnan eleenä jatkuvan olemassaolon häivyttämisen ja hävittämisen aikana.<br>Dabke on Levantin alueelta peräisin oleva perinteinen rivitanssi, joka on tuhansien vuosien ajan rytmittänyt ilon ja yhteisöllisen voiman hetkiä. Palestiinassa, Libanonissa, Syyriassa ja Jordaniassa tanssittu tanssi koostuu sille erityisistä rytmeistä ja askeleista, mutta sen ydinolemus on kuitenkin yhteys: jaettu liike, joka koostuu yhtäaikaisesta askelpoljennasta, värähdellen sekä maan että tanssijoiden lävitse.</p><p>Dabkessa tanssijat perinteisesti pitävät kiinni toistensa käsistä tai olkapäistä ja muodostavat puoliympyrään kaartuvan rivin. Aina avonaisena pysyvä piiri on ele ulospäin: jatkuva kutsu liittyä, katsoa ja osallistua. Palestiinalaisille Dabke on enemmän kuin juhla: se on sietokyvyn harjoittamista, unohtamasta kieltäytymistä, sekä elävä todiste kulttuurista, jonka olemassaoloa uhkaavat pakkosiirto ja miehitys.</p><p>Elokuva dokumentoi tanssiryhmän viikoittaisia harjoituksia, ja näyttää, kuinka Dabkea opetellaan ja opetetaan eri sukupolvien, kielten ja elettyjen kokemusten kesken. Tanssin voimallisen yhteyden ja siihen liittyvän yhdessäolon lisäksi elokuva tuo esille kääntämisen ja väärinymmärryksen hetkiä, osoittaen, kuinka askeleet muuntuvat ja merkitykset muovautuvat harjoittelun tuloksena. Teos pohtii, kuinka pakkosiirto haastaa ja muovaa kulttuurin harjoittamisen muotoja ja paljastaa tanssin dynaamisen, jaetun kielen, joka tuo eri paikoista ja taustoista tulevia ihmisiä yhteen.</p><p>Kesto: 8 min<br>Kieli: englanti ja arabia, tekstitys englanniksi ja arabiaksi<br>Vapaa pääsy</p><p>Teos on osa Focus on the Local Landscape - Paikallisjälkiä -ohjelmaa Liikkeellä marraskuussa -festivaalin kehyksessä 6.–16.11.2025. Osana festivaalia Focus on the Local Landscape -taiteilijat käyvät yhteistä keskustelua avoimessa, Anna Kozoninan ja Audience Clubin moderoimassa Soup Talks -keskustelussa 16.11. klo 13 Eskuksen tiloissa.</p>",
                "en": "<p>Their Eyes Will Sear Holes In The Night Sky is a film by Bianca Hisse and Laura Cemin, in collaboration with Al Huriya Dabke, a Palestinian dance group based in Helsinki, whose practice the film follows.</p><p>The group consists of people from Palestine together with Finnish participants who have chosen to learn and carry forward the tradition of dancing Dabke. Spanning different ages and backgrounds, the group gathers weekly in Helsinki to dance as an act of resistance in the face of ongoing erasure.</p><p>Dabke is a traditional line dance originating from the Levant, where it has long marked moments of joy and collective strength. Across Palestine, Lebanon, Syria, and Jordan, Dabke takes on distinct rhythms and steps, yet the dance is bound by its core spirit of unity: a communal movement, marked by synchronized stomping, where each step reverberates through the ground and through the group.</p><p>In Dabke, the dancers traditionally join hands or shoulders to form a line that curves into a half-circle or open arc. The never-closed circle formation is a gesture outwards, as a continuous invitation for others to join, witness, and participate. For Palestinians, Dabke has become more than celebration – it is a practice of endurance, a refusal to forget, and a living manifestation of a culture threatened by displacement and occupation.</p><p>The film documents the group’s weekly rehearsal, showing how Dabke is learned and transmitted across generations, languages, and different lived experiences of the dance. Alongside the powerful harmony and togetherness of the choreography, the film draws attention to moments of translation and misinterpretation in learning the steps, showing how steps are modified and meanings reshaped through practice. The work reflects on how displacement challenges and transforms cultural practices, revealing dance as a dynamic, shared language that links people across places and backgrounds.</p><p>This performance is a part of the Focus on the Local Landscape within the frame of Moving in November 6.-16.11.2025. As part of the festival, there will be an open Soup Talks discussion with the Focus on the Local Landscape artists hosted by Anna Kozonina and the Audience Club on the 16th of November at 13 in Eskus.</p><p>Language: English and Arabic, English and Arabic subtitles</p>"
            },
            "name": {
                "fi": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa",
                "sv": "Liikkeellä marraskuussa – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa",
                "en": "Moving in November – Laura Cemin & Bianca Hisse: Their Eyes Will Sear Holes in the Night Sky – Kino Caisa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67224/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67234",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491268,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-03T12:12:00.010915Z",
                    "last_modified_time": "2025-11-03T12:12:00.010927Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780046.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491268/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-03T12:11:59.909738Z",
            "last_modified_time": "2025-11-03T12:12:00.120530Z",
            "date_published": null,
            "start_time": "2025-11-06",
            "end_time": "2025-11-29",
            "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": "Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025",
                "sv": "Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025",
                "en": "Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01EC2DEF51004ECD5537475B67122A31/Annamari_Eskola_Kierto_ikebanataidetta_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/01EC2DEF51004ECD5537475B67122A31/Annamari_Eskola_Kierto_ikebanataidetta_",
                "en": "http://www.malmitalo.fi/en/events/event/01EC2DEF51004ECD5537475B67122A31/Annamari_Eskola_Kierto_ikebanataidetta_"
            },
            "description": {
                "fi": "<p>Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025</p><p>Kasvien elämänkierto, kiertyvät muodot ja materiaalien kierrättäminen ovat Annamari Eskolan installaatioiden teemoja. Vuodenkierrossa marraskuu on pimeintä aikaa, mutta kuolleissa kasveissa elämä on läsnä monella tasolla. <br>Annamari Eskola on opiskellut ikebanaa, japanilaista kukkien asettelun taidetta Sogetsu-koulukunnan oppien mukaan vuodesta 2012 asti. Moderni Sogetsu-tyyli on ottanut vaikutteita länsimaisesta taiteesta ja yhdistelee kasveja muihin elementteihin. Eskola käyttää taiteessaan kotiseutunsa Koillis-Helsingin kasvimateriaaleja. Niissä on hyödynnetty puutarhajätteitä sekä vainottuja vieraslajeja kuten jättitatarta ja japanintatarta. Joutomaiden romulöydökset ja elävät kukat yhdistyvät veistoksiksi, jotka näyttelyn päätyttyä palaavat materiaaleina kiertoon. <br> <br>Näyttelyn avajaiset järjestetään  ke 5.11. klo 17 alkaen.<br>  <br>Vapaa pääsy!</p>",
                "sv": "<p>Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025</p>",
                "en": "<p>Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025</p>"
            },
            "name": {
                "fi": "Annamari Eskola: Kierto – ikebanataidetta",
                "sv": "Annamari Eskola: Kierto – ikebanataidetta",
                "en": "Annamari Eskola: Kierto – ikebanataidetta"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67234/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:e76857f9-9d1b-4eb7-b047-02e51af29cc2",
            "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",
                        "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",
                        "en": "Hintatietojen lisätiedot",
                        "ru": "Hintatietojen lisätiedot",
                        "zh_hans": "Hintatietojen lisätiedot",
                        "ar": "Hintatietojen lisätiedot"
                    },
                    "price": {
                        "fi": "5",
                        "en": "4",
                        "ru": "4",
                        "zh_hans": "4",
                        "ar": "4"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1491262,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-31T11:39:30.803576Z",
                    "last_modified_time": "2025-10-31T11:39:30.803600Z",
                    "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/1491262/?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"
                }
            ],
            "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-11-03T11:20:48.709607Z",
            "last_modified_time": "2025-11-03T11:42:21.540287Z",
            "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",
                "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": {
                "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></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": "Testitesti sv",
                "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",
                "en": "Tapahtumapaikan lisätiedot - Englanti",
                "ru": "Tapahtumapaikan lisätiedot - Venäjä",
                "zh_hans": "Tapahtumapaikan lisätiedot - Kiina",
                "ar": "Tapahtumapaikan lisätiedot arabiaksi"
            },
            "provider": {
                "fi": "Digia",
                "en": "Digia",
                "ru": "Digia",
                "zh_hans": "Digia",
                "ar": "Digia"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:e76857f9-9d1b-4eb7-b047-02e51af29cc2/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66262",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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-3896720",
                        "sv": "https://www.lippu.fi/eventseries/name-3896720",
                        "en": "https://www.lippu.fi/eventseries/name-3896720"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 20€",
                        "sv": "15 € / 20€",
                        "en": "15 € / 20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155819,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T12:14:01.655567Z",
                    "last_modified_time": "2025-07-01T12:14:01.655582Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773104.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155819/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T12:14:01.545206Z",
            "last_modified_time": "2025-11-03T11:12:25.042198Z",
            "date_published": null,
            "start_time": "2025-11-22T13: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": "Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.",
                "sv": "Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt",
                "en": "The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8F23B416E41C081E098C2C201E7DFB77/Red_Nose_Company_Kuolematon_Punahilkka_satu_aikuisille",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8F23B416E41C081E098C2C201E7DFB77/Red_Nose_Company_Kuolematon_Punahilkka_en_saga_for_vuxna",
                "en": "http://www.kanneltalo.fi/en/events/event/8F23B416E41C081E098C2C201E7DFB77/Red_Nose_Company_The_Immortal_Little_Red_Riding_Hood_A_Fairy_Tale_for_Grown-Ups"
            },
            "description": {
                "fi": "<p>Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.</p><p>Punahilkan tarinan syntymän aikoihin satuja kerrottiin aikuisten viihdykkeeksi. Nyt klovnikaksikko, Babylon & Ré (Minna Puolanto ja Hanna Seppä), tarjoilee oman tulkintansa tästä klassikosta jälleen aikuisille. Tässä versiossa ei tarvitse sensuroida tai annostella hurjimpiakaan sävyjä ja tulkintoja, joita satuun on eri aikoina liitetty. Teoksen ohjaajana toimii Niina Sillanpää. <br>  <br>Punahilkka on siirtynyt viattomasta lapsuudesta aikuisuuteen. Mitä hänelle kuuluu? Mitä yksin metsään lähteminen hänelle tässä kohtaa elämää tarkoittaa? Klovnit päätyvät pohtimaan sadun symboliikkaa ja filosofoimaan elämän mysteeristä, menopaussista ja sankarillisuuden vaateesta. Susikin asuu ja vaanii heidän sisällään. Kuinka kestää pahuus itsessä? Mummon piirakat ovat lapsuuden muistoissa makoisia, mutta sukupolvien läpi kulkeva ankara kasvatus on joskus tihkunut myös omien lasten osaksi. Klovneissa nousevat pintaan läpi aikojen virtaavat tarinat, tottumukset, tajut ja tunteet  – niin vihat, onnet kuin surutkin.  <br> <br>Teoksessa piirtyvät esiin sadun lukemattomat eri versiot ja arkkityyppiset teemat, kuten hyvän ja pahan taistelu. Klovnit kertovat, säikäyttävät, opettavat ja viihdyttävät pelkäämättä tarttua sadun tummempiinkaan juonteisiin. Susi ja Punahilkka kohtaavat toisensa monella tasolla. Esitys pohtii toisaalta sitä, miksi suden päällä on kulttuurissamme aina raskas pahuuden painolasti? Voisiko ollakin niin, että Punahilkka edustaa sadussa pahuutta? Ihminen vie tilaa muilta lajeilta, eikä taida lopettaa ennen kuin on hävittänyt myös itsensä.  <br> <br>Kaiken lisäksi klovnit tuntevat luissaan ja ytimissään, kuinka sadunkertojien ahdinko kasvaa tässä ajassamme. Vaikka he joutuvatkin hautaamaan oman tehtävänsä, nuoruutensa, kauneutensa, säästötilinsä, kaikki unelmansa ja muutaman pahan tapansa, Punahilkka ei kuole koskaan. <br>  <br>Työryhmä on tehnyt aiemmin Punahilkasta esitykset lapsille (Punahilkan paluu, Red Nose Company 2023) sekä nuorille (Punahilkka K13, Red Nose Company 2024). Kuolematon Punahilkka on työryhmän kolmas tulkinta sadusta.  <br> <br>HUUDEILLA<br> Kanneltalon esitykset ovat osa Helsingin kaupungin rahoittamaa Huudeilla-aluehanketta. Kannelmäen ja Malminkartanon alueiden asukkaat ovat päässeet seuraamaan teoksen valmistumista avoimissa harjoituksissa prosessin eri vaiheissa. Mukana olleille tarjotaan kutsuliput Kanneltalon esityksiin. <br>  <br><b>TYÖRYHMÄ</b> <br> Näyttämöllä: Minna Puolanto ja Hanna Seppä <br> Ohjaus: Niina Sillanpää <br> Käsikirjoitus: Työryhmä <br> Valo ja äänisuunnittelu: Jere Kolehmainen <br> Pukusuunnittelu: Noora Salmi ja työryhmä <br> Valokuvat: Ilari Kallinen <br> Tuotanto: Red Nose Company <br> Yhteistuotanto: Red Nose Company, Kanneltalo, Huudeilla-aluehanke <br>  <br>Kesto: 1,5 h (ei väliaikaa) <br>Ikäsuositus: aikuisille, K14</p>",
                "sv": "<p>Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>Föreställningen vänder helt på sagan och öppnar den från alla håll. Clownerna tar sig an Rödluvans betydelser, barlaster och folkloristiska skikt. De leder oss, skrämmer, undervisar och naturligtvis underhåller de oss utan rädsla för att ta tag i de mörkare sakerna. Bra och ont bor i oss alla. Vågar vi titta på våra mörka punkter? Ser vi även ljuset bredvid? Clownerna badar åskådarna i skratt och gråt. De känner i märg och ben hur sagoberättarnas trångmål ökar i vår tid som är kärv för kulturen. Även om clownerna är tvungna att begrava vissa drömmar och kanske några dåliga vanor, kommer Rödluvan aldrig att dö.</p><p>Föreställningen behandlar sagornas arketypiska teman, oräkneliga olika versioner av berättelsen och traditioner för framförandet. Arbetsgruppen har tidigare lagt fram föreställningen Rödluvan för barn (Punahilkan paluu, Red Nose Company 2023) och för unga (Punahilkka K13, Red Nose Company 2024). I föreställningen för vuxna kan skaparna utnyttja allt material de samlat in om Rödluvan. Nu behöver man inte censurera eller portionera ut ens de mest raka nyanser och tolkningar som under olika tider har fogats till sagan.</p><p><b>HUUDEILLA</b><br>Föreställningarna är en del av det av Helsingfors stad finansierade regionprojektet Huudeilla. Invånarna i Gamlas och Malmgård får delta i delaktiggörande öppna övningar i olika faser av produktionen av verket. I manuset beaktas observationer och iakttagelser som samlats in av åskådarna. De som deltagit bjuds på biljetter till Gamlasgårdens föreställningar.<br> <br>Längd 1,5 h (ingen paus)<br>Åldersrekommendation: 14+</p><p><b>ARBETSGRUPP</b><br>På scenen Minna Puolanto och Hanna Seppä <br>Regi Niina Sillanpää<br>Manus: arbetsgrupp<br>Ljus- och ljudplanering Jere Kolehmainen<br>Kostymering Noora Salmi<br>Fotografier och grafisk uppsyn Ilari Kallinen<br>Produktion Red Nose Company <br>Samproduktion Red Nose Company, Gamlasgården, områdesprojektet Huudeilla</p>",
                "en": "<p>The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>The show turns the fairy tale inside out, examining it from every angle. The clowns dissect the meanings, historic burdens and folkloric layers of Little Red Riding Hood. They guide, startle, enlighten and, of course, entertain, fearlessly diving into even the darkest threads of the tale. Good and evil live in all of us. Do we dare look into our own shadowy corners? And if we do, will we also see light beside them? The clowns will bathe the audience in laughter and tears. They will feel the growing despair of storytellers in a time when culture is being hollowed out. Even though the clowns may have to bury some of their dreams and perhaps a few bad habits, Little Red Riding Hood never dies.</p><p>This performance explores the archetypal themes of the tale, its countless variations and the traditions of performing stories. The team has previously created Little Red Riding Hood performances for children (The Return of Little Red Riding Hood, Red Nose Company 2023) and teens (Little Red Riding Hood, Red Nose Company 2024). Now, in this version for adults, they bring together all the material they have ever gathered about the story. No need to censor or dilute even the boldest shades or interpretations that have been associated with the tale through the ages.</p><p><b>IN THE HOOD</b><br>The performances are part of the Huudeilla (\"In the Hood\") neighbourhood project, funded by the City of Helsinki. Residents of the Kannelmäki and Malminkartano areas are invited to take part in open, participatory rehearsals during various stages of the production process. Feedback and observations collected from the participants will be incorporated into the script. Those involved in the workshops will receive complimentary tickets to performances at Kanneltalo.<br> <br>Duration: 1.5 hours (no intermission)<br>Recommended age: 14+</p><p><b>CREATIVE TEAM</b><br>On stage: Minna Puolanto and Hanna Seppä <br>Directed by: Niina Sillanpää<br>Script: Creative team<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Photography and visual design: Ilari Kallinen<br>Production: Red Nose Company <br>Co-production: Red Nose Company, Kanneltalo, Huudeilla Neighbourhood Project</p>"
            },
            "name": {
                "fi": "Red Nose Company: Kuolematon Punahilkka – satu aikuisille",
                "sv": "Red Nose Company: Kuolematon Punahilkka – en saga för vuxna",
                "en": "Red Nose Company: The Immortal Little Red Riding Hood – A Fairy Tale for Grown-Ups"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66262/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66261",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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-3896720",
                        "sv": "https://www.lippu.fi/eventseries/name-3896720",
                        "en": "https://www.lippu.fi/eventseries/name-3896720"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 20€",
                        "sv": "15 € / 20€",
                        "en": "15 € / 20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155818,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T12:14:01.232482Z",
                    "last_modified_time": "2025-07-01T12:14:01.232497Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773102.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155818/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T12:14:01.103165Z",
            "last_modified_time": "2025-11-03T11:12:24.709301Z",
            "date_published": null,
            "start_time": "2025-11-21T16: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": "Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.",
                "sv": "Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt",
                "en": "The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FFB4C3A600A33C41C233CBD1F8F9A662/Red_Nose_Company_Kuolematon_Punahilkka_satu_aikuisille",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FFB4C3A600A33C41C233CBD1F8F9A662/Red_Nose_Company_Kuolematon_Punahilkka_en_saga_for_vuxna",
                "en": "http://www.kanneltalo.fi/en/events/event/FFB4C3A600A33C41C233CBD1F8F9A662/Red_Nose_Company_The_Immortal_Little_Red_Riding_Hood_A_Fairy_Tale_for_Grown-Ups"
            },
            "description": {
                "fi": "<p>Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.</p><p>Punahilkan tarinan syntymän aikoihin satuja kerrottiin aikuisten viihdykkeeksi. Nyt klovnikaksikko, Babylon & Ré (Minna Puolanto ja Hanna Seppä), tarjoilee oman tulkintansa tästä klassikosta jälleen aikuisille. Tässä versiossa ei tarvitse sensuroida tai annostella hurjimpiakaan sävyjä ja tulkintoja, joita satuun on eri aikoina liitetty. Teoksen ohjaajana toimii Niina Sillanpää. <br>  <br>Punahilkka on siirtynyt viattomasta lapsuudesta aikuisuuteen. Mitä hänelle kuuluu? Mitä yksin metsään lähteminen hänelle tässä kohtaa elämää tarkoittaa? Klovnit päätyvät pohtimaan sadun symboliikkaa ja filosofoimaan elämän mysteeristä, menopaussista ja sankarillisuuden vaateesta. Susikin asuu ja vaanii heidän sisällään. Kuinka kestää pahuus itsessä? Mummon piirakat ovat lapsuuden muistoissa makoisia, mutta sukupolvien läpi kulkeva ankara kasvatus on joskus tihkunut myös omien lasten osaksi. Klovneissa nousevat pintaan läpi aikojen virtaavat tarinat, tottumukset, tajut ja tunteet  – niin vihat, onnet kuin surutkin.  <br> <br>Teoksessa piirtyvät esiin sadun lukemattomat eri versiot ja arkkityyppiset teemat, kuten hyvän ja pahan taistelu. Klovnit kertovat, säikäyttävät, opettavat ja viihdyttävät pelkäämättä tarttua sadun tummempiinkaan juonteisiin. Susi ja Punahilkka kohtaavat toisensa monella tasolla. Esitys pohtii toisaalta sitä, miksi suden päällä on kulttuurissamme aina raskas pahuuden painolasti? Voisiko ollakin niin, että Punahilkka edustaa sadussa pahuutta? Ihminen vie tilaa muilta lajeilta, eikä taida lopettaa ennen kuin on hävittänyt myös itsensä.  <br> <br>Kaiken lisäksi klovnit tuntevat luissaan ja ytimissään, kuinka sadunkertojien ahdinko kasvaa tässä ajassamme. Vaikka he joutuvatkin hautaamaan oman tehtävänsä, nuoruutensa, kauneutensa, säästötilinsä, kaikki unelmansa ja muutaman pahan tapansa, Punahilkka ei kuole koskaan. <br>  <br>Työryhmä on tehnyt aiemmin Punahilkasta esitykset lapsille (Punahilkan paluu, Red Nose Company 2023) sekä nuorille (Punahilkka K13, Red Nose Company 2024). Kuolematon Punahilkka on työryhmän kolmas tulkinta sadusta.  <br> <br>HUUDEILLA<br> Kanneltalon esitykset ovat osa Helsingin kaupungin rahoittamaa Huudeilla-aluehanketta. Kannelmäen ja Malminkartanon alueiden asukkaat ovat päässeet seuraamaan teoksen valmistumista avoimissa harjoituksissa prosessin eri vaiheissa. Mukana olleille tarjotaan kutsuliput Kanneltalon esityksiin. <br>  <br><b>TYÖRYHMÄ</b> <br> Näyttämöllä: Minna Puolanto ja Hanna Seppä <br> Ohjaus: Niina Sillanpää <br> Käsikirjoitus: Työryhmä <br> Valo ja äänisuunnittelu: Jere Kolehmainen <br> Pukusuunnittelu: Noora Salmi ja työryhmä <br> Valokuvat: Ilari Kallinen <br> Tuotanto: Red Nose Company <br> Yhteistuotanto: Red Nose Company, Kanneltalo, Huudeilla-aluehanke <br>  <br>Kesto: 1,5 h (ei väliaikaa) <br>Ikäsuositus: aikuisille, K14</p>",
                "sv": "<p>Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>Föreställningen vänder helt på sagan och öppnar den från alla håll. Clownerna tar sig an Rödluvans betydelser, barlaster och folkloristiska skikt. De leder oss, skrämmer, undervisar och naturligtvis underhåller de oss utan rädsla för att ta tag i de mörkare sakerna. Bra och ont bor i oss alla. Vågar vi titta på våra mörka punkter? Ser vi även ljuset bredvid? Clownerna badar åskådarna i skratt och gråt. De känner i märg och ben hur sagoberättarnas trångmål ökar i vår tid som är kärv för kulturen. Även om clownerna är tvungna att begrava vissa drömmar och kanske några dåliga vanor, kommer Rödluvan aldrig att dö.</p><p>Föreställningen behandlar sagornas arketypiska teman, oräkneliga olika versioner av berättelsen och traditioner för framförandet. Arbetsgruppen har tidigare lagt fram föreställningen Rödluvan för barn (Punahilkan paluu, Red Nose Company 2023) och för unga (Punahilkka K13, Red Nose Company 2024). I föreställningen för vuxna kan skaparna utnyttja allt material de samlat in om Rödluvan. Nu behöver man inte censurera eller portionera ut ens de mest raka nyanser och tolkningar som under olika tider har fogats till sagan.</p><p><b>HUUDEILLA</b><br>Föreställningarna är en del av det av Helsingfors stad finansierade regionprojektet Huudeilla. Invånarna i Gamlas och Malmgård får delta i delaktiggörande öppna övningar i olika faser av produktionen av verket. I manuset beaktas observationer och iakttagelser som samlats in av åskådarna. De som deltagit bjuds på biljetter till Gamlasgårdens föreställningar.<br> <br>Längd 1,5 h (ingen paus)<br>Åldersrekommendation: 14+</p><p><b>ARBETSGRUPP</b><br>På scenen Minna Puolanto och Hanna Seppä <br>Regi Niina Sillanpää<br>Manus: arbetsgrupp<br>Ljus- och ljudplanering Jere Kolehmainen<br>Kostymering Noora Salmi<br>Fotografier och grafisk uppsyn Ilari Kallinen<br>Produktion Red Nose Company <br>Samproduktion Red Nose Company, Gamlasgården, områdesprojektet Huudeilla</p>",
                "en": "<p>The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>The show turns the fairy tale inside out, examining it from every angle. The clowns dissect the meanings, historic burdens and folkloric layers of Little Red Riding Hood. They guide, startle, enlighten and, of course, entertain, fearlessly diving into even the darkest threads of the tale. Good and evil live in all of us. Do we dare look into our own shadowy corners? And if we do, will we also see light beside them? The clowns will bathe the audience in laughter and tears. They will feel the growing despair of storytellers in a time when culture is being hollowed out. Even though the clowns may have to bury some of their dreams and perhaps a few bad habits, Little Red Riding Hood never dies.</p><p>This performance explores the archetypal themes of the tale, its countless variations and the traditions of performing stories. The team has previously created Little Red Riding Hood performances for children (The Return of Little Red Riding Hood, Red Nose Company 2023) and teens (Little Red Riding Hood, Red Nose Company 2024). Now, in this version for adults, they bring together all the material they have ever gathered about the story. No need to censor or dilute even the boldest shades or interpretations that have been associated with the tale through the ages.</p><p><b>IN THE HOOD</b><br>The performances are part of the Huudeilla (\"In the Hood\") neighbourhood project, funded by the City of Helsinki. Residents of the Kannelmäki and Malminkartano areas are invited to take part in open, participatory rehearsals during various stages of the production process. Feedback and observations collected from the participants will be incorporated into the script. Those involved in the workshops will receive complimentary tickets to performances at Kanneltalo.<br> <br>Duration: 1.5 hours (no intermission)<br>Recommended age: 14+</p><p><b>CREATIVE TEAM</b><br>On stage: Minna Puolanto and Hanna Seppä <br>Directed by: Niina Sillanpää<br>Script: Creative team<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Photography and visual design: Ilari Kallinen<br>Production: Red Nose Company <br>Co-production: Red Nose Company, Kanneltalo, Huudeilla Neighbourhood Project</p>"
            },
            "name": {
                "fi": "Red Nose Company: Kuolematon Punahilkka – satu aikuisille",
                "sv": "Red Nose Company: Kuolematon Punahilkka – en saga för vuxna",
                "en": "Red Nose Company: The Immortal Little Red Riding Hood – A Fairy Tale for Grown-Ups"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66261/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:9d7ed465-3b3d-f011-b4cc-main9101",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:65018/?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:p1235/?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: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: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/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340"
                    },
                    "description": {
                        "fi": "lapset"
                    },
                    "price": {
                        "fi": "10"
                    }
                },
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340"
                    },
                    "description": {
                        "fi": "aikuiset"
                    },
                    "price": {
                        "fi": "5"
                    }
                }
            ],
            "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/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:p1235/?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: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: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-11-03T10:30:00.642801Z",
            "last_modified_time": "2025-11-03T10:30:00.642822Z",
            "date_published": "2025-05-30T09:49:37Z",
            "start_time": "2025-11-30T09:58:00Z",
            "end_time": "2025-11-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 2,
            "audience_max_age": 24,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": 100,
            "enrolment_start_time": "2025-11-30T07:00:00+02:00",
            "enrolment_end_time": "2025-11-30T13:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "pricetestaus hw v1"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>TLDG_174_Toistuvat tapahtumat v1</p></div>"
            },
            "name": {
                "fi": "Svedutestaus"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Digia"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:9d7ed465-3b3d-f011-b4cc-main9101/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmzvtrbi4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T12:23:37.825535Z",
            "last_modified_time": "2025-11-03T07:18:43.852563Z",
            "date_published": null,
            "start_time": "2025-11-22T13:00:00Z",
            "end_time": "2025-11-22T13: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": "Muovipussimeri on runollinen ja visuaalinen esitys merestä",
                "sv": "Plastpåsehavet",
                "en": "Sea of Plastic Bags"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Muovipussimeri on runollinen ja visuaalinen esitys merestä, muovista ja meren eläimistä. Esitys vie katsojan merenrannalle, hiekan ja meren siloittamien kivien äärelle tuntemaan ja kuulemaan, mitä merelle tänään kuuluu. Esityksen jälkeen katsojat saavat viettää aikaa näyttämöllä ja tutkia esityksessä rakentunutta maisemaa.</p><p><br></p><p>OHJAUS\tMinna Savin</p><p>VISUAALINEN SUUNNITTELU\tJohannes Saljas vierailija</p><p>ÄÄNISUUNNITTELU JA LAULUT\tMinna Savin</p><p>ESIINTYJÄ\tMinna Savin</p><p><br></p><p>Kesto: noin 45 min</p><p>Suositusikä: yli 3-vuotiaat, 1.4.-luokkalaiset</p><p>Kieli: Suomi</p><p><br></p><p>Lippulaivan kirjastossa on esitysten ohella Kierrätysaskartelua Romupajassa klo 15–17. Romupajassa askarrellaan ja rakennetaan erilaisesta kierrätysmateriaalista vain oma mielikuvitus rajana. Käytössä rakenteluun on kuumaliima eli voi tehdä isojakin teoksia. Teokset voi myös maalata.</p><p><br></p><p>Tapahtuma on osa Espoon Lasten viikonlopun ohjelmaa. Lue lisää Lasten viikonlopusta espoo.fi-sivulta: espoo.fi/lastenviikonloppu.</p><p>Tapahtuman järjestää Espoonlahden kulttuurihanke.</p>",
                "sv": "<p>Plastpåsehavet är en poetisk och visuell föreställning om havet, plast och havets djur. Föreställningen tar publiken till havsstranden, till de stenar som slipats av sand och vågor, för att känna och höra vad havet har att säga just idag. Efter föreställningen får publiken vistas på scenen och utforska det landskap som byggts upp under föreställningen.</p><p><br></p><p>REGI Minna Savin</p><p>VISUELL DESIGN Gästkonstnär Johannes Saljas</p><p>LJUDDESIGN OCH SÅNGER Minna Savin</p><p>FRAMTRÄDANDE Minna Savin</p><p><br></p><p>Längd ca 45 min</p><p>Rekommenderas för barn mellan över 3 år, årskurs 1–4.</p><p>Språk: finska</p><p><br></p><p>Evenemanget är en del av programmet på Barnens veckoslut i Esbo. Läs mer om Barnens veckoslut på Esbo stads webbplats: www.esbo.fi/barnens-veckoslut.&nbsp;</p>",
                "en": "<p>Sea of Plastic Bags is a poetic and visual performance about the sea, plastic, and marine animals. The performance takes the audience to the seashore, to the stones smoothed by sand and waves, to feel and hear what the sea has to say today. After the performance, the audience is invited onto the stage to spend time exploring the landscape created during the show.</p><p><br></p><p>DIRECTION Minna Savin</p><p>VISUAL DESIGN Guest artist Johannes Saljas</p><p>SOUND DESIGN AND SONGS Minna Savin</p><p>PERFORMER Minna Savin</p><p><br></p><p>Duration approx. 45 min</p><p>Recommended for children aged over 3 years, 1-4. graders</p><p>Language: Finnish</p><p><br></p><p>This event is part of Children’s Weekend in Espoo. Read more about Children’s Weekend: www.espoo.fi/en/childrens-weekend.&nbsp;</p>"
            },
            "name": {
                "fi": "Lasten viikonloppu: Muovipussimeri",
                "sv": "Barnens veckoslut: Plastpåsehavet",
                "en": "Children’s Weekend: Sea of Plastic Bags"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmzvtrbi4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnervmi2a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T12:22:49.055595Z",
            "last_modified_time": "2025-11-03T07:17:16.774519Z",
            "date_published": "2025-09-30T11:59:00Z",
            "start_time": "2025-11-22T11:00:00Z",
            "end_time": "2025-11-22T11: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": "Muovipussimeri on runollinen ja visuaalinen esitys merestä",
                "sv": "Plastpåsehavet",
                "en": "Sea of Plastic Bags"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Muovipussimeri on runollinen ja visuaalinen esitys merestä, muovista ja meren eläimistä. Esitys vie katsojan merenrannalle, hiekan ja meren siloittamien kivien äärelle tuntemaan ja kuulemaan, mitä merelle tänään kuuluu. Esityksen jälkeen katsojat saavat viettää aikaa näyttämöllä ja tutkia esityksessä rakentunutta maisemaa.</p><p><br></p><p>OHJAUS\tMinna Savin</p><p>VISUAALINEN SUUNNITTELU\tJohannes Saljas vierailija</p><p>ÄÄNISUUNNITTELU JA LAULUT\tMinna Savin</p><p>ESIINTYJÄ\tMinna Savin</p><p><br></p><p>Kesto: noin 45 min</p><p>Suositusikä: yli 3-vuotiaat, 1.4.-luokkalaiset</p><p>Kieli: Suomi</p><p><br></p><p>Lippulaivan kirjastossa on esitysten ohella Kierrätysaskartelua Romupajassa klo 15–17. Romupajassa askarrellaan ja rakennetaan erilaisesta kierrätysmateriaalista vain oma mielikuvitus rajana. Käytössä rakenteluun on kuumaliima eli voi tehdä isojakin teoksia. Teokset voi myös maalata.</p><p><br></p><p>Tapahtuma on osa Espoon Lasten viikonlopun ohjelmaa. Lue lisää Lasten viikonlopusta espoo.fi-sivulta: espoo.fi/lastenviikonloppu.</p><p>Tapahtuman järjestää Espoonlahden kulttuurihanke.</p>",
                "sv": "<p>Plastpåsehavet är en poetisk och visuell föreställning om havet, plast och havets djur. Föreställningen tar publiken till havsstranden, till de stenar som slipats av sand och vågor, för att känna och höra vad havet har att säga just idag. Efter föreställningen får publiken vistas på scenen och utforska det landskap som byggts upp under föreställningen.</p><p><br></p><p>REGI Minna Savin</p><p>VISUELL DESIGN Gästkonstnär Johannes Saljas</p><p>LJUDDESIGN OCH SÅNGER Minna Savin</p><p>FRAMTRÄDANDE Minna Savin</p><p><br></p><p>Längd ca 45 min</p><p>Rekommenderas för barn mellan över 3 år, årskurs 1–4.</p><p>Språk: finska</p><p><br></p><p>Evenemanget är en del av programmet på Barnens veckoslut i Esbo. Läs mer om Barnens veckoslut på Esbo stads webbplats: www.esbo.fi/barnens-veckoslut.&nbsp;</p>",
                "en": "<p>Sea of Plastic Bags is a poetic and visual performance about the sea, plastic, and marine animals. The performance takes the audience to the seashore, to the stones smoothed by sand and waves, to feel and hear what the sea has to say today. After the performance, the audience is invited onto the stage to spend time exploring the landscape created during the show.</p><p><br></p><p>DIRECTION Minna Savin</p><p>VISUAL DESIGN Guest artist Johannes Saljas</p><p>SOUND DESIGN AND SONGS Minna Savin</p><p>PERFORMER Minna Savin</p><p><br></p><p>Duration approx. 45 min</p><p>Recommended for children aged over 3 years, 1-4. graders</p><p>Language: Finnish</p><p><br></p><p>This event is part of Children’s Weekend in Espoo. Read more about Children’s Weekend: www.espoo.fi/en/childrens-weekend.&nbsp;</p>"
            },
            "name": {
                "fi": "Lasten viikonloppu: Muovipussimeri",
                "sv": "Barnens veckoslut: Plastpåsehavet",
                "en": "Children’s Weekend: Sea of Plastic Bags"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnervmi2a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}