Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&page=74&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 6457,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=75&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=73&weekday=6%2C7"
    },
    "data": [
        {
            "id": "espoo_le:agnbkgzdxm",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-24T06:25:13.759396Z",
            "last_modified_time": "2025-10-24T10:29:46.909569Z",
            "date_published": null,
            "start_time": "2025-11-02T10:00:00Z",
            "end_time": "2025-11-02T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan talouskeskustelua Salonkiin sunnuntaina 2.11. klo 12:00 alkaen."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Espoon Vasemmiston järjestämä suuri talouskeskustelu, jossa on mukana europarlamentaarikko Jussi Saramo ja Valtiotieteiden tohtori Lauri Holappa.</p><p>Tervetuloa kuuntelemaan talouskeskutelua Salonkiin sunnuntaina 2.11. klo 12:00 alkaen.</p>"
            },
            "name": {
                "fi": "Espoon Vasemmisto: Suuri talouskeskustelu Jussi Saramo ja Lauri Holappa"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": {
                "fi": "Espoon Vasemmisto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnbkgzdxm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67096",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "sv": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "en": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/"
                    },
                    "description": null,
                    "price": {
                        "fi": "26,90€/22.80€",
                        "sv": "26,90€/22.80€",
                        "en": "26,90€/22.80€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490955,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T11:13:36.475234Z",
                    "last_modified_time": "2025-09-30T11:13:36.475245Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768274.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490955/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T11:13:36.373744Z",
            "last_modified_time": "2025-10-24T09:13:17.342719Z",
            "date_published": null,
            "start_time": "2025-10-25T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).",
                "sv": "Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).",
                "en": "The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008)."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/354B960BC03B5970A4F08BD4A1539E2B/Teatteri_IHME_Ruokahissi",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/354B960BC03B5970A4F08BD4A1539E2B/Teatteri_IHME_Ruokahissi",
                "en": "http://www.vuotalo.fi/en/events/event/354B960BC03B5970A4F08BD4A1539E2B/Teatteri_IHME_Ruokahissi"
            },
            "description": {
                "fi": "<p>Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).</p><p>Esitys tuo meidät raakaan maailmaan kahden palkkamurhaajan (Ben ja Gus) odotellessa keikkaa kellarihuoneessa. Tunteet kuohuvat, jännitys ja hermostuneisuus on kuin sumuna huoneessa. Ruokahissi tuo viestin vai tuoko?</p><p>Esitystila on esteetön.<br> <br>Esitys ei sovi aivan pienemmille (K12)<br>Kesto: 1 tunti 10 minuuttia, ei väliaikaa</p><p>Esitys suomeksi.</p>",
                "sv": "<p>Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).</p><p>Föreställningen tar oss in i den brutala värld där två torpeder (Ben och Gus) väntar på ett jobb i ett källarrum. Känslorna svallar, spänningar och nervositet ligger som en dimma i rummet. För hissen med sig ett meddelande eller inte?</p><p>Föreställningslokalen är tillgänglig.<br>Föreställningen är inte riktigt lämplig för yngre barn (F 12)<br>Längd: 1h10m, ingen paus</p><p>Föreställningen är på finska.</p>",
                "en": "<p>The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008).</p><p>The play brings us into the brutal world of two hitmen (Ben and Gus) waiting for an assignment in a basement room. Emotions are running high, with tension and nervousness filling the room like a dense fog. The dumb waiter brings a message, or does it?</p><p>The venue is accessible.<br>The performance is not suitable for younger children (age limit 12).<br>Duration: 1 h 10 min, without intermission</p><p>The play is performed in Finnish.</p>"
            },
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67096/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67095",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "sv": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "en": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/"
                    },
                    "description": null,
                    "price": {
                        "fi": "26,90€/22.80€",
                        "sv": "26,90€/22.80€",
                        "en": "26,90€/22.80€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490954,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T11:13:36.070398Z",
                    "last_modified_time": "2025-09-30T11:13:36.070409Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768273.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490954/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T11:13:35.964901Z",
            "last_modified_time": "2025-10-24T09:13:17.072447Z",
            "date_published": null,
            "start_time": "2025-10-25T12:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).",
                "sv": "Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).",
                "en": "The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008)."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EE87FE8F42ECADBA747EC9C49A32C91C/Teatteri_IHME_Ruokahissi",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/EE87FE8F42ECADBA747EC9C49A32C91C/Teatteri_IHME_Ruokahissi",
                "en": "http://www.vuotalo.fi/en/events/event/EE87FE8F42ECADBA747EC9C49A32C91C/_Teatteri_IHME_Ruokahissi"
            },
            "description": {
                "fi": "<p>Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).</p><p>Esitys tuo meidät raakaan maailmaan kahden palkkamurhaajan (Ben ja Gus) odotellessa keikkaa kellarihuoneessa. Tunteet kuohuvat, jännitys ja hermostuneisuus on kuin sumuna huoneessa. Ruokahissi tuo viestin vai tuoko?</p><p>Esitystila on esteetön.<br> <br>Esitys ei sovi aivan pienemmille (K12)<br>Kesto: 1 tunti 10 minuuttia, ei väliaikaa.</p><p>Esitys suomeksi.</p>",
                "sv": "<p>Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).</p><p>Föreställningen tar oss in i den brutala värld där två torpeder (Ben och Gus) väntar på ett jobb i ett källarrum. Känslorna svallar, spänningar och nervositet ligger som en dimma i rummet. För hissen med sig ett meddelande eller inte?</p><p>Föreställningslokalen är tillgänglig.<br>Föreställningen är inte riktigt lämplig för yngre barn (F 12)<br>Längd: 1h10m, ingen paus</p><p>Föreställningen är på finska.</p>",
                "en": "<p>The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008).</p><p>The play brings us into the brutal world of two hitmen (Ben and Gus) waiting for an assignment in a basement room. Emotions are running high, with tension and nervousness filling the room like a dense fog. The dumb waiter brings a message, or does it?</p><p>The venue is accessible.<br>The performance is not suitable for younger children (age limit 12).<br>Duration: 1 h 10 min, without intermission</p><p>The play is performed in Finnish.</p>"
            },
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67095/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67094",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "sv": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/",
                        "en": "https://www.lippu.fi/artist/teatteri-yhdistys-ihme/teatteri-ihme-ruokahissi-3986488/"
                    },
                    "description": null,
                    "price": {
                        "fi": "26,90€/22.80€",
                        "sv": "26,90€/22.80€",
                        "en": "26,90€/22.80€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490953,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T11:13:35.067251Z",
                    "last_modified_time": "2025-09-30T11:13:35.067263Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768258.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490953/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T11:13:34.965729Z",
            "last_modified_time": "2025-10-24T09:13:16.126108Z",
            "date_published": null,
            "start_time": "2025-10-24T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).",
                "sv": "Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).",
                "en": "The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008)."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BCC167649DFDC32B8F8147C8756A13FA/Teatteri_IHME_Ruokahissi",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BCC167649DFDC32B8F8147C8756A13FA/Teatteri_IHME_Ruokahissi",
                "en": "http://www.vuotalo.fi/en/events/event/BCC167649DFDC32B8F8147C8756A13FA/Teatteri_IHME_Ruokahissi"
            },
            "description": {
                "fi": "<p>Tiivistunnelmainen klassikko ’’Ruokahissi’’ on Nobel-palkitun Harold Pinterin (1930–2008) mestariteos (The Dumb Waiter 1957).</p><p>Esitys tuo meidät raakaan maailmaan kahden palkkamurhaajan (Ben ja Gus) odotellessa keikkaa kellarihuoneessa. Tunteet kuohuvat, jännitys ja hermostuneisuus on kuin sumuna huoneessa. Ruokahissi tuo viestin vai tuoko?</p><p>Esitystila on esteetön.<br> <br>Esitys ei sovi aivan pienemmille (K12)<br>Kesto: 1 tunti 10 minuuttia, ei väliaikaa</p><p>Esitys suomeksi.</p>",
                "sv": "<p>Den stämningsfulla klassikern \"The Dumb Waiter\" är ett mästerverk av den Nobelprisbelönade filmskaparen Harold Pinter (1930–2008) (The Dumb Waiter 1957).</p><p>Föreställningen tar oss in i den brutala värld där två torpeder (Ben och Gus) väntar på ett jobb i ett källarrum. Känslorna svallar, spänningar och nervositet ligger som en dimma i rummet. För hissen med sig ett meddelande eller inte?</p><p>Föreställningslokalen är tillgänglig.<br>Föreställningen är inte riktigt lämplig för yngre barn (F 12)<br>Längd: 1h10m, ingen paus</p><p>Föreställningen är på finska.</p>",
                "en": "<p>The Dumb Waiter (1957) is a masterpiece of suspense by Nobel Prize-winning playwright Harold Pinter (1930–2008).</p><p>The play brings us into the brutal world of two hitmen (Ben and Gus) waiting for an assignment in a basement room. Emotions are running high, with tension and nervousness filling the room like a dense fog. The dumb waiter brings a message, or does it?</p><p>The venue is accessible.<br>The performance is not suitable for younger children (age limit 12).<br>Duration: 1 h 10 min, without intermission</p><p>The play is performed in Finnish.</p>"
            },
            "name": {
                "fi": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "sv": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa",
                "en": "Teatteri IHME: Ruokahissi – Vuotalon Pikkusalissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67094/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnaygw5sa",
            "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:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-22T12:17:09.152595Z",
            "last_modified_time": "2025-10-23T13:52:21.488311Z",
            "date_published": "2025-10-22T12:09:00Z",
            "start_time": "2025-10-27T06:00:00Z",
            "end_time": "2025-11-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Taidenäyttely ",
                "sv": "Konstutställning",
                "en": "Art exhibition"
            },
            "info_url": null,
            "description": {
                "fi": "<p>\"Maalaan tunteita, joita sanat eivät tavoita. Taide on minulle hetken pysäyttämistä – muiston tai tunteen vangitsemista värin, muodon ja tekstuurin kautta.</p><p>Luonto on inspiraationi: sen voima, lempeys ja jatkuva muutos näkyvät abstrakteissa ja puoliksi abstrakteissa maisemissa sekä kukka-aiheissa, jotka kutsuvat hiljentymään ja pohtimaan.</p><p>Työskentelen intuitiivisesti, annan maalausten johdattaa ja rakentaa kerroksittain akryyliväreillä syvyyttä, kontrasteja ja vivahteita. Teokset saavat lopuksi nimen, joka tiivistää niiden tunnesisällön.</p><p>Toivon, että työni kutsuu katsojan pysähtymään, tuntemaan ja löytämään abstraktista jotakin henkilökohtaista – muiston, tunnelman tai yhteyden, joka jää elämään.\"</p><p><strong>Irina Rantalaiho</strong></p>",
                "sv": "<p>Irina Rantalaihos konstutställning.</p>",
                "en": "<p>Irina Rantalaiho's art exhibition.</p>"
            },
            "name": {
                "fi": "Irina Rantalaiho: Valon ja värien sävelissä",
                "sv": "Irina Rantalaiho: I ljusets och färgernas melodier",
                "en": "Irina Rantalaiho: Melodies of light and colors"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Valatori-seinä",
                "sv": "Valatori-väggen",
                "en": "Valatori wall"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygw5sa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnbbgigmu",
            "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:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T10:04:33.315377Z",
            "last_modified_time": "2025-10-23T10:04:33.315395Z",
            "date_published": "2025-10-23T10:01:00Z",
            "start_time": "2025-11-10T06:00:00Z",
            "end_time": "2025-11-30T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Valokuvanäyttely",
                "sv": "Fotoutställning",
                "en": "Photo exhibition"
            },
            "info_url": {
                "en": "https://victoriaolonen.com/"
            },
            "description": {
                "fi": "<p>Valokuvanäyttely <em>Hiljainen yhteys – valon ja varjon muotokuvia</em> tutkii ihmisen katsetta, elettä ja ihon pintaa. Kuvat paljastavat haurauden ja voiman vuoropuhelun – sen, mikä jää sanojen ulkopuolelle. </p><p><br></p><p><strong>Victoria Olonen</strong>: </p><p><a href=\"https://victoriaolonen.com/\">victoriaolonen.com</a></p><p><a href=\"https://www.instagram.com/vickan.o_photography/\">@vickan.o_photography</a></p>",
                "sv": "<p>Fotoutställningen <em>Tyst anslutning – porträtt av ljus och skugga</em> utforskar människans blick, gester och hudyta. Bilderna avslöjar en dialog mellan bräcklighet och styrka – något som inte kan uttryckas i ord. </p><p><br></p><p><strong>Victoria Olonen</strong>: </p><p><a href=\"https://victoriaolonen.com/\">victoriaolonen.com</a></p><p><a href=\"https://www.instagram.com/vickan.o_photography/\">@vickan.o_photography</a></p>",
                "en": "<p>The photo exhibition <em>Silent Connection – Portraits of Light and Shadow</em> explores the human gaze, gestures, and skin surface. The images reveal a dialogue between fragility and strength – that which cannot be expressed in words. </p><p><br></p><p><strong>Victoria Olonen</strong>:&nbsp;</p><p><a href=\"https://victoriaolonen.com/\">victoriaolonen.com</a></p><p><a href=\"https://www.instagram.com/vickan.o_photography/\">@vickan.o_photography</a></p>"
            },
            "name": {
                "fi": "Victoria Olonen: Hiljainen yhteys – valon ja varjon muotokuvia",
                "sv": "Victoria Olonen: Tyst anslutning – Porträtt av ljus och skugga",
                "en": "Victoria Olonen: Silent Connection – Portraits of Light and Shadow"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Galleria Betoni",
                "sv": "Galleri Betoni",
                "en": "Gallery Betoni"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnbbgigmu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmzux3req",
            "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:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T10:17:40.759268Z",
            "last_modified_time": "2025-10-23T09:41:00.630221Z",
            "date_published": null,
            "start_time": "2025-10-26T11:00:00Z",
            "end_time": "2025-10-26T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa satumaiseen matikkaseikkailuun Matikkasurinan kanssa! "
            },
            "info_url": {
                "fi": "https://maol.fi/"
            },
            "description": {
                "fi": "Satumaista matikkaa<p><br></p><p><strong>Missä: </strong>Entressen kirjaston lasten osastolla 26.10.2025 klo 13 – 16</p><p><strong>Kenelle: </strong>3 – 6-vuotiaille lapsille. Pienille oma puuhapiste. Toimintaan osallistutaan yhdessä oman aikuisen kanssa.</p><p><strong>Kielet: </strong>Osallistuminen ei vaadi kielitaitoa</p><p><strong>Hinta:&nbsp;</strong>Maksuton tapahtuma, ei ennakkoilmoittautumista</p><p><br></p><p>Tervetuloa satumaiseen matikkaseikkailuun Matikkasurinan kanssa! Perheen puuhapisteillä pääsette ottamaan ensiaskelia matematiikkaan satujen, liikunnan ja leikin kautta. Missä piilee matematiikka, kun loikkaat sadusta toiseen heinäsirkan kanssa tai pelastat satuhahmot? Tutustumme satujen maailmaan matikkatuntosarvet tarkkoina.</p><p><strong>Lasten satumatikkatuokiot klo 13.30, 14.30 ja 15.30.</strong></p><p>Tule mukaan ihmettelemään ja oivaltamaan!</p><p><br></p><p>26.10.2025 Perhetapahtumaa seuraa myös matematiikkateemainen kerho tiistaisin 4.11. alkaen Entressen kirjastolla. </p><p><a href=\"https://www.lyyti.fi/reg/Matikkakerhot_perheille_6216 \">Ilmoittautuminen ja lisätietoa </a></p><p>Kerho kestää viisi viikkoa ja alkaa tiistaina 4.11.2025 klo 17.30.</p><p>Kerhokerrat:</p><p>4.11. klo 17.30-18.15</p><p>11.11. klo 17.30-18.15</p><p>18.11. klo 17.30-18.15</p><p>25.11. klo 17.30-18.15</p><p>2.12. klo 17.30-18.15</p><p><br></p><p><br></p><p>Ohjaajina toimivat MAOL-Espoon opettajat.</p>"
            },
            "name": {
                "fi": "Satumaista matikkaa"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lastenosasto"
            },
            "provider": {
                "fi": "Ohjaajina toimivat MAOL-Espoon opettajat."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmzux3req/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66778",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/",
                        "sv": "https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/",
                        "en": "https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 17€",
                        "sv": "22 € / 17€",
                        "en": "22 € / 17€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1271734,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T12:14:25.464254Z",
                    "last_modified_time": "2025-07-16T12:14:25.464269Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775284.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1271734/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T12:14:25.295304Z",
            "last_modified_time": "2025-10-23T09:13:49.056256Z",
            "date_published": null,
            "start_time": "2025-10-31T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule kuuntelemaan perinteistä ja modernia makedonialaista musiikkia kiehtovalla tavalla yhdistävää Dobrila & Dorian Duoa!",
                "sv": "Kom och lyssna på Dobrila & Dorian Duo, en fascinerande kombination av traditionell och modern makedonsk musik!",
                "en": "Come and listen to Dobrila & Dorian Duo, who play a fascinating combination of traditional and modern Macedonian music!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/27199497D81866ECD2B00B14B982D89F/Sounds_of_Europe_Dobrila_Dorian_Duo_MK_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/27199497D81866ECD2B00B14B982D89F/Sounds_of_Europe_Dobrila_Dorian_Duo_MK_",
                "en": "http://www.vuotalo.fi/en/events/event/27199497D81866ECD2B00B14B982D89F/Sounds_of_Europe_Dobrila_Dorian_Duo_MK_"
            },
            "description": {
                "fi": "<p>Tule kuuntelemaan perinteistä ja modernia makedonialaista musiikkia kiehtovalla tavalla yhdistävää Dobrila & Dorian Duoa!</p><p><b>Lipputarjous</b><br>Nappaa kaveri mukaan konserttiin – kaksi lippua yhden hinnalla! <u><a href=\"https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/\">Tartu tarjoukseen lippu.fi:ssä.</a></u></p><p>Dobrila Grašeska ja Dorian Jovanović ovat pitkäaikaisia ystäviä ja yhteistyökumppaneita. He aloittivat yhteisen taiteellisen matkansa vuonna 2006 osana Čalgija Sound System -kvintettiä, joka on omistautunut perinteisen makedonialaiseen čalgija-musiikin säilyttämiselle. Vuonna 2020 he käynnistivät uuden projektin, Dobrila & Dorian Duon, joka sukeltaa makedonialaiseen perinteiseen musiikkiin radikaalilla käänteellä: kansanlauluja rekonstruoidaan modernin improvisaation, kokeilun ja hienovaraisten elektronisten tekstuurien avulla.<br> <br>Heidän debyyttialbuminsa Apokrif (SJF Records, 2021) on orgaaninen fuusio perinteestä ja innovaatiosta, hiljaisuudesta ja äänestä. Mestariteokseksi ylistetty albumi sisältää Dobrilan laulun, joka tulkitsee kansanmelodioita uudelleen – leikitellen tauoilla, kuiskauksilla ja melun purskeilla – samalla kun Dorian kerrostaa rytmejä looppien avulla ja kutoo improvisaatioita oud-luutullaan.<br> <br>Toinen albumi, Dobrila & Dorian Duo 2: Pile Šareno (SJF Records, 2023), jatkaa siitä mihin edellinen albumi päättyi. Nyt he syventävät \"minimalistista\" lähestymistapaansa laululooppeilla ja -prosessoreilla, luoden rohkeita uusia sävyjä ja äänimaisemia. Tuloksena on perinteistä musiikkia, joka on ladattu provosoivalla, tässä hetkessä hengittävällä energialla.</p><p><b>Global Music Ensemble </b><br>Sibelius-Akatemian Global Musicin koulutusohjelma tuo lavalle Global Music Ensemblen. Yhtye juhlistaa musiikillisen ja kulttuurisen monimuotoisuuden rikkautta ja esittää esiintyjiä eri puolilta maailmaa.<br> <br>Kesto: n. 120 min. sis. väliaika. <br>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p>",
                "sv": "<p>Kom och lyssna på Dobrila & Dorian Duo, en fascinerande kombination av traditionell och modern makedonsk musik!</p><p><b>Biljettkampanj</b><br>Ta med en vän på konserten – två biljetter till priset av en! <br><u><a href=\"https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/\">Utnyttja erbjudandet på lippu.fi.</a></u></p><p>Dobrila Grašeska och Dorian Jovanović är vänner och samarbetspartners sedan lång tid tillbaka. De inledde sin konstnärliga resa tillsammans 2006 som en del av kvintetten Čalgija Sound System, en grupp som ägnar sig åt att bevara traditionell makedonsk čalgija-musik. År 2020 lanserade de ett nytt projekt, Dobrila & Dorian Duo, som dyker ner i makedonsk traditionell musik med en radikal twist: folksångerna rekonstrueras genom modern improvisation, experiment och subtila elektroniska texturer.<br> <br>Deras debutalbum Apokrif (SJF Records, 2021) är en organisk fusion av tradition och innovation, tystnad och ljud. Albumet har hyllats som ett mästerverk och innehåller Dobrilas sång som omtolkar folkmelodier – lekfullt med pauser, viskningar och brus – medan Dorian lägger rytmer med loopar och väver improvisationer med sin oud-luta.<br> <br>Det andra albumet, Dobrila & Dorian Duo 2: Pile Šareno (SJF Records, 2023) tar vid där det förra albumet slutade. Nu fördjupar de sitt \"minimalistiska\" arbetssätt med sångslingor och -processorer och skapar nya djärva toner och ljudlandskap. Resultatet är traditionell musik laddad med provokativ energi som andas i stunden.</p><p><b>Global Music Ensemble</b><br>Inom Sibelius Akademins Global Music-utbildningsprogram intar Global Music Ensemble scenen. Ensemblen hyllar rikedomen i den musikaliska och kulturella mångfalden och förevisar artister från hela världen.</p><p>Längd: ca 120 min. inkl. paus. <br>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p>",
                "en": "<p>Come and listen to Dobrila & Dorian Duo, who play a fascinating combination of traditional and modern Macedonian music!</p><p><b>Ticket Offer</b><br>Bring a friend to the concert – two tickets for the price of one! <u><a href=\"https://www.lippu.fi/event/etnosoi-sounds-of-europe-dobrila-dorian-duo-mk-vuotalo-20396465/\">Get your tickets at lippu.fi.</a></u></p><p>Dobrila Grašeska and Dorian Jovanović are longtime friends and musical collaborators who began their artistic journey in 2006 as part of the quintet Čalgija Sound System, dedicated to preserving traditional Macedonian čalgija music. In 2020, they launched a new project, Dobrila & Dorian Duo, revisiting Macedonian traditional music with a radical twist: reconstructing folk songs through modern improvisation, experimentation, and subtle electronic textures.</p><p>Their debut album, Apokrif (SJF Records, 2021), is an organic fusion of tradition and innovation, silence and sound. Hailed as a masterpiece upon release, it features Dobrila’s vocals reimagining folk melodies—playing with pauses, whispers, and bursts of noise—while Dorian layers rhythms using loops, weaving improvisations on the oud.</p><p>The follow-up, Dobrila & Dorian Duo 2: Pile Šareno (SJF Records, 2023), pushes further. Here, they deepen their \"minimalist\" approach with vocal loops and vocal processors, crafting bold new tones and sonic landscapes. The result is traditional music recharged with provocative, contemporary energy.</p><p><b>Global Music Ensemble</b><br>The Sibelius Academy’s Global Music education programme brings the Global Music Ensemble to the stage. The ensemble celebrates the richness of musical and cultural diversity and features performers from around the world.</p><p>Duration: apx. 120 min. with intermission. <br>Club night, A-rights, refreshments provided by Café Pokkari, the doors will open at 17.30.</p>"
            },
            "name": {
                "fi": "Sounds of Europe: Dobrila & Dorian Duo (MK) – Etnosoi! / Vuotalo World Club",
                "sv": "Sounds of Europe: Dobrila & Dorian Duo (MK) – Etnosoi! / Vuotalo World Club",
                "en": "Sounds of Europe: Dobrila & Dorian Duo (MK) – Etnosoi! / Vuotalo World Club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66778/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnaygw22q",
            "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:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygya34/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzgdu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzgry/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzg64/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzhnq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzh4a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzije/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygziwq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzjea/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzkpi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzk5y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzlmq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzlzq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzmhq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzmum/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygznbu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1491146,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-03-17T09:32:13.128144Z",
                    "last_modified_time": "2025-12-01T12:24:38.014666Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a8d628c5-6b7b-4408-94ad-e4b2c753345e.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "-",
                    "alt_text": "Kuvassa sanomalehti ja käsi joka pitelee täyttä kahvikuppia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491146/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-02T08:04:27.297442Z",
            "last_modified_time": "2025-10-22T12:53:37.626559Z",
            "date_published": null,
            "start_time": "2025-10-23T07:00:00Z",
            "end_time": "2025-12-18T10: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,
            "short_description": {
                "fi": "Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi.",
                "sv": "Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska.",
                "en": "We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish."
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/",
                "sv": "https://helmet.finna.fi/?lng=sv",
                "en": "https://helmet.finna.fi/?lng=en-gb"
            },
            "description": {
                "fi": "<p>Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi. Opimme näin yhdessä suomea, ja tutustumme Suomen tapoihin ja historiaan.</p><p>Selkouutiskahvit järjestetään torstaisin Entressen kirjaston Kibessä klo 10.00-12.00.</p><p>Selkouutiskahveja järjestää kirjasto</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska. På så sätt lär vi oss finska tillsammans och bekantar oss med finska seder och historia.</p><p>Kaffepauserna äger rum på torsdagar på Entresse bibliotek i Kibe från 10.00-12.00.</p><p>&nbsp;</p><p>#HelloEspoo</p>",
                "en": "<p>We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish. This is how we learn together Finnish, Finnish customs and history.</p><p>Plain news cafe are held on thursdays 10.00-12.00. in Kibe, Entresse Library.</p><p>&nbsp;</p><p>&nbsp;</p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Selkouutiskahvit",
                "sv": "Kaffe med klara nyheter",
                "en": "Plain-language news café"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "provider": {
                "fi": "Kirjasto",
                "sv": "Biblioteket",
                "en": "Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygw22q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnaygw454",
            "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: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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygw3qu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygw4ae/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygw4nu/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-22T12:41:16.941034Z",
            "last_modified_time": "2025-10-22T12:41:16.941052Z",
            "date_published": null,
            "start_time": "2025-10-27T14:00:00Z",
            "end_time": "2025-11-24T16: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,
            "short_description": {
                "fi": "Kolme inspiroivaa askartelupajaa syksyllä monikulttuurisille perheille",
                "sv": "Tre kreativa höstworkshops för flerkulturella familjer",
                "en": "Three creative fall workshops for multicultural families"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Familia ry on vuonna 1988 perustettu valtakunnallinen kahden kulttuurin perheiden asiantuntijajärjestö&nbsp;ja edunvalvoja. Tuemme kahden kulttuurin perheiden hyvinvointia tarjoamalla vapaaehtois- ja vertaistoimintaa, tietoa, tukea ja neuvontaa. Tavoitteenamme on edistää kahden kulttuurin perheiden hyvinvointia ja perheiden huomioimista yhteiskunnassa, sekä kehittää lainsäädäntöä ja palvelujärjestelmää tukemaan kaksikulttuurisia sekä kaksi- ja monikielisiä perheitä.</p><p>Tervetuloa askartelemaan kanssamme!</p>",
                "sv": "<p>Familia rf är en nationell expertorganisation och intressebevakare för familjer med två kulturer, grundad 1988. Vi stödjer välbefinnandet hos familjer med två kulturer genom att erbjuda volontär- och kamratverksamhet, information, stöd och rådgivning. Vårt mål är att främja välbefinnandet hos tvåkulturella familjer och uppmärksamheten på familjer i samhället samt att utveckla lagstiftning och tjänstesystem som stödjer tvåkulturella samt två- och flerspråkiga familjer.</p><p>Välkommen att pyssla med oss!</p>",
                "en": "<p>Founded in 1988, Familia Association is a national expert organization and advocate for families with two cultures. We support the well-being of two-culture families by offering volunteer and peer activities, information, guidance, and support. Our goal is to promote the well-being of two-culture families, increase recognition of families in society, and develop legislation and service systems to support both two-culture and bilingual/multilingual families.</p><p><br></p><p>Welcome to craft with us!</p>"
            },
            "name": {
                "fi": "Familia ry:n Taide pop-up",
                "sv": "Familia rf:s Konst pop-up ",
                "en": " Familia Association Art Pop-up"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "provider": {
                "fi": "Familia ry",
                "sv": "Familia ry",
                "en": "Familia ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygw454/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66657",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490804,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-16T12:13:10.700004Z",
                    "last_modified_time": "2025-09-16T12:13:10.700018Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775514.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490804/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-16T12:13:10.608873Z",
            "last_modified_time": "2025-10-22T11:13:51.555340Z",
            "date_published": null,
            "start_time": "2025-10-30",
            "end_time": "2025-11-16",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Being Silly till the Day I Die on Stoan senioreiden sirkusryhmiä käsittelevä valokuvahanke.",
                "sv": "Being Silly till the Day I Die är ett fotoprojekt om de äldre cirkusgrupperna på Stoa, som har deltagit i avgiftsfria lektioner i en mängd olika cirkuskonster de senaste sex åren.",
                "en": "Being Silly till the Day I Die is a photography project about the elderly circus groups at Stoa, who have been participating in free lessons with a variety of Circus arts for the last six years."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7E43D86B16B09085FDB22AC5B5B09310/Xavier_Locquet_Enrique_Salas_Being_Silly_till_the_Day_I_Die",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7E43D86B16B09085FDB22AC5B5B09310/Xavier_Locquet_Enrique_Salas_Being_Silly_till_the_Day_I_Die",
                "en": "http://www.stoa.fi/en/events/event/7E43D86B16B09085FDB22AC5B5B09310/Xavier_Locquet_Enrique_Salas_Being_Silly_till_the_Day_I_Die"
            },
            "description": {
                "fi": "<p>Being Silly till the Day I Die on Stoan senioreiden sirkusryhmiä käsittelevä valokuvahanke.</p><p>Seniorit ovat osallistuneet ilmaisille erilaisia sirkustaitoja opettaville tunneille kuuden vuoden ajan.</p><p>Hanke koostuu vanhempien sukupolvien muotokuvista – vanhempien, isovanhempien, ystävien ja mentoreiden kuvista – ja kunnioittaa heidän tarinoitaan ja osallistumistaan Stoan sirkusryhmiin.</p><p>Hanke huipentuu näyttelyyn, jota varten Xavier \"Bambu\" Locquet on kuvannut kaikki osallistuneet seniorit. Locquet on paitsi kokenut valokuvaaja, myös muun muassa sirkustaiteilija, tanssija ja näyttelijä.</p><p>Hankkeen ohjaaja on Enrique \"Kike\" Salas, joka on johtanut Stoan sirkushankkeita jo yhdeksän vuoden ajan.</p>",
                "sv": "<p>Being Silly till the Day I Die är ett fotoprojekt om de äldre cirkusgrupperna på Stoa, som har deltagit i avgiftsfria lektioner i en mängd olika cirkuskonster de senaste sex åren.</p><p>Projektet består av porträtt av våra äldre – våra föräldrar, mor- och farföräldrar, vänner och mentorer – för att hedra deras historia och deltagande i Stoas circusgrupper.</p><p>Projektet kommer att kulminera i en utställning med alla våra äldre, fotograferade av den begåvade Xavier Locquet alias ”Bambu”, som är en erfaren fotograf och också bland annat cirkusartist, dansare och skådespelare.</p><p>Projektet leds av Enrique Salas, även känd som ”Kike”, som har lett cirkusprojekten på Stoa i Helsingfors de senaste nio åren.</p>",
                "en": "<p>Being Silly till the Day I Die is a photography project about the elderly circus groups at Stoa, who have been participating in free lessons with a variety of Circus arts for the last six years.</p><p>The project consists of portraits of our elders—our parents, grandparents, friends, and mentors—to honour their histories and participation in the Stoa Circus groups.</p><p>The project will culminate in an exhibition featuring all our elders photographed by the talented Xavier Locquet aka “Bambu”, an experienced Photographer but also a circus artist, dancer and actor among others.</p><p>The project is directed by Enrique Salas aka “Kike”, who has been leading the Circus projects at Stoa Helsinki for the last 9 years.</p>"
            },
            "name": {
                "fi": "Xavier Locquet & Enrique Salas: Being Silly till the Day I Die",
                "sv": "Xavier Locquet & Enrique Salas: Being Silly till the Day I Die",
                "en": "Xavier Locquet & Enrique Salas: Being Silly till the Day I Die"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66657/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnacxup4m",
            "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/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: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/helmet:11733/?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:p1947/?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:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnacxuo3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnacxuppy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1491128,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-20T10:29:22.948599Z",
                    "last_modified_time": "2025-10-20T10:29:22.948620Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/07e96260-d15c-43bb-9ddb-c545d3281004.png",
                    "name": "",
                    "cropping": "84,0,403,320",
                    "photographer_name": "",
                    "alt_text": "Eri ikäisiä ihmisiä istumassa pöydän ympärillä keskustelemassa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491128/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-20T10:45:14.960179Z",
            "last_modified_time": "2025-10-22T10:15:57.222244Z",
            "date_published": null,
            "start_time": "2025-11-12T13:00:00Z",
            "end_time": "2025-12-10T15: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,
            "short_description": {
                "fi": "Connectoria tuo ihmisiä yhteen yli kulttuurien ja sukupolvien. Se on paikka, jossa isovanhemmat, vanhemmat ja lapset voivat jakaa viisautta, naurua ja ideoita.",
                "en": "Connectoria is about bringing people together across cultures and generations. A place where grandparents, parents, and children can share wisdom, laughter. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Connectoria tuo ihmisiä yhteen yli kulttuurien ja sukupolvien. Se on paikka, jossa isovanhemmat, vanhemmat ja lapset voivat jakaa viisautta, naurua ja ideoita.</p><p>Tavoitteenamme on luoda lämminhenkinen piiri, jossa oppiminen ei koskaan lopu, ystävyyksiä syntyy ja tarinat jäävät elämään.</p><p>Tervetuloa ensimmäiseen työpajaamme marraskuussa.</p><p>Marraskuun teemana on Muistojen laatikko – tarinatuokio</p><p>Tuo mukanasi jokin sinulle merkityksellinen esine, kuten valokuva, kirje, kirja tai matkamuisto. Jaat tarinan muiden kanssa ja kirjoitat sen paperille. Keräämme tarinat yhteiseen \"muistojen laatikkoon\", joka toimii yhteisön hetkellisenä perinnekokoelmana.</p><p>Kirjasto säilyttää tarinat vuoden loppuun asti.</p><p>Tervetuloa jakamaan oma tarinasi!</p><p><br></p><p>Yhteistyössä:</p><p>Fortis &amp; Nobel, Think Africa Creative Corner, House of mimiri, Ciku Cakes ja INVERSUS</p><p>#HelloEspoo</p><p><br></p>",
                "en": "<p>Connectoria is about bringing people together across cultures and generations. A place where grandparents, parents, and children can share wisdom, laughter, and ideas.</p><p>Our goal is to create a cozy circle where learning never ends, friendships are built, and stories live forever.</p><p>Welcome to our first workshop in November!</p><p>November theme is&nbsp;Memory Box Storytelling Hour,</p><p>Bring&nbsp;one meaningful item, like&nbsp;photo, letter, book, or souvenir etc. You will share the story behind it with others and write it down on a piece of paper. We will collect the stories in a \"community memory box\"&nbsp;to serve as a local heritage collection for the library.</p><p>The library will keep the stories until the end of the year.</p><p>Welcome to share your story!</p><p><br></p><p>In collaboration with:</p><p>Fortis &amp; Nobel, Think Africa Creative Corner, House of mimiri, Ciku Cakes and INVERSUS</p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Connectoria - uusi toistuva yhteisöllinen tapahtuma",
                "en": "Connectoria - new socially engaged event"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Fortis & Nobel",
                "en": "Fortis & Nobel"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnacxup4m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm7eiyzui",
            "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: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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-17T12:15:43.415788Z",
            "last_modified_time": "2025-10-22T09:49:08.839865Z",
            "date_published": null,
            "start_time": "2025-10-25T08:30:00Z",
            "end_time": "2025-10-25T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ilmoittaudu mukaan Gold Water - yhteisötaidetyöpajaan!",
                "en": "Reserve your spot in the Gold Water- Community Art Workshop!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Liity ammattitaiteilija ja hyvinvointitaiteen opettaja Luiza Predan, ColorsNCode-studion ja Espoon kaupungin yhteistyössä järjestämään luovaan ja vuorovaikutteiseen yhteisötaidetyöpajaan.</p><p>Taidetyöpajaan on ennakkoilmoittautuminen. Ilmoittauduthan mukaan <a href=\"https://creativeharmony.art/events/gold-water-community-art-workshop-colorsncode-artmobs-espoo-finland\">täältä</a>.</p><p>Työpaja on englanniksi.</p>",
                "en": "<p>Join professional visual artist and art-for-wellbeing teacher Luiza Preda in collaboration with ColorsNCode studio and Espoo City for a creative and interactive community art workshop.</p><p>Designed for families, children, teenagers, and adults, this playful workshop invites participants to explore water, sustainability, and environmental awareness through hands-on crafts, interactive art and reflective activities. Discover how small actions can make a big impact, connect with your local community, and have fun while learning about water conservation, sustainable living, and creativity for wellbeing.</p><p>The Gold Water installation transforms the library space into a world of light, sound, and movement, inviting visitors to pause, notice, and reconnect with the rhythms of nature. The accompanying community workshop, guided by visual artist and certified art teacher Luiza Preda offers a gentle space for creative exploration, curiosity, and meaningful connection.</p><p>Through artful play and collective reflection, participants are encouraged to rediscover the quiet importance of water in our lives — not through worry, but through wonder. The experience reminds us that awareness can begin with something small: a thought, a conversation, or a creative gesture that ripples outward.</p><p>This project celebrates community, creativity, and hope, showing that art can be both a mirror and a source of renewal in times of change.</p><p>Reserve your spot <a href=\"https://creativeharmony.art/events/gold-water-community-art-workshop-colorsncode-artmobs-espoo-finland\">here</a>.</p>"
            },
            "name": {
                "fi": "Gold Water - yhteisötaidetyöpaja -PERUTTU",
                "en": "Gold Water - Community Art Workshop - CANCELLED"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kajuutta",
                "en": "Kajuutta"
            },
            "provider": {
                "fi": "ColorsNCode studio and Espoon kaupunki",
                "en": "ColorsNCode studio and Espoo City"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7eiyzui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnawb542q",
            "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:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490895,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-24T11:15:24.338597Z",
                    "last_modified_time": "2025-09-24T11:15:24.338612Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png",
                    "name": "",
                    "cropping": "250,0,746,496",
                    "photographer_name": "",
                    "alt_text": "Valkoinen, partasuinen mies valkoisessa harsohameessa ja mustassa hupparissa istuu värikästä seinää vasten.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490895/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-22T07:48:45.774094Z",
            "last_modified_time": "2025-10-22T07:48:45.774113Z",
            "date_published": null,
            "start_time": "2025-11-29T13:30:00Z",
            "end_time": "2025-11-29T14:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tanssiteatteri Tsuumin esitys tekee katsojasta koreografin kun tanssitaiteilija Patrik Riipinen herättää katsojien visiot eloon yleisön silmien edessä. ",
                "sv": "Dansteater Tsuumis föreställning gör publiken till koreograf när danskonstnären Patrik Riipinen väcker åskådarnas visioner till liv inför deras ögon.",
                "en": "Dance Theatre Tsuumi’s performance turns the audience into choreographers as dance artist Patrik Riipinen brings their visions to life before their eyes."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule katsomaan millaisia esityksiä syntyy kirjastossa kun päätösvalta teoksen vaatetuksesta, musiikista, teemasta ja tilan käytöstä annetaan tällä kertaa esityksen katsojille. Työpajamaisessa teoksessa pääset itse kokeilemaan koreografin työhön liittyviä valintoja ja ihailemaa omaa tai toisen katsojan luomaa tanssiteosta. Aiempaa kokemusta ei tarvita, uteliaisuus ja kokeilunhalu riittävät!</p><p>Voit tulla tekemään teoksen vaikka moneen kertaan, sillä Tsuumi on teoksen kanssa kiertueella Espoon kaupungin kirjastossa.</p><p><br></p><p>TAPIOLAN KIRJASTO</p><p>pe ilta 24.10. 18.30&nbsp;</p><p>ja la 25.10. klo 13 ja 15.30</p><p>&nbsp;</p><p>ISON OMENAN KIRJASTO</p><p>ke 29.10. klo 17</p><p>to&nbsp;30.10. klo 9.30-10.30 ja klo 12.30-13.30&nbsp;</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><br></p><p>TAPIOLA BIBLIOTEK</p><p>pe ilta 24.10. 18.30&nbsp;</p><p>ja la 25.10. klo 13 ja 15.30</p><p>&nbsp;</p><p>ISON OMENA BIBLIOTEK</p><p>ke 29.10. klo 17</p><p>to&nbsp;30.10. klo 9.30-10.30 ja klo 12.30-13.30&nbsp;</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><br></p><p>TAPIOLA LIBRARY</p><p>pe ilta 24.10. 18.30&nbsp;</p><p>ja la 25.10. klo 13 ja 15.30</p><p>&nbsp;</p><p>ISON OMENA LIBRARY</p><p>ke 29.10. klo 17</p><p>to&nbsp;30.10. klo 9.30-10.30 ja klo 12.30-13.30&nbsp;</p><p>&nbsp;</p><p>LIPPULAIVA LIBRARY</p><p>Keskiviikko 12.11. klo 10 ja klo 17&nbsp;</p><p>Torstai 13.11. iltanäytös klo 17.00&nbsp;</p><p>&nbsp;</p><p>ENTRESSE LIBRARY</p><p>pe 28.11. Klo 17&nbsp;</p><p>la 29.11.&nbsp;klo 13 ja 15.30&nbsp;</p><p>&nbsp;</p><p>SELLO LIBRARY</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>"
            },
            "name": {
                "fi": "Tanssiteatteri Tsuumi: Your Solo in Me",
                "sv": "Dansteater Tsuumi: Your Solo in Me",
                "en": "Dance Theatre Tsuumi: Your Solo in Me"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Estradi",
                "sv": "Estradi",
                "en": "Estradi"
            },
            "provider": {
                "fi": "Tsuumi",
                "sv": "Tsuumi",
                "en": "Tsuumi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnawb542q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnawb56fi",
            "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:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490895,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-24T11:15:24.338597Z",
                    "last_modified_time": "2025-09-24T11:15:24.338612Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png",
                    "name": "",
                    "cropping": "250,0,746,496",
                    "photographer_name": "",
                    "alt_text": "Valkoinen, partasuinen mies valkoisessa harsohameessa ja mustassa hupparissa istuu värikästä seinää vasten.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490895/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-22T07:48:23.074943Z",
            "last_modified_time": "2025-10-22T07:48:23.074961Z",
            "date_published": null,
            "start_time": "2025-11-29T11:00:00Z",
            "end_time": "2025-11-29T11:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tanssiteatteri Tsuumin esitys tekee katsojasta koreografin kun tanssitaiteilija Patrik Riipinen herättää katsojien visiot eloon yleisön silmien edessä. ",
                "sv": "Dansteater Tsuumis föreställning gör publiken till koreograf när danskonstnären Patrik Riipinen väcker åskådarnas visioner till liv inför deras ögon.",
                "en": "Dance Theatre Tsuumi’s performance turns the audience into choreographers as dance artist Patrik Riipinen brings their visions to life before their eyes."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule katsomaan millaisia esityksiä syntyy kirjastossa kun päätösvalta teoksen vaatetuksesta, musiikista, teemasta ja tilan käytöstä annetaan tällä kertaa esityksen katsojille. Työpajamaisessa teoksessa pääset itse kokeilemaan koreografin työhön liittyviä valintoja ja ihailemaa omaa tai toisen katsojan luomaa tanssiteosta. Aiempaa kokemusta ei tarvita, uteliaisuus ja kokeilunhalu riittävät!</p><p>Voit tulla tekemään teoksen vaikka moneen kertaan, sillä Tsuumi on teoksen kanssa kiertueella Espoon kaupungin kirjastossa.</p><p><br></p><p>TAPIOLAN KIRJASTO</p><p>pe ilta 24.10. 18.30&nbsp;</p><p>ja la 25.10. klo 13 ja 15.30</p><p>&nbsp;</p><p>ISON OMENAN KIRJASTO</p><p>ke 29.10. klo 17</p><p>to&nbsp;30.10. klo 9.30-10.30 ja klo 12.30-13.30&nbsp;</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><br></p><p>TAPIOLA BIBLIOTEK</p><p>pe ilta 24.10. 18.30&nbsp;</p><p>ja la 25.10. klo 13 ja 15.30</p><p>&nbsp;</p><p>ISON OMENA BIBLIOTEK</p><p>ke 29.10. klo 17</p><p>to&nbsp;30.10. klo 9.30-10.30 ja klo 12.30-13.30&nbsp;</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><br></p><p>TAPIOLA LIBRARY</p><p>pe ilta 24.10. 18.30&nbsp;</p><p>ja la 25.10. klo 13 ja 15.30</p><p>&nbsp;</p><p>ISON OMENA LIBRARY</p><p>ke 29.10. klo 17</p><p>to&nbsp;30.10. klo 9.30-10.30 ja klo 12.30-13.30&nbsp;</p><p>&nbsp;</p><p>LIPPULAIVA LIBRARY</p><p>Keskiviikko 12.11. klo 10 ja klo 17&nbsp;</p><p>Torstai 13.11. iltanäytös klo 17.00&nbsp;</p><p>&nbsp;</p><p>ENTRESSE LIBRARY</p><p>pe 28.11. Klo 17&nbsp;</p><p>la 29.11.&nbsp;klo 13 ja 15.30&nbsp;</p><p>&nbsp;</p><p>SELLO LIBRARY</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>"
            },
            "name": {
                "fi": "Tanssiteatteri Tsuumi: Your Solo in Me",
                "sv": "Dansteater Tsuumi: Your Solo in Me",
                "en": "Dance Theatre Tsuumi: Your Solo in Me"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Estradi",
                "sv": "Estradi",
                "en": "Estradi"
            },
            "provider": {
                "fi": "Tsuumi",
                "sv": "Tsuumi",
                "en": "Tsuumi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnawb56fi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22tbpu",
            "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:p10727/?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:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s3ni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s3ze/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s4fy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s4si/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s46q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s5kq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s5we/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s6ci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s6oy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s62m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s7ge/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s7se/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s754/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22take/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22taxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tbda/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151416,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-11T08:35:11.928788Z",
                    "last_modified_time": "2024-06-11T08:35:11.928858Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/suomenlippu.PNG",
                    "name": "",
                    "cropping": "98,0,471,374",
                    "photographer_name": "",
                    "alt_text": "Kuvassa suomenlippu sinistä taivasta vasten",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151416/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-13T07:49:23.490781Z",
            "last_modified_time": "2025-10-22T06:29:04.868842Z",
            "date_published": null,
            "start_time": "2025-09-01T14:30:00Z",
            "end_time": "2025-12-15T17: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,
            "short_description": {
                "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.",
                "sv": "Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. ",
                "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan!</p>",
                "sv": "<p>Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. Nybörjare är också välkomna.</p><p>Du behöver inte anmäla dig till språkcaféet i förväg. Du kan komma när som helst.</p><p>I språkcaféet får du lära dig att tala det finska vardagsspråket. I språkcaféet kan du prata finska med finländare.</p><p>Välkommen ombord!</p>",
                "en": "<p>A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p>"
            },
            "name": {
                "fi": "Puhutaan suomea -kielikahvila",
                "sv": "Låt oss prata finska- det finska språkkaféet",
                "en": "Let's speak Finnish - language café"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kajuutta",
                "sv": "Kajuutta",
                "en": "Kajuutta"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tbpu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22aav4",
            "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/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: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/helmet:11733/?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:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7yci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7ysq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7zcm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7zsi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z72by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z72qe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z727i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z73oq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z735q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z74mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z743a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z75jm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z75ye/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z76g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z76wq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z77gm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z77vq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22aafi/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490117,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-13T08:51:42.427785Z",
                    "last_modified_time": "2025-08-13T08:51:42.427801Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/38ecebe7-04e3-41af-97be-aad7fbb7e6f9.png",
                    "name": "",
                    "cropping": "88,0,403,316",
                    "photographer_name": "",
                    "alt_text": "Graafinen kuva eri maalaisista ihmisistä juttelemassa pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490117/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-13T09:03:02.726795Z",
            "last_modified_time": "2025-10-22T06:26:56.764705Z",
            "date_published": null,
            "start_time": "2025-08-19T14:00:00Z",
            "end_time": "2025-12-16T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Haluatko opetella suomenkieltä? ",
                "sv": "Vill du öva på att tala finska?",
                "en": "Do you want to learn Finnish? "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kielikahvila on kaikille eri kulttuureista ja suomen kielestä kiinnostuneille avoin keskusteluhetki suomenkielellä. Kielikahvila järjestetään kokoushuoneissa Meri ja Kari, joka tiistai klo 17–18.30. Mukaan mahtuu 24 hlöä (12 / kokoushuone).</p><p><br></p><p>Tervetuloa!</p>",
                "sv": "<p>Språkcaféet är en öppen samtalsstund på finska för alla som är intresserade av finska språket och olika kulturer.</p><p>Kielikahvila hålls i mötesrummen Meri och Kari varje tisdag kl. 17–18.30.</p><p>Det finns plats för 24 personer (12 per mötesrum).</p><p><br></p><p>Tervetuloa!</p>",
                "en": "<p>Language café is an open Finnish-language conversation session for everyone interested in the Finnish language and different cultures.</p><p>Kielikahvila takes place in the meeting rooms Meri and Kari every Tuesday from 5 PM to 6:30 PM.</p><p>There is space for 24 participants (12 per room)</p><p><br></p><p>Tervetuloa!</p>"
            },
            "name": {
                "fi": "Ison Omenan kirjaston kielikahvila ",
                "sv": "Språkcaféet på Ison Omenas bibliotek  på finska",
                "en": "The Language Café at Iso Omena Library "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Meri ja Kari",
                "sv": "Meri ja Kari",
                "en": "Meri ja Kari"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22aav4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22o2vq",
            "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: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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-30T09:44:30.666355Z",
            "last_modified_time": "2025-10-22T05:30:10.848403Z",
            "date_published": null,
            "start_time": "2025-11-15T10:00:00Z",
            "end_time": "2025-11-15T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tarinoiden taikaa, kirjallisuuden lumoa ja sydäntä lämmittävää elävää kulttuuria Espoon ytimessä Lippulaivan kirjastossa lauantaina 15.11. klo 12-17. Tervetuloa",
                "sv": "Berättelsernas magi, förtrollande litteratur och hjärtevärmande levande kultur i Lippulaivabiblioteket. Välkommen!",
                "en": "The magic of stories, the enchantment of literature, and heartwarming live culture in the heart of Espoo at the Lippulaiva Library. Welcome!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Espoon Kirjafestarit 15.11.2025</p><p>Lippulaivan kirjasto</p><p><br></p><p><strong>OHJELMA klo 12–17</strong></p><p>&nbsp;</p><p><strong>SALONKI </strong>&nbsp;</p><p><br></p><p>12.00–12.45 Avajaiset</p><p>T e r v e t u l o a kirjan &amp; teatterin juhlaan!</p><p>&nbsp;</p><p>12.00&nbsp;&nbsp;Sinikka Mäntysalo-Lamppu</p><p>Espoon Kaupunginteatterin Kannatusyhdistys varapj. ja Espoon Kirjailijat hallitus</p><p>Niina Bruun, Lippulaivan kirjasto, Espoon Kirjafestareiden yhteistyökumppani</p><p>&nbsp;</p><p>12.10&nbsp;Espoon musiikkiopiston oppilaiden tervehdys</p><p>laulunopettaja Leena Sainion johdolla</p><p>&nbsp;</p><p>12.20 Espoon ensimmäiset Kirjafestarit avaa</p><p>Kai Mykkänen, kaupunginjohtaja</p><p>&nbsp;</p><p>12.30 Espoon Kirjafestareiden suojelijan julkistaminen&nbsp;</p><p>Anna Maria Mäki, Espoon Kirjailijat pj.</p><p>Teresia Volotinen, Espoon Kaupunginteatterin Kannatusyhdistys pj.&nbsp;</p><p>&nbsp;</p><p>12.40 Pipsa Lonka, näytelmäkirjailijan puheenvuoro</p><p>Kirjailija, dramaturgi ja yksi Suomen käännetyimmistä näytelmäkirjailijoista</p><p>&nbsp;</p><p><strong>Kirjailijakeskustelut</strong></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>12.45 Näytelmäkirjallisuus</p><p>&nbsp;Näytelmäkirjailijat Pipsa Lonka ja E.L. Karhu</p><p>&nbsp;</p><p>13.05 Kaunokirjallisuus&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Kirjailijat Tiina Katriina Tikkanen ja Joonas Konstig</p><p>&nbsp;</p><p><strong>Kirjailijoiden puheenvuorot&nbsp;</strong></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>13.20 Tietokirjallisuus&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Kirjailija, runoilija, Johanna Venho</p><p>&nbsp;</p><p>13.35&nbsp;Tietokirjallisuus</p><p>Kirjailija, kädentaitaja Mirja Heikkilä</p><p>&nbsp;</p><p>13.45 Lyriikka&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Kirjailija, runoilija Riika Helle-Kotka</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14.00&nbsp;Lastenkirjallisuus&nbsp;</p><p>Lastenkirjailija, tietokirjailija Tuula Pere</p><p><br></p><p>14.15 Muunkieliset</p><p>Kirjailija, runoilija Shashank Mane&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14.30&nbsp;Kirja &amp; äänikirja – näkökulmia avaamassa kirjallisuusihminen, kirjoittaja, kokenut kirjan ammattilainen Anna-Riikka Carlson</p><p>14.50 TUA – Teatterin Uusi Alkukirjasto, teatteri- ja tanssikriitikko Maria Säkö</p><p>15.10 &amp; Espoon teatteri, keskustelu Peter asui talossa -esityksestä &amp;Teatterissa kevät– 2026&nbsp;&nbsp;</p><p>15.30–&nbsp;15.50 Katse Espooseen -runokilpailun avaus, Elina Pulli, Espoon kaupungin kulttuuripalvelut&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>16.00 Kirjafestareiden yleisön oma open mic – jouluinen lavarunotapahtuma</p><p>juontajana Räppäri Vaara, kirjailija Sanna Vaara</p><p>&nbsp;</p><p>16.45-17 Espoon Kirjafestareiden päätös yhteisöllisesti luodun runorullan säkein ja kanteletaiteilija Zipora Ogolan Kirjafestareille säveltämin sävelin</p><p>&nbsp;</p><p>Osallistavaa ja ohjattua ohjelmaa eri puolilla kirjastoa 12.45–16.30&nbsp;</p><p>&nbsp;</p><p><strong>Perhealue </strong></p><p>&nbsp;</p><p>Lasten satu- ja runonurkka</p><p>&nbsp;</p><p>12.45–13.00&nbsp;Sanna Vaara, kirjailija, lastenkirjailija</p><p>13.05–13.25&nbsp;Leena Sainio, kirjailija, musiikinopettaja, runokirjasta Rapuooppera&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14.15–14.35&nbsp;Elina Pulli, kirjailija ja lastenkirjailija, Runopullapaja</p><p>14.40–15.00&nbsp;Tuula Pere, lastenkirjailija, tietokirjailija&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;</p><p><strong>Lasten- ja nuorten teatterin iloa</strong></p><p>&nbsp;</p><p>15.00–15.30 Espoon sirkus- ja teatterikoulu ESKO</p><p>15.30–16.00 Unga Teatern, Suomen vanhin lasten- ja nuorten teatteri&nbsp;</p><p>16.00–16.30 Teatteri Hyökyvuori, lasten- ja nuorten teatteri ja kesäteatteri</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Merikontti </strong></p><p>Runoilijan vastaanotto</p><p>Vinski Valos, runoilija</p><p>13.00–14.00</p><p>15.00–16.00</p><p>Tilausrunoilija Vinski Valos kirjoittaa runomuotokuvia aiheesta kuin aiheesta.</p><p>Teoksen saa mukaansa lausuttuna ja kirjoituskoneella kirjoitettuna. Vapaaehtoinen palkkio</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>&nbsp;Paja</strong></p><p>&nbsp;</p><p>12.30–15.00 Sanataidetyöpajat</p><p>Tanja Maksimainen kirjailija, sanataideopettaja, Vantaan sanataidekoulu</p><p>&nbsp;</p><p><strong>Tehtäviä lapsille, nuorille ja aikuisille.</strong></p><p>12.30–13.30&nbsp;&nbsp;Lapset ja nuoret 4–16-vuotiaat: Leikitään mielikuvituksella ja ilotellaan kielellä</p><p>13.45–15.00&nbsp;&nbsp;Aikuiset ja nuoret yli 16-vuotiaat: Proosaa ja runoa - herätellään kielenkantoja</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ja testaillaan omaa kirjoittajaääntä</p><p>&nbsp;</p><p>15.00–16.00 Tämän runon haluat kuulla</p><p>&nbsp;&nbsp;&nbsp;&nbsp;Kohtaa &amp; kuuntele, runoja ja proosaa</p><p>&nbsp;&nbsp;&nbsp;&nbsp;Espoon Kirjailijoiden jäsenet esittävät tekstejä omasta tuotannostaan&nbsp;&nbsp;</p><p>&nbsp;</p><p><strong>Keula </strong></p><p>&nbsp;</p><p>14.00–16.00 Unelmapaja nuorille</p><p>Paula Pulkkinen, johtava kirjastopedagogi</p><p>&nbsp;</p><p>Unelmarunotyöpaja kutsuu! Tule mukaan rakentamaan yhteistä runoa, jossa sinun unelmasi saa äänen. Ei tarvitse olla runoilija – riittää, että uskallat unelmoida ja kirjoittaa vaikka vain yhden sanan!</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Hytti</strong></p><p>12.45–14.15 Riimipaja</p><p>Kasper Salonen, runoilija, kääntäjä, spoken word -artisti</p><p>&nbsp;</p><p>Loppusointu eli riimi on yleinen ja voimakas runouden keino, joka sytyttää mielikuvituksen ja</p><p>luo yllättäviä yhteyksiä. Tule mukaan kirjoittamaan ja löytämään merkitysten rytmejä</p><p>lavarunoilijan ohjauksessa.</p><p>&nbsp;</p><p>&nbsp;</p><p>14.15–15.15 Tekstipalautteen liveklinikka</p><p>Johanna Venho, kirjailija, runoilija</p><p>&nbsp;</p><p>Tuo Tekstipalautteen liveklinikalle yhden sivun mittainen kirjoituksesi, joko runoa tai proosaa. Kokenut kirjoittajaohjaaja &amp; kirjailija kertoo ensivaikutelmat, tulkinnat &amp; mahdolliset muutosehdotukset, jos niitä toivot.</p><p>&nbsp;</p><p>&nbsp;</p><p>15.15–16.00 Haikutyöpaja</p><p>Riika Helle-Kotka, lastenkirjailija, runoilija</p><p>&nbsp;</p><p>Sanataideopettaja Riika Helle-Kotka ohjaa kirjoittamaan haiku-runoja yhtä lailla meille tutuista arkisista asioista kuin elämää suuremmistakin mysteereistä japanilaista runoperinnettä hyödyntäen. Runon voi kirjoittaa paperille tai omaan kännykkään.</p><p>&nbsp;</p><p><strong>Lippulaivan kirjaston aulatila </strong></p><p>Runorulla avoinna aulassa koko päivän</p><p>Runorulla avataan Kirjafestareiden päätösosuudessa</p><p>&nbsp;</p><p>KIRJAILIJOIDEN KOHTAAMINEN JA MYYNTIPÖYDÄT</p><p>12.00–17.00</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>KAJUUTTA ja kirjaston avoimet tilat </strong></p><p>&nbsp;</p><p>Näytteilleasettajat</p><ul><li>Kirjailijat ja kustantamot&nbsp;&nbsp;</li><li>Espoolaiset kulttuuriyhteisöt</li></ul><p>&nbsp;</p><p>&nbsp;</p><p><strong>KIRJASTON SISÄÄNTULOAULA (KAUPPAKESKUSKEN PUOLELLA)</strong></p><ul><li>Kulttuurijärjestöt</li><li>Kirja-alan yhteistyökumppanit, kirjakauppa</li><li>Kirjojen lahjapaketointi – paketointia hoitaa Espoon Tikka Leopardit -futisjoukkue</li></ul><p>&nbsp;</p><p>&nbsp;</p><p><strong>KAHVILATILA</strong></p><p>Yhteisökeittiön edusta</p><ul><li>Espoon Kirjafestareiden kahvila on avoinna koko festaripäivän (klo 12–17)</li><li>Kahvilaa hoitaa paikallinen monikansallinen työryhmä. Maksu MobilePay tai käteinen</li></ul><p>&nbsp;</p><p>Espoon Kirjafestarit järjestää yhteistyössä Espoon Kirjailijat ja Espoon Kaupunginteatterin Kannatusyhdistys. Yhteistyökumppaneina Lippulaivan kirjasto ja Espoonlahden kulttuurihanke.</p><p><br></p><p><strong>Lisätietoja:</strong> espoon.kirjailijat@gmail.com tai <a href=\"https://espoonkirjailijat.fi/espoon-kirjafestarit-15-11-2025/\">Espoon kirjafestareiden kotisivuilta</a>.</p><p><strong>Vastaava tuottaja: </strong>Sinikka Mäntysalo | sinikka.mantysalo@gmail.com</p>",
                "sv": "<p>Esbo bokfestival 15.11.2025</p><p>Lippulaivabiblioteket</p><p><br></p><p><strong>PROGRAM kl. 12–17</strong></p><p><br></p><p>Evenemanget ordnas på finska</p><p><br></p><p><strong>SALONKI</strong></p><p>12.00–12.45 Öppning</p><p><br></p><p>Välkommen på böckernas och teaterns fest!</p><p>&nbsp;</p><p>12.00&nbsp;Sinikka Mäntysalo-Lamppu</p><p>Vice ordförande för föreningen Espoon kaupunginteatterin kannatusyhdistys och medlem i styrelsen för Esbo författare rf</p><p>Niina Bruun, Lippulaivabiblioteket, Esbo bokfestivals samarbetspartner</p><p>&nbsp;</p><p>12.10&nbsp;Hälsning från Esbo musikinstituts elever</p><p>under ledning av sångläraren Leena Sainio</p><p>&nbsp;</p><p>12.20&nbsp;Den första bokfestivalen i Esbo öppnas av</p><p>Kai Mykkänen, stadsdirektör</p><p>&nbsp;</p><p>12.30&nbsp;Offentliggörande av Esbo bokfestivals beskyddare&nbsp;</p><p>Anna Maria Mäki, ordförande för Esbo Författare</p><p>Teresia Volotinen, ordförande för Espoon Kaupunginteatterin Kannatusyhdistys&nbsp;</p><p>&nbsp;</p><p>12.40 Pipsa Lonka, anförande av skådespelsförfattare</p><p>Författare, dramaturg och en av Finlands mest översatta skådespelsförfattare</p><p>&nbsp;</p><p><strong>Författardiskussioner</strong></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>12.45 Dramatik</p><p>Skådespelsförfattarna Pipsa Lonka och E.L. Karhu</p><p>&nbsp;</p><p>13.05 Skönlitteratur&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Författarna Tiina Katriina Tikkanen och Joonas Konstig</p><p>&nbsp;</p><p><strong>Anföranden av författare&nbsp;</strong></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>13.20&nbsp;Facklitteratur&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Författaren, diktaren Johanna Venho</p><p>&nbsp;</p><p>13.35&nbsp;&nbsp;Facklitteratur</p><p>Författaren, hantverkaren Mirja Heikkilä</p><p>&nbsp;</p><p>13.45&nbsp;Lyrik&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Författaren, diktaren Riika Helle-Kotka</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14.00&nbsp;Barnlitteratur&nbsp;</p><p>Författaren av barnlitteratur och facklitteratur Tuula Pere</p><p><br></p><p>14.15&nbsp;Litteratur på andra språk&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Författaren, diktaren Shashank Mane&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14.30&nbsp;&nbsp;Boken och ljudboken – Olika synpunkter presenteras av litteraturpersonen och författaden Anna-Riikka Carlson, som är ett bokproffs med mycket erfarenhet.</p><p>14.50&nbsp;TUA – Teatterin Uusi Alkukirjasto, teater- och danskritikern Maria Säkö</p><p>15.10&nbsp;&nbsp;&amp; Esbo teater, diskussion om föreställningen Peter asui talossa som visas på &amp; Esbo teater våren 2026</p><p>15.30–15.50&nbsp;Öppning av dikttävlingen Katse Espooseen, Elina Pulli, Esbo stads kulturtjänster&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>16.00&nbsp;Open mic för bokfestivalens deltagare – ett scenpoesievenemang med jultema</p><p>programledare Räppäri Vaara, författaren Sanna Vaara</p><p>&nbsp;</p><p>&nbsp;</p><p>16.45–17.00&nbsp;Esbo bokfestival avslutas med att vi öppnar diktrullen som skapats tillsammans på evenemanget, till toner av kantelekonstnären Zipora Ogolas musik</p><p>&nbsp;&nbsp;</p><p>Ledda programpunkter som besökarna kan delta i på olika håll i biblioteket kl 12.45–16.30&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Familjeområdet </strong></p><p>&nbsp;</p><p>Sago- och dikthörna för barn</p><p>&nbsp;</p><p>12.45–13.00 Sanna Vaara, författare, barnboksförfattare</p><p>13.05–13.25 Leena Sainio, författare, musiklärare, har skrivit diktboken Rapuooppera&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14.15–14.35 Elina Pulli, författare och barnboksförfattare, Runopullapaja</p><p>14.40–15.00 Tuula Pere, barnboksförfattare, facklitteraturförfattare&nbsp;</p><p>&nbsp;</p><p><strong>Teaterglädje för barn och unga</strong></p><p>&nbsp;</p><p>15.00–15.30 Esbo cirkus- och teaterskola ESKO</p><p>15.30–16.00 Unga Teatern, Finlands äldsta teater för barn och unga&nbsp;</p><p>16.00–16.30 Teatteri Hyökyvuori, teater för barn och unga samt sommarteater</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Arbetsrummet Merikontti </strong></p><p>Träffa en diktare</p><p>Vinski Valos, diktare</p><p>&nbsp;</p><p>kl. 13.00–14.00</p><p>kl. 15.00–16.00</p><p>Diktaren Vinski Valos skriver på beställning dikter om vilket ämne som helst.</p><p>Du får dikten reciterad och skriven på skrivmaskin. Frivillig betalning</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Verkstaden Paja </strong></p><p>&nbsp;</p><p>12.30–15.00 Ordkonstverkstäder</p><p>Tanja Maksimainen, författare, ordkonstlärare, Vantaan sanataidekoulu</p><p>&nbsp;</p><p><strong>Uppgifter för barn, unga och vuxna.</strong></p><p>12.30–13.30 Barn och unga, 4–16-åringar: Vi leker med fantasi och har roligt med språket</p><p><br></p><p>13.45–15.00 Vuxna och unga över 16 år: Prosa och dikt – Vi lockar fram orden och utforskar vår egen författarröst</p><p>&nbsp;</p><p>15.00–16.00 Den här dikten vill du höra</p><p>&nbsp;&nbsp;&nbsp;&nbsp;Möts och lyssna, dikter och prosa</p><p>&nbsp;&nbsp;&nbsp;&nbsp;Medlemmarna i Esbo författare presenterar texter från sina egna produktioner&nbsp;&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Keula </strong></p><p>&nbsp;</p><p>14.00–16.00 Drömverkstad för unga</p><p>Paula Pulkkinen, ledande bibliotekspedagog</p><p>&nbsp;</p><p>Välkommen till drömverkstaden! Kom med och skapa en gemensam dikt där du väcker din dröm till liv. Du behöver inte vara en diktare — det räcker att du drömmer och skriver bara ett ord!</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Hytti</strong></p><p>12.45–14.15 Rimverkstad</p><p>Kasper Salonen, diktare, översättare, spoken word-artist</p><p>&nbsp;</p><p>Slutrim är ett vanligt och kraftfullt poetiskt medel som stimulerar fantasin och skapar överraskande kopplingar. Kom med och skriv och hitta meningen i rytm under ledning av en diktare.</p><p>&nbsp;</p><p>&nbsp;</p><p>14.15–15.15 Liveklinik: textrespons</p><p>Johanna Venho, författare, diktare</p><p>&nbsp;</p><p>Ta med dig en text som du skrivit (en sida lång, antingen dikt eller prosa) till livekliniken så kan du få kommentarer om din text. Den erfarna skrivhandledaren och författaren berättar om sina första intryck och tolkningar och kan ge ändringsförslag om du vill ha det.</p><p>&nbsp;</p><p>&nbsp;</p><p>15.15–16.00 Haikuverkstad</p><p>Riika Helle-Kotka, barnboksförfattare, diktare</p><p>&nbsp;</p><p>Ordkonstläraren Riika Helle-Kotka lär oss att skriva haikudikter, både om vardagliga saker och om mysterier som är större än livet med hjälp av den japanska dikttraditionen. Du kan skriva din dikt på papper eller i din mobiltelefon.</p><p><strong>&nbsp;</strong></p><p><strong>Lippulaivabibliotekets entréhall </strong></p><p>Diktrullen är öppen hela dagen i entréhallen</p><p>Diktrullen öppnas i slutet av bokfestivalen</p><p><br></p><p>FÖRFATTARTRÄFFAR SAMT FÖRSÄLJNINGSBORD</p><p>&nbsp;kl. 12.00–17.00</p><p>&nbsp;</p><p><strong>Mötesrummet KAJUUTTA och bibliotekets öppna lokaler</strong></p><p><strong>&nbsp;</strong></p><p>Utställare</p><ul><li>Författare och förlag&nbsp;&nbsp;</li><li>Kultursamfund i Esbo</li></ul><p><br></p><p><strong>BIBLIOTEKETS ENTRÉHALL </strong></p><ul><li>Kulturorganisationer</li><li>Samarbetspartner inom bokbranschen, bokhandel</li><li>Presentpaketering av böcker erbjuds av fotbollslaget Espoon Tikka Leopardit</li></ul><p>&nbsp;</p><p><strong>KAFÉT</strong></p><p>Framför det gemensamma köket</p><ul><li>&nbsp;Esbo bokfestivals kafé är öppet under hela festivaldagen (kl. 12–17).</li><li>&nbsp;Kaféet sköts av en lokal multinationell arbetsgrupp Betala med MobilePay eller kontanter</li></ul><p>&nbsp;</p><p>Esbo bokfestival ordnas i samarbete mellan Espoon författare och Espoon kaupunginteatterin kannatusyhdistys. Samarbetspartner är Lippulaivabiblioteket och kulturprojektet i Esboviken.</p><p>Ansvarig producent för Esbo bokfestival: Sinikka Mäntysalo-Lamppu, sinikka.mantysalo@gmail.com&nbsp;</p>",
                "en": "<p>Espoo Book Festival – 15 November 2025 </p><p><br></p><p>Lippulaiva Library</p><p><strong>PROGRAMME 12:00–17:00</strong></p><p>The event is in finnish</p><p><br></p><p><strong>12:00–12:45 Opening ceremony </strong></p><p><br></p><p>&nbsp;Welcome to a celebration of books and theatre!</p><p>&nbsp;</p><p>12:00&nbsp;Sinikka Mäntysalo-Lamppu</p><p>Vice-Chair of Espoon Kaupunginteatterin Kannatusyhdistys, board member of Espoon Kirjailijat</p><p>Niina Bruun, Lippulaiva Library, partner of the Espoo Book Festival </p><p>&nbsp;</p><p>12:10&nbsp;Greeting from students of the Espoo Music Institute led by singing teacher Leena Sainio</p><p>&nbsp;</p><p>12:20 Official opening of the first Espoo Book Festival by Mayor of Espoo Kai Mykkänen</p><p>&nbsp;</p><p>12:30 Announcement of the patron of the Espoo Book Festival&nbsp;</p><p>Anna Maria Mäki, Chair of Espoon Kirjailijat</p><p>Teresia Volotinen, Chair of Espoon Kaupunginteatterin Kannatusyhdistys&nbsp;</p><p>&nbsp;</p><p>12:40 Pipsa Lonka, words from a playwright</p><p>Author, dramaturg and one of Finland’s most translated playwrights</p><p>&nbsp;</p><p><br></p><p><strong>Authors in conversation</strong></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>12:45 Drama</p><p>Playwrights Pipsa Lonka and E.L. Karhu</p><p>&nbsp;</p><p>13:05&nbsp;Fiction &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Authors Tiina Katriina Tikkanen and Joonas Konstig</p><p>&nbsp;</p><p><strong>Authors take the stage&nbsp;</strong></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>13:20 Non-fiction&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Johanna Venho, author and poet</p><p>\t&nbsp;</p><p>13:35&nbsp;Non-fiction</p><p>Mirja Heikkilä, author and craftsperson </p><p>&nbsp;</p><p>13:45 Poetry&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Riika Helle-Kotka, author and poet</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14:00 Children’s literature&nbsp;</p><p>Tuula Pere, author of children’s literature and non-fiction</p><p><br></p><p>14:15&nbsp;Literature in other languages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Shashank Mane, author and poet&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14:30&nbsp;Books &amp; audiobooks – insights from literary professional, author and </p><p>seasoned book industry expert Anna-Riikka Carlson</p><p>14:50&nbsp;TUA – Teatterin Uusi Alkukirjasto, theatre and dance critic Maria Säkö</p><p>15:10&nbsp;&amp; Espoo Theatre – conversation about the play Peter asui talossa opening in spring 2026&nbsp;&nbsp;</p><p><br></p><p>15:30–&nbsp;&nbsp;15:50&nbsp;Launch of the Katse Espooseen poetry competition, Elina Pulli, City of Espoo Cultural Services</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>16:00&nbsp;Audience open mic – Christmas-themed poetry performances</p><p>hosted by Räppäri Vaara, i.e. author Sanna Vaara </p><p>&nbsp;</p><p>16:45–17:00&nbsp;&nbsp;Closing ceremony of the Espoo Book Festival, featuring verses from the collaboratively created ‘runorulla’ poetry roll and music composed for the festival by kantele artist Zipora Ogola </p><p>\t&nbsp;</p><p>Interactive and guided activities around the library from 12:45–16:30&nbsp;</p><p>&nbsp;&nbsp;</p><p><strong>Family area </strong></p><p>&nbsp;</p><p>Children’s story and poetry corner </p><p>12:45–13:00&nbsp;Sanna Vaara, author, children’s author </p><p>13:05–13:25&nbsp;Leena Sainio, author and music teacher, recites from her poetry book Rapuooppera&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>14:15–14:35&nbsp;Elina Pulli, author and children’s author, ‘Runopullapaja’ poetry workshop for children </p><p>14:40–15:00&nbsp;Tuula Pere, author of children’s literature and non-fiction&nbsp;&nbsp;</p><p>&nbsp;</p><p>Enjoy children’s and youth theatre</p><p>15:00–15:30 Espoon sirkus- ja teatterikoulu ESKO </p><p>15:30–16:00 Unga Teatern, Finland’s oldest children’s and youth theatre&nbsp;</p><p>16:00–16:30 Teatteri Hyökyvuori, children’s and youth theatre and summer theatre </p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Merikontti </strong></p><p>Poems on request </p><p>Vinski Valos, poet</p><p>13:00–14:00 </p><p>15:00–16:00</p><p>Commissioned poet Vinski Valos writes ‘poetic portraits’ on any subject you like. </p><p>Your poem will be read aloud, and you can take a typed copy home. Voluntary donation</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Paja </strong></p><p>&nbsp;12:30–15:00 Literary art workshops</p><p>Tanja Maksimainen, author, literary art teacher, Literary Art School of Vantaa</p><p>&nbsp;</p><p>Activities for children, young people and adults</p><p>12:30–13:30&nbsp;&nbsp;Children and young people (4–16 yrs): Let your imagination run wild and have fun with words!</p><p>13:45–15:00&nbsp;&nbsp;Adults and young people (16+): Prose and poetry – get your words flowing and discover your writer’s voice. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p><p>15:00–16:00 The poem you want to hear</p><p>Meet &amp; listen, poetry and prose</p><p>Members of Espoon Kirjailijat perform excerpts from their own works&nbsp;&nbsp;</p><p><br></p><p><strong>Keula </strong></p><p>14:00–16:00 Dream workshop for young people</p><p>Paula Pulkkinen, Chief Library Pedagogue </p><p>Join our dream poetry workshop! Take part in the creation of a collective poem and give your dream a voice. No prior experience needed – all you need is the courage to dream and the willingness to write, even if it’s just a single word!</p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Hytti</strong></p><p>12:45–14:15 Rhyme workshop</p><p>Kasper Salonen, poet, translator, spoken word artist</p><p>Rhyme is a common and powerful poetic tool that sparks the imagination and creates surprising connections. </p><p>Join this workshop to write and discover the rhythms of meaning under the guidance of a performance poet. </p><p><br></p><p>14:15–15:15 Live text feedback clinic</p><p>Johanna Venho, author, poet </p><p>Bring one page of your own writing – poetry or prose – to the live clinic to get feedback on your work. An experienced writing instructor and author will share their first impressions and interpretations and, if you wish, suggest improvements.</p><p>&nbsp;</p><p>15:15–16:00 Haiku workshop</p><p>Riika Helle-Kotka, children’s author, poet </p><p>Literary art teacher Riika Helle-Kotka will guide participants in writing haiku poems – inspired by both familiar everyday things and life’s greater mysteries – drawing on the Japanese poetic tradition. You can use paper or your phone to write the poem. </p><p>&nbsp;</p><p>&nbsp;</p><p><strong>Library lobby </strong></p><p>The poetry roll will be available for visitors in the lobby all day. </p><p>The roll will be opened during the closing ceremony of the book festival.</p><p>&nbsp;</p><p><br></p><p>MEET THE AUTHORS &amp; BOOK SALES from 12:00–17:00 </p><p>&nbsp;</p><p><strong>KAJUUTTA and open areas of the library </strong></p><p>&nbsp;</p><p>Exhibitors</p><ul><li>Authors and publishers&nbsp;&nbsp;</li><li>Espoo-based cultural communities </li></ul><p>\t&nbsp;</p><p>&nbsp;</p><p>LIBRARY LOBBY (In front of the library in the shopping centre)</p><ul><li>Cultural organisations</li><li>Book industry partners, book shop</li><li>Gift wrapping for books – provided by the Espoon Tikka Leopardit football team</li></ul><p>&nbsp;</p><p><strong>CAFÉ AREA&nbsp;</strong></p><p>In front of the communal kitchen Kapyysi</p><ul><li>The Espoo Book Festival café is open throughout the festival day (12:00–17:00) </li><li>The café in communal kitchen Kapyysi is run by a local multicultural team. Payment by MobilePay or cash</li></ul><p>&nbsp;</p><p>Festival organisers: Espoon Kirjailijat and Espoon Kaupunginteatterin Kannatusyhdistys. </p><p>Partners: Lippulaiva Library and the Espoonlahti Cultural Project</p><p>Executive Producer: Sinikka Mäntysalo-Lamppu, sinikka.mantysalo@gmail.com </p>"
            },
            "name": {
                "fi": "Espoon Kirjafestarit",
                "sv": "Esbo bokfestival",
                "en": "Espoo bookfestival"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki, Kajuutta, Paja ja Hytti",
                "sv": "Salonki, Kajuutta, Paja ja Hytti"
            },
            "provider": {
                "fi": "Espoon kirjailijat ja Espoon Kaupunginteatterin Kannatusyhdistys ",
                "sv": "Espoon kirjailijat ja Espoon Kaupunginteatterin Kannatusyhdistys ",
                "en": "Espoon kirjailijat ja Espoon Kaupunginteatterin Kannatusyhdistys "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22o2vq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67135",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491076,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T14:14:11.200217Z",
                    "last_modified_time": "2025-10-10T14:14:11.200231Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778133.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491076/?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-10-10T14:14:11.010086Z",
            "last_modified_time": "2025-10-21T14:13:49.845110Z",
            "date_published": null,
            "start_time": "2025-10-25T10:30:00Z",
            "end_time": "2025-10-25T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Työpajat taiteilijan, tarinankertojan ja pyykkieläinten luojan Helga Stentzelin kanssa.",
                "sv": "Verkstäder med Helga Stentzel – Konstnär, berättare och skapare av klädstrecksdjur.",
                "en": "Workshops with Helga Stentzel – Artist, Storyteller, and Creator of the Clothesline Animals."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0685958E16F32D954CA69F8B79C10A46/Luo_oma_pyykkiolentosi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0685958E16F32D954CA69F8B79C10A46/Skapa_dina_egna_tvattstrecksvarelser_",
                "en": "http://www.stoa.fi/en/events/event/0685958E16F32D954CA69F8B79C10A46/Create_Your_Own_Clothesline_Creatures_"
            },
            "description": {
                "fi": "<p>Työpajat taiteilijan, tarinankertojan ja pyykkieläinten luojan Helga Stentzelin kanssa.</p><p>Astu koko maailman rakastaman Clothesline Animals -sarjan luojan Helga Stentzelin mielikuvitukselliseen maailmaan.</p><p>Helgan teokset tunnetaan siitä, että ne muuttavat tavallisen pyykin iloisiksi ja persoonallisiksi hahmoiksi, ja ne ovatkin valloittaneet sydämiä ympäri maailman aina gallerianäyttelyistä julkisiin installaatioihin ja leikkisiin yhteistyöhankkeisiin.</p><p>Juhlistaakseen lokakuussa ensiesityksensä saavaa näytelmäämme Suomessa Helga kutsuu nyt niin lapset kuin aikuisetkin työpajoihin, joissa päästään luomaan omia pyykkieläimiä tai keksimään täysin uusia olentoja arkisista esineistä.</p><p>Työpajat:<br>• Pääse näkemään Helgan luovan prosessin taakse.<br>• Luo ohjatusti oma pyykkiolentosi vaatteiden, pyykkipoikien ja mielikuvituksen avulla.<br>• Koe leikkisä ympäristö, jossa luovuudella ei ole rajoja.<br>Miksi mukaan työpajaan?<br>• Hauskaa ja saavutettavaa tekemistä kaikenikäisille<br>• Harvinainen mahdollisuus oppia suoraan taiteilijalta<br>• Yhdessä tekemistä ja luovuuden jakamista muiden taiteesta innostuneiden kanssa.</p><p>Työpajoja on sekä koululaisille että perheille.</p><p>Työpajat koululaisille:<br>Ti 21.10. Klo 12-13 ja pe 24.10. Klo 12-13.<br>Ilmoittautumiset: hanna.westerholm@hel.fi</p><p>Työpajat perheille<br>Ke 22.10. Klo 16.30-18<br>La 25.10. Klo 13.30-15<br>Nonstop, vapaa pääsy.<br>Paikka: Stoan galleria</p><p>Ikäsuositus: alakoululuokille ja perheille<br>Kesto: 60 min-90 min<br>Kieli: englanti<br>Maksuton.</p>",
                "sv": "<p>Verkstäder med Helga Stentzel – Konstnär, berättare och skapare av klädstrecksdjur.</p><p>Stig in den fantasifulla världen som skapats av Helga Stentzel – konstnären bakom den globalt älskade serien Clothesline Animals.</p><p>Helga är känd för att förvandla vardagstvätt till glada, karaktärsfulla varelser och har erövrat hjärtan över hela världen i sina galleriutställningar, offentliga installationer och lekfulla samarbeten.</p><p>För att fira premiären av vår nya pjäs i Finland i oktober bjuder Helga in både barn och vuxna att delta i en serie praktiska verkstäder där vi skapar egna klädstrecksdjur eller hittar på helt nya varelser av hushållsföremål.</p><p>Verkstadsaktiviteter:<br>• En titt bakom kulisserna på Helgas kreativa process<br>• Instruerat skapande av din egen tvättbaserade varelse med hjälp av kläder, klädnypor och fantasi<br>• En lekfull miljö där kreativiteten inte har några gränser<br>Varför ska man delta?<br>• Verkstaden är rolig och tillgänglig för alla åldrar<br>• En sällsynt möjlighet att lära sig direkt av konstnären<br>• Få kontakt med andra entusiaster och dela magin i att skapa konst.</p><p>Det finns workshops för både skolbarn och familjer.</p><p>Workshops för skolbarn:<br>Tis 21.10. 12-13 och fre 24.10. 12-13.<br>Anmälan: hanna.westerholm@hel.fi</p><p>Workshops för familjer<br>Ons 22.10. 16.30-18<br>Lör 25.10. 13:30-15<br>Fri entré utan avbrott.</p><p>Plats: Stoa Galleri<br>Längd: 60 min-90 min<br>Språk: Engelska</p>",
                "en": "<p>Workshops with Helga Stentzel – Artist, Storyteller, and Creator of the Clothesline Animals.</p><p>Step into the imaginative world of Helga Stentzel, the artist behind the globally beloved Clothesline Animals series.</p><p>Known for transforming everyday laundry into joyful, characterful creatures, Helga’s work has captured hearts around the world—from gallery exhibitions to public installations and playful collaborations.</p><p>Now, to celebrate the premiere of our new play in Finland this October, Helga invites both children and adults to join a series of hands-on workshops where you’ll create your own clothesline animals or dream up entirely new beings from household items.</p><p>Workshop Activities:<br>• A behind-the-scenes look at Helga’s creative process<br>• Guided creation of your own laundry-based creature using clothes, pegs, and imagination<br>• A playful environment where creativity has no limits<br>Why Join?<br>• Fun and accessible for all ages<br>• A rare opportunity to learn directly from the artist<br>• Connect with fellow enthusiasts and share in the magic of creating art.</p><p>There are workshops for both school children and families.</p><p>Workshops for school children:<br>Tue 21.10. 12-13 and Fri 24.10. 12-13.<br>Registration: hanna.westerholm@hel.fi</p><p>Workshops for families<br>Wed 22.10. 16.30-18<br>Sat 25.10. 13:30-15<br>Nonstop, free admission.</p><p>Venue: Stoa Gallery<br>Duration: 60 min-90 min<br>Language: English</p>"
            },
            "name": {
                "fi": "Luo oma pyykkiolentosi! – työpaja perheille",
                "sv": "Skapa dina egna tvättstrecksvarelser! – workshop för familjer",
                "en": "Create Your Own Clothesline Creatures! – workshop for families"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67135/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm6yvzokm",
            "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: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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-16T08:34:03.610645Z",
            "last_modified_time": "2025-10-21T10:58:50.895437Z",
            "date_published": null,
            "start_time": "2025-10-28T06:00:00Z",
            "end_time": "2025-11-08T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Seija Nerjanton taidenäyttely on esillä Lippulaivan kirjaston näyttelyseinällä 28.10. - 8.11.  Tervetuloa!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Näyttely kertoo matkastani syvän masennuksen pimeästä olosta kohti valoa ja hiljaista toivoa. Jokainen teos on hetki ja tunne, joka on tullut esiin erilaisina väreinä ja muotoina.</p><p>Tämän näyttelyn kautta avaan oven sisäiseen maisemaani,jossa hämmennys, suru ja pelko kulkevat rinnakkain toivon kanssa.</p><p>-Seija Nerjanto</p><p><br></p><p>Tietoa taiteilijasta:</p><p>Olen Pöytyällä asuva, pääasiassa itseoppinut kokeilija. Olen osallistunut Jaana Valtarin ohjaamille kansalaisopiston kursseille. Maalaamisen aloitin tammikuussa 2023.</p><p>Akryylimaalin lisäksi käytän teoksissa ennakkoluulottomasti myös muita materiaaleja, esim. riisiä, suolaa ja teetä.</p><p>Taiteen tekemisestä on tullut minulle tärkeä itseilmaisun muoto, tunteiden avaaja ja terapeuttinen tie itsetutkiskeluun.</p><p>Teosteni lähtökohtana on aina jokin tunne.</p>"
            },
            "name": {
                "fi": "Varjosta valoon päin - Maalauksia matkallani masennuksen halki"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Näyttelyseinä"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6yvzokm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}