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

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

{
    "meta": {
        "count": 25055,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=11",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=9"
    },
    "data": [
        {
            "id": "espoo_le:agmmnttwti",
            "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/helmet:11727/?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:p1808/?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:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttgxm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmntthxe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttivu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttjwu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttkxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttlvi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttmum/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttnt4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttore/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttppy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttqqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttrse/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttsru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmntttqi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttuta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttvve/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-20T08:28:54.157367Z",
                    "last_modified_time": "2025-08-20T08:28:54.157381Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cc46c17a-0fce-4b9b-bd0f-138a0e315a59.jpg",
                    "cropping": "33,0,535,502",
                    "photographer_name": "Nadi Borodina / Unsplash",
                    "alt_text": "Kuvassa on kasakirjoja ja kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-20T08:29:22.562347Z",
            "last_modified_time": "2025-11-04T13:00:58.521864Z",
            "date_published": null,
            "start_time": "2025-09-02T09:00:00Z",
            "end_time": "2025-12-16T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13 monitoimitila Salonkiin. Toiminta on suunnattu aikuisille.</p><p><br></p><p>Päivämäärät ja teemat:</p><p><br></p><p>2.9. Kirjallisia matkoja maailmalle</p><p>9.9. Hyvän mielen kirjakerho</p><p>16.9. Kirjavinkkausta</p><p>23.9.&nbsp;Medici tv:n klassisen musiikinkonsertti</p><p>30.9. Bingo</p><p>7.10. Hyvän mielen kirjakerho</p><p>14.10. Kirjavinkkausta</p><p>21.10. Aikuisten kauhusatuhetki</p><p>28.10. Majakkakirjavinkkausta</p><p>4.11. Hyvän mielen kirjakerho</p><p>11.11. Kirjavinkkausta</p><p>18.11. Ruokakirjavinkki</p><p>25.11. Medici tv:n klassisen musiikinkonsertti</p><p>2.12. Aikuisten joulusatuhetki</p><p>9.12. Kirjavinkkausta</p><p>16.12. Hyvän mielen kirjakerho</p><p><br></p><p>Tapahtumaan ei tarvitse ilmoittautua.</p>",
                "sv": "<p>Kom och låt dig inspireras! Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!</p><p><br></p><p>Datum och teman:</p><p>2.9. Litterära resor runt om i världen</p><p>9.9. Läsningscirkel för underhållningslitteratur</p><p>16.9. Bokrekommendationer</p><p>23.9. Medici TV klassisk musikkonsert</p><p>30.9. Bingo</p><p>7.10. Underhållningslitteraturens läsningscirkel</p><p>14.10. Bokrekommendationer</p><p>21.10.&nbsp;Skräckhistorier för vuxna</p><p>28.10. Fyrens bokrekommendationer</p><p>4.11. Underhållningslitteraturens läsningscirkel</p><p>11.11.&nbsp;Bokrekommendationer</p><p>18.11.&nbsp;Matbokrekommendationer</p><p>25.11. Medici TV klassisk musikkonsert</p><p>2.12.&nbsp;Julberättelser för vuxna&nbsp;</p><p>9.12. Bokrekommendationer</p><p>16.12.&nbsp;Underhållningslitteraturens läsecirkel</p><p><br></p><p>Ingen anmälan krävs för evenemanget.</p><p><br></p><p>Evenemanget hålls på finska.</p>",
                "en": "<p>Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The themes change weekly and the activities are aimed at adults. Welcome!</p><p><br></p><p>Dates and themes:</p><p>2.9. Literary journeys around the world</p><p>9.9. Entertainment literature reading circle</p><p>16.9. Book recommendations</p><p>23.9. Medici TV classical music concert</p><p>30.9. Bingo</p><p>7.10. Entertainment literature reading circle</p><p>14.10. Book recommendations</p><p>21.10. Adult horror story time</p><p>28.10. Lighthouse book recommendations</p><p>4.11. Entertainment literature reading circle</p><p>11.11. Book recommendations</p><p>18.11. Food book recommendations</p><p>25.11. Medici TV classical music concert</p><p>2.12. Adult Christmas story time&nbsp;</p><p>9.12. Book recommendations</p><p>16.12. Entertainment literature reading circle</p><p><br></p><p>No registration is required for the event.</p><p><br></p><p>The event is in finnish.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Aikuisten kirjallisuus- ja kulttuuritiistait",
                "sv": "Vuxnas litteratur- och kulturkunskap",
                "en": "Literature and culture Tuesdays for adults"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "short_description": {
                "fi": "Tule, istahda ja inspiroidu! Tervetuloa kirjallisuuden ja viihteen pariin joka tiistai klo 12-13. Toiminta on suunnattu aikuisille.",
                "sv": "Kom och njut av litteratur och underhållning varje tisdag kl. 12.00–13.00. Teman ändras varje vecka och aktiviteterna riktar sig till vuxna. Välkommen!",
                "en": "Come and be inspired! Come and enjoy literature and entertainment every Tuesday from 12:00 to 13:00. The activities are aimed at adults. Welcome!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttwti/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66407",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi",
                        "sv": "https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi",
                        "en": "https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi"
                    },
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490846,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-19T14:13:26.404781Z",
                    "last_modified_time": "2025-09-19T14:13:26.404795Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774088.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490846/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-18T07:13:20.798132Z",
            "last_modified_time": "2025-11-04T11:13:31.781327Z",
            "date_published": null,
            "start_time": "2025-11-04T16: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,
            "description": {
                "fi": "<p>Strömsö on hilpeä esitys kaikesta siitä, mikä on pielessä – elämässä, yhteiskunnassa ja fiktiossa.</p><p>Mutta ei syytä huoleen! Nyt eskapismista tehdään taidetta: tarinoiden onnettomat loput korjataan, tuloksena uusi, uljas maailma, jossa kaikki menee niin kuin Strömsössä! Vai meneekö? Voidaanko taiteella todella muuttaa maailmaa, ja mikä oikeastaan saa kaipaamaan Maahan jota ei ole (Södergran).</p><p>Palkittu Red Nose Company on yksi Suomen arvostetuimmista kiertueteattereista, joka tekee nyt ensimmäisen ruotsinkielisen ensi-iltansa. Ohjauksesta vastaa Marielle Eklund-Vasama, jonka edellinen klovniesitys Babylon oli viiden tähden hitti.</p><p>Lavalla nähdään upeasti laulava duo Stella Laine – Marika Westerling, jotka debytoivat Red Nose Companyn riveissä. Musiikin on säveltänyt ja sovittanut Petri Tiainen, joka myös soittaa esityksissä. Käsikirjoitus lainaa vapaasti useammastakin tunnetusta klassikosta, ja ensimmäistä kertaa Red Nose Companyn 20-vuotisessa historiassa tullaan kuulemaan myös oopperaa laulavia klovneja!</p><p>Loppu hyvin – kaikki hyvin!</p><p><b>HUOM!</b> Esitys on maksuton, mutta siihen täytyy varata liput etukäteen. Varaa liput täältä: https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi<br> <br><b>TYÖRYHMÄ</b><br> Ohjaus Marielle Eklund-Vasama<br> Näyttelijät Stella Laine ja Marika Westerling<br> Sävellys, sovitus ja livemuusikko Petri Tiainen<br> Käsikirjoitus Marielle Eklund-Vasama<br> Poikkeamat tekstistä Työryhmä<br> Skenografia ja puvut Reija Laine<br> Valokuvat Cata Portin<br> Tuotanto Red Nose Company<br> <br>Ensi-ilta 13.5.2025 Lilla Teaternissa<br> <br>Esityksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings Stiftelse sekä Understödsstiftelsen för Arbetets Vänner</p><p>Esityskieli on ruotsi. Esitys tekstitetään suomeksi.</p><p>Kesto: 2 t 15 min<br>Ikäsuositus +13</p><p>Maksuton, liput varattava etukäteen tästä linkistä: <br>https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi</p>",
                "sv": "<p>Strömsö är en munter föreställning om allt som är fel – i livet, samhället och fiktionen.</p><p>Men oroa dig inte! Nu förvandlas eskapism till konst: berättelsernas olyckliga slut fixas, vilket resulterar i en imposant ny värld där allt går som på Strömsö! Eller går det? Kan konst verkligen förändra världen, och vad får en egentligen att längta till landet som icke är (Södergran)?</p><p>Prisbelönta Red Nose Company är en av Finlands mest uppskattade turnerande teatrar, som nu gör sin första premiär på svenska. För regin svarar Marielle Eklund-Vasama, vars tidigare clownföreställning Babylon var en femstjärnig hit.</p><p>På scenen står den underbara sångduon Stella Laine – Marika Westerling, som debuterar med Red Nose Company. Musiken är komponerad och arrangerad av Petri Tiainen, som också spelar i föreställningarna. Manuset lånar fritt från ett antal välkända klassiker, och för första gången i Red Nose Companys 20-åriga historia kommer vi att få höra clowner som sjunger opera!</p><p>Slutet gott – allting gott!<br> <br><b>OBS!</b>Avgiftsfritt, biljetterna ska bokas i förväg:<br>https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi</p><p><b>ARBETSGRUPP</b><br> Regi: Marielle Eklund-Vasama<br> Skådespelare: Stella Laine och Marika Westerling<br> Komposition, arrangemang och livemusiker: Petri Tiainen<br> Manus: Marielle Eklund-Vasama<br> Avvikelser från texten: Arbetsgruppen<br> Scenografi och kostymer: Reija Laine<br> Foton: Cata Portin<br> Produktion: Red Nose Company<br> Premiär: 13.5.2025 på Lilla Teatern<br> Produktionen har fått stöd av Alfred Kordelins Stiftelse, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings Stiftelse och Understödsstiftelsen för Arbetets Vänner</p><p>Föreställningen är på svenska. Föreställningen textas på finska.</p><p>Längd: 2 timmar 15 minuter</p>",
                "en": "<p>Strömsö is a hilarious representation of everything that is wrong – in life, society and fiction.</p><p>But not to worry! Now escapism is turned into art: the unhappy endings of the stories are fixed, resulting in a brave new world where everything goes according to plan! Or will it? Can art really change the world, and what exactly makes one long for The Land which Is Not (Södergran).</p><p>The award-winning Red Nose Company is one of Finland's most acclaimed touring theatres, now making its first Swedish-language premiere. The performance is directed by Marielle Eklund-Vasama, whose previous clown show Babylon was a five-star hit.<br>On stage, you will see the fantastic singing duo Stella Laine and Marika Westerling, making their debut with the Red Nose Company. The music is composed and arranged by Petri Tiainen, who also performs in the shows. The script freely borrows from several well-known classics, and for the first time in Red Nose Company's 20-year history, you will also hear clowns singing opera!</p><p>All is well that ends well!<br> <br><b>Please note!</b>Free of charge; tickets must be booked in advance.<br>https://www.lippu.fi/eventseries/name-3980131/?affiliate=vfi</p><p><b>WORKING GROUP</b><br> Director: Marielle Eklund-Vasama<br> Actors: Stella Laine and Marika Westerling<br> Composition, arrangement and live music: Petri Tiainen<br> Script: Marielle Eklund-Vasama<br> Deviations from the text: Working group<br> Scenography and costumes: Reija Laine<br> Photos: Cata Portin<br> Production: Red Nose Company<br> Premiere: 13 May 2025 at Lilla Teatern<br> The production has been supported by the Alfred Kordelin Foundation, Konstsamfundet, the Tre Smeder Foundation, the Swedish Cultural Foundation in Finland, Thurings Stiftelse and Understödsstiftelsen för Arbetets Vänner</p><p>The performance language is Swedish. The show will be subtitled in Finnish.</p><p>Duration: 2 hours 15 min</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/314CDA932927E0A266E1BDFFD12F31C5/LOPPUUNVARATTU_Red_Nose_Company_Stromso",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/314CDA932927E0A266E1BDFFD12F31C5/LOPPUUNVARATTU_Red_Nose_Company_Stromso",
                "en": "http://www.malmitalo.fi/en/events/event/314CDA932927E0A266E1BDFFD12F31C5/LOPPUUNVARATTU_Red_Nose_Company_Stromso"
            },
            "name": {
                "fi": "LOPPUUNVARATTU Red Nose Company: Strömsö",
                "sv": "LOPPUUNVARATTU Red Nose Company: Strömsö",
                "en": "LOPPUUNVARATTU Red Nose Company: Strömsö"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Strömsö on hilpeä esitys kaikesta siitä, mikä on pielessä – elämässä, yhteiskunnassa ja fiktiossa.",
                "sv": "Strömsö är en munter föreställning om allt som är fel – i livet, samhället och fiktionen.",
                "en": "Strömsö is a hilarious representation of everything that is wrong – in life, society and fiction."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66407/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agne5icufa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491280,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-04T11:00:34.045102Z",
                    "last_modified_time": "2025-11-04T11:00:34.045119Z",
                    "name": "Kuvassa on jouluteemainen juliste, jossa lukee paketointipaja.",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/66499be6-6073-4656-9efe-ea32d0df6b36.png",
                    "cropping": "179,0,1061,882",
                    "photographer_name": "Elina Kulmala",
                    "alt_text": "Joulu, lahjat, paketointipaja, Espoo, kirjasto, Entresse, Helmet",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491280/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-04T11:03:23.771391Z",
            "last_modified_time": "2025-11-04T11:03:23.771408Z",
            "date_published": null,
            "start_time": "2025-12-11T11:00:00Z",
            "end_time": "2025-12-11T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tervetuloa paketoimaan joululahjoja ja laulamaan joululauluja Entressen kirjaston pajaan! Tuo mukanasi paketoitava lahja, kirjasto tarjoaa kierrätettyä lahjapaperia, nauhoja ja materiaaleja korttien tekoon.</p><p><br></p><p>11.12. Klo 13-14 ja 16-18</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Paketointipaja"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa paketoimaan joululahjoja ja laulamaan joululauluja Entressen kirjaston pajaan!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne5icufa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491281,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-04T10:39:35.048121Z",
                    "last_modified_time": "2025-11-04T10:39:35.048143Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1c574714-6751-4910-b141-9414dc4a1d1f.png",
                    "cropping": "270,0,966,696",
                    "photographer_name": "Heli Blåfield",
                    "alt_text": "elina Pulli ja uuden kirjan kansi: jauhopeukalot",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491281/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "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,
            "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>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Elina Pulli: Jauhopeukalot - kirjan julkistamistilaisuus"
            },
            "location_extra_info": {
                "fi": "Stage"
            },
            "short_description": {
                "fi": "Tervetuloa juhlistamaan uutta lastenkirjaa.\n"
            },
            "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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768470.jpg",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "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_"
            },
            "name": {
                "fi": "FLOW (7) – Koulukino",
                "sv": "FLOW (7) – Koulukino",
                "en": "FLOW (7) – Koulukino"
            },
            "location_extra_info": 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."
            },
            "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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772442.jpg",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Flow (7) – Koulukino",
                "sv": "Flow (7) – Koulukino",
                "en": "Flow (7) – Koulukino"
            },
            "location_extra_info": 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."
            },
            "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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772494.jpg",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "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_"
            },
            "name": {
                "fi": "Piilossa",
                "sv": "Piilossa (I gömman)",
                "en": "Piilossa (Hidden)"
            },
            "location_extra_info": 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."
            },
            "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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772213.jpg",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "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"
            },
            "name": {
                "fi": "Joulun Sävel",
                "sv": "Julens Melodi",
                "en": "The Sound of Christmas"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Koilliskuoron joulukonsertti",
                "sv": "Julkonsert med Koilliskuoro",
                "en": "Koilliskuoro Choir's Christmas Concert"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66122/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67091",
            "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: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490951,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T11:13:27.891450Z",
                    "last_modified_time": "2025-09-30T11:13:27.891463Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777911.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490951/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-09-30T11:13:27.707641Z",
            "last_modified_time": "2025-11-04T09:13:25.134331Z",
            "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,
            "description": {
                "fi": "<p>Piilossa-näyttelyn ohessa järjestetään tapahtumia ja työpajoja – välillä jopa näyttely itsessään muuttuu!</p><p>Tältä sivulta näet listauksen, josta näet mitä kaikkea on tulossa:</p><p>to 9.10.2025<br><b>Perhosia piilossa</b><br>Uusi teos näyttelyssä - Kuvataideryhmä Suti ja roiske ja Tanssi- ja kuvataideryhmä Värisevät varpaat ovat laittaneet näyttelytilaan perhosia piiloon - löydätkö ne?</p><p>la 8.11.2025 klo 10.30 (TÄYNNÄ)<br><a href=\"https://www.annantalo.fi/fi/tapahtumat/event/CA006F219296A4BEA1A40A01B1ED9280/Tehd__n_taidejuttuja__Salatalo\"><b>Tehdään taidejuttuja: Salatalo</b></a><br>Tule suunnittelemaan oma salatalo!</p><p>la 8.11.2025 klo 13.30 (TÄYNNÄ)<br><a href=\"https://www.annantalo.fi/fi/tapahtumat/event/4244DFDACA59D8C5B4BB2BE554FA9C0C/Tehd__n_taidejuttuja__Salatalo\"><b>Tehdään taidejuttuja: Salatalo</b></a><br>Tule suunnittelemaan oma salatalo!</p><p>la 29.11.2025 klo 10.30<a href=\"https://www.annantalo.fi/fi/tapahtumat/event/C0DD27E565F4D584A9D0B0CDA85032F5/Tehd__n_taidejuttuja__Piiloleikki__ry_v_rien_mets_ss_\"><br><b>Tehdään taidejuttuja: Piiloleikkiä ryövärien metsässä</b></a><br>Sukella Ronja Ryövärintyttären maailmaan teatterityöpajassa!</p><p>la 29.11.2025 klo 11.00 - 14.00<br><ahref=\"https://www.annantalo.fi/fi/tapahtumat/event/6BF3FEE689F1D83E9B8CD03F18241F0B/Annantalon_taidelauantai__Mullan_alla\"><b>Annantalon taidelauantai: Mullan alla</b></a><br>Minkälaisia asioita voisi piileksiä mullan alla marraskuussa? Juuria, onkaloita, myyriä vai matojen makuuhuone? Annantalon taidelauantain työpajassa pääset piirtämään ruskan sävyisillä kuivapastelliiduilla oman tulkintasi maanalaisesta maailmasta.</p><p>la 29.11.2025 klo 13.30<a href=\"https://www.annantalo.fi/fi/tapahtumat/event/77C9A59FEBC3F5E9427DF78760057F87/Tehd__n_taidejuttuja__Piiloleikki__ry_v_rien_mets_ss_\"><br><b>Tehdään taidejuttuja: Piiloleikkiä ryövärien metsässä</b></a><br>Sukella Ronja Ryövärintyttären maailmaan teatterityöpajassa!</p><p>to 15.1.2026<br><b>Piilopeli</b><br>Näyttelyssä avautuu omatoiminen pakopeli! - lisätietoa lähempänä tapahtumaa!</p><p>_</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><p>Piilossa -näyttelyn oppimateriaalin löydät  <a href=\"https://www.annantalo.fi/fi/n%C3%A4yttelyt-ja-esitykset#Piilossa-n%C3%A4yttelyn%20oppimateriaali\"><b>täältä</b></a></p>",
                "sv": "<p>Evenemang och verkstäder anordnas parallellt med utställningen I gömman – ibland ändras till och med själva utställningen!</p><p>På den här sidan kan du se en lista över allt som är på kommande:</p><p>3.10.2025 kl. 17–19<br>Öppningsceremoni<br>Presentation av verk, besök av robot B-Ö och någon som gömmer sig!</p><p>4.10.2025 kl. 10.30 och kl. 13.30<br>Konstrådgivningen: Mystiska svampar<br>Konstworkshop för 3–5-åringar som har med sig en egen vuxen – förhandsanmälan på Annegårdens webbplats</p><p>4.10.2025 kl. 11–14<br>Annegårdens konstlördag: Den hemliga lådan<br>Konstverkstad för hela familjen</p><p>11.10.2025 från kl. 13.00 till 15.30<br>Evenemanget Russinen ur bullen<br>Låt oss göra festkläder, välja de bästa och lämna våra gömställen!</p><p>5.1.2026<br>Kurragömma<br>I utställningen öppnar ett självständigt escaperoom!</p>",
                "en": "<p>Annantalo’s side programme for the Piilossa (Hidden) exhibition includes a variety of events and workshops – and, sometimes, even the exhibition itself changes!</p><p>On this page you can see a list of what's coming up:</p><p>3 October 2025 at 17.00–19.00<br>Opening ceremony<br>Introductions to the featured works, a visit by robot B-Ö and someone is hiding!</p><p>4 October 2025 at 10.30 and 13.30<br>Art clinic: Mysterious mushrooms<br>Art workshop for 3-to-5-year-olds accompanied by their adults – advance registration on Annantalo’s website.</p><p>4 October 2025 at 11.00–14.00<br>Annantalo Art Saturday: Secret box<br>Art workshop for the whole family</p><p>11 October 2025 at 13.00–15.30<br>Picking the best bits<br>Let's make party clothes, pick the best bits and come out of hiding!</p><p>5 January 2026<br>Escape room<br>Opening of the exhibition’s self-guided escape room!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C43CBD3DDD54E539EF347E3727BEA24C/Piilossa_tapahtuu_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/C43CBD3DDD54E539EF347E3727BEA24C/Piilossa_tapahtuu_",
                "en": "http://www.annantalo.fi/en/events/event/C43CBD3DDD54E539EF347E3727BEA24C/Piilossa_tapahtuu_"
            },
            "name": {
                "fi": "Piilossa tapahtuu!",
                "sv": "Piilossa tapahtuu!",
                "en": "Piilossa tapahtuu!"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Piilossa-näyttelyn ohessa järjestetään tapahtumia ja työpajoja – välillä jopa näyttely itsessään muuttuu!",
                "sv": "Evenemang och verkstäder anordnas parallellt med utställningen I gömman – ibland ändras till och med själva utställningen!",
                "en": "Annantalo’s side programme for the Piilossa (Hidden) exhibition includes a variety of events and workshops – and, sometimes, even the exhibition itself changes!"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67091/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agne4mxh4m",
            "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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxkvu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "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",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png",
                    "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:24.718616Z",
            "last_modified_time": "2025-11-04T09:07:24.718634Z",
            "date_published": null,
            "start_time": "2025-11-13T15: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": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": 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>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Tanssiteatteri Tsuumi: Your Solo in Me",
                "sv": "Dansteater Tsuumi: Your Solo in Me",
                "en": "Dance Theatre Tsuumi: Your Solo in Me"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "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."
            },
            "provider": {
                "fi": "Tsuumi",
                "sv": "Tsuumi",
                "en": "Tsuumi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxh4m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agne4mxjam",
            "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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxkvu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "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",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png",
                    "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:24.611701Z",
            "last_modified_time": "2025-11-04T09:07:24.611720Z",
            "date_published": null,
            "start_time": "2025-11-12T15:00:00Z",
            "end_time": "2025-11-12T15: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,
            "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>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Tanssiteatteri Tsuumi: Your Solo in Me",
                "sv": "Dansteater Tsuumi: Your Solo in Me",
                "en": "Dance Theatre Tsuumi: Your Solo in Me"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "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."
            },
            "provider": {
                "fi": "Tsuumi",
                "sv": "Tsuumi",
                "en": "Tsuumi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxjam/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agne4mxj2e",
            "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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxkvu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "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",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png",
                    "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:24.503179Z",
            "last_modified_time": "2025-11-04T09:07:24.503198Z",
            "date_published": null,
            "start_time": "2025-11-12T08:00:00Z",
            "end_time": "2025-11-12T08: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,
            "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>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Tanssiteatteri Tsuumi: Your Solo in Me",
                "sv": "Dansteater Tsuumi: Your Solo in Me",
                "en": "Dance Theatre Tsuumi: Your Solo in Me"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "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."
            },
            "provider": {
                "fi": "Tsuumi",
                "sv": "Tsuumi",
                "en": "Tsuumi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne4mxj2e/?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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Tanssiteatteri Tsuumi: Your Solo in Me",
                "sv": "Dansteater Tsuumi: Your Solo in Me",
                "en": "Dance Theatre Tsuumi: Your Solo in Me"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "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."
            },
            "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: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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778065.jpg",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "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"
            },
            "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"
            },
            "location_extra_info": 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?"
            },
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": ""
                    },
                    "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,
            "description": {
                "fi": "<p>kuvataan moderointia</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "Moderointi"
            },
            "location_extra_info": {
                "fi": ""
            },
            "short_description": {
                "fi": "testiä"
            },
            "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: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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779182.jpg",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "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"
            },
            "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"
            },
            "location_extra_info": 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."
            },
            "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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779181.jpg",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "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"
            },
            "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"
            },
            "location_extra_info": 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."
            },
            "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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779180.jpg",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "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"
            },
            "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"
            },
            "location_extra_info": 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."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67224/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agndu5eun4",
            "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:agggfz66by/?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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5evfy/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 150370,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-15T10:22:13.113892Z",
                    "last_modified_time": "2024-03-15T10:22:13.113919Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/caleb-george-pH88tHG-1yw-unsplash.jpg",
                    "cropping": "520,0,2603,2082",
                    "photographer_name": "",
                    "alt_text": "soittimia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-31T13:08:01.423193Z",
            "last_modified_time": "2025-11-03T14:03:16.108744Z",
            "date_published": null,
            "start_time": "2025-11-03T15:30:00Z",
            "end_time": "2025-11-03T16: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,
            "description": {
                "fi": "<p>Tule mukaan Ison Omenan kirjaston soittohuoneessa järjestettävään bändikurssiin! Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Pääset soittamaan rumpuja, bassoa, kitaraa ja pianoa. Tarkoituksena on harjoitella perusteet kaikista soittimista ja soittaa yhdessä nuorten toivomia kappaleita. Osallistuminen on maksutonta. Kurssille mahtuu kerralla 8 osallistujaa. Ei ennakkoilmoittautumista.</p><p>Kurssi järjestetään maanantaisin neljä kertaa</p><p><strong>3.11 klo 17.30-18.30</strong></p><p><strong>10.11 klo 17-18</strong></p><p><strong>17.11 klo 17-18</strong></p><p><strong>24.11 klo 17-18</strong></p><p><br></p><p>#musiikki #kitara #rummut #piano #bändi #kurssi</p><p>Kurssin vetäjänä toimii musiikkipedagogi Lauri Iljin</p><p>​lauri.iljin(at)espoo.fi</p>",
                "sv": "<p>Bandkurs på Iso Omena bibliotek! Under kursen kommer du att få spela och öva på bandinstrument. Kursen riktar sig till 12-20-åringar. Deltagandet är kostnadsfritt.</p><p><br></p><p>Kursen är fyra gånger på måndagar:</p><p><strong>3.11 kl 17.30-18.30</strong></p><p><strong>10.11 kl 17-18</strong></p><p><strong>17.11 kl 17-18</strong></p><p><strong>24.11 kl 17-18</strong></p>",
                "en": "<p>Band course for young people at the Iso Omena Library! During the course you will be able to play and practice band instruments. The course is aimed for 12-20 year olds. Participation is free of charge.</p><p>The course is four times on Mondays:</p><p><strong>3.11 at 17.30-18.30</strong></p><p><strong>10.11 at 17-18</strong></p><p><strong>17.11 at 17-18</strong></p><p><strong>24.11 at 17-18</strong></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Bändisoittimia nuorille",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "location_extra_info": {
                "fi": "soittohuone",
                "sv": "musicrum",
                "en": "music room"
            },
            "short_description": {
                "fi": "Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Kurssi on suunnattu nuorille. Osallistuminen on maksutonta.",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5eun4/?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": [],
                    "description": null,
                    "info_url": 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",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780046.jpg",
                    "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,
            "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>"
            },
            "provider_contact_info": null,
            "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_"
            },
            "name": {
                "fi": "Annamari Eskola: Kierto – ikebanataidetta",
                "sv": "Annamari Eskola: Kierto – ikebanataidetta",
                "en": "Annamari Eskola: Kierto – ikebanataidetta"
            },
            "location_extra_info": 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"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67234/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}