Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19723,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=3",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true"
    },
    "data": [
        {
            "id": "espoo_le:agm5p5nl3e",
            "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: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: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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490143,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-06T11:14:37.024924Z",
                    "last_modified_time": "2025-08-06T11:14:37.024937Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/37c46fa5-c92b-4e19-9368-b9c6c030e4d8.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on tuolijumppaajia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490143/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-10-12T09:47:49.900005Z",
            "last_modified_time": "2025-10-12T09:47:49.900023Z",
            "date_published": null,
            "start_time": "2025-10-13T07:00:00Z",
            "end_time": "2025-10-13T08:05: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä) Tervetuloa!",
                "sv": "Stolgymnastik, stretching och balans varje måndag. (ingen undervisning under helgdagar) Välkommen!",
                "en": "Chair gymnastics, bodywork and balance every Monday. (no instruction during public holidays) Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Tuolijumppa, kehonhuolto & tasapaino (videolta)",
                "sv": "Stolgymnastik, stretching och balans",
                "en": "Chair gymnastics, body maintenance & balance"
            },
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>Ma klo 10.00-10.30 Tuolijumppa</p><p>Ma klo 10.35-11.05 Kehonhuolto &amp;tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>",
                "sv": "<p>Stolgymnastik, stretching och balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>Mån 10.00-10.30 Stolgymnastik</p><p>Mån 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>",
                "en": "<p>Chair gymnastics, bodywork and balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>Mon 10.00-10.30 Chair exercises</p><p>Mon 10.35-11.05 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": " Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5p5nl3e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm5p5nmsu",
            "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:p2433/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490143,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-06T11:14:37.024924Z",
                    "last_modified_time": "2025-08-06T11:14:37.024937Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/37c46fa5-c92b-4e19-9368-b9c6c030e4d8.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on tuolijumppaajia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490143/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-10-12T09:45:34.611336Z",
            "last_modified_time": "2025-10-12T09:45:34.611353Z",
            "date_published": null,
            "start_time": "2025-10-16T06:30:00Z",
            "end_time": "2025-10-16T07:35: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka torstai (ei ohjausta arkipyhinä). Tervetuloa!",
                "sv": "Stolgymnastik, stretching och balans varje torsdag (ingen undervisning under helgdagar). Välkommen!",
                "en": "Chair gymnastics, bodywork and balance every Thursday (no instruction during public holidays). Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Tuolijumppa, kehonhuolto & tasapaino (videolta)",
                "sv": "Stolgymnastik, stretching och balans",
                "en": "Chair gymnastics, body maintenance & balance"
            },
            "description": {
                "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka torstai (ei ohjausta arkipyhinä).</p><p>Aikataulu:</p><p>To klo 09.30-10.00 Tuolijumppa</p><p>To klo 10.05-10.35 Kehonhuolto &amp;tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>",
                "sv": "<p>Stolgymnastik, stretching och balans varje torsdag (ingen undervisning under helgdagar).</p><p>Schema:</p><p>Tors 09.30-10.00 Stolgymnastik</p><p>Tors 10.05-10.35 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>",
                "en": "<p>Chair gymnastics, bodywork and balance every Thursday (no instruction during public holidays).</p><p>Schedule:</p><p>Thursday 09.30-10.00 Chair exercises</p><p>Thursday 10.05-10.35 Body care &amp; balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5p5nmsu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm5ppnjn4",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491079,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-10-12T08:57:10.337955Z",
                    "last_modified_time": "2025-10-12T08:57:10.337970Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e0601605-8937-41b4-a4e3-e7e102f53644.jpg",
                    "cropping": "76,0,528,453",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on koivu, meditoija ja ruusu",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491079/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-12T09:00:44.554114Z",
            "last_modified_time": "2025-10-12T09:00:44.554134Z",
            "date_published": null,
            "start_time": "2025-10-14T15:00:00Z",
            "end_time": "2025-10-14T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sahaja Yoga meditation/meditaatio Kajuutassa tiistaina 14.10. klo 18.00 alkaen. Tervetuloa!",
                "en": "Sahaja Yoga meditation in big meeting room Kajuutta on tuesday 14.10. at 6pm. Welcome!"
            },
            "info_url": null,
            "name": {
                "fi": "Sahaja Yoga meditation/meditaatio",
                "en": "Sahaja Yoga meditation"
            },
            "description": {
                "fi": "<p>Hiljennä mielesi ja koe rauhan tila!</p><p>Silence your mind and feel the peace!</p><p><br></p><p>Sahaja Yoga meditation/meditaatio</p><p>Suomeksi &amp; Englanniksi</p><p><br></p><p>Lisätietoa: www.jooga.org</p>",
                "en": "<p>Silence your mind and feel the peace!</p><p>Sahaja Yoga meditation &nbsp;in big meeting room Kajuutta on tuesday 14.10. at 6pm. Welcome!</p><p>The event is in English and in Finnish.</p><p>More information: www.jooga.org</p>"
            },
            "location_extra_info": {
                "fi": "Kajuutta",
                "en": "Kajuutta"
            },
            "provider": {
                "fi": "Sahaja Yoga / www.jooga.org",
                "en": "Sahaja Yoga / www.jooga.org"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5ppnjn4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-3594382",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19998122/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19998122/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19998122/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326899/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326900/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326901/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326902/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326904/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326905/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326906/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326907/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326911/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998115/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998116/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998117/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998118/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998119/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998120/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19998122/?format=api"
                }
            ],
            "images": [
                {
                    "id": 235439,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:44.559638Z",
                    "last_modified_time": "2025-02-17T11:16:44.559655Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hkt_mollin_iltahepuli_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235439/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:06.999317Z",
            "last_modified_time": "2025-10-11T20:16:39.835396Z",
            "date_published": null,
            "start_time": "2025-02-26T08:00:00Z",
            "end_time": "2025-10-11",
            "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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Katri Kirkkopelto MOLLIN ILTAHEPULI Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Mollin Iltahepuli"
            },
            "description": {
                "fi": "<p>Katri Kirkkopelto<br><strong>MOLLIN ILTAHEPULI</strong></p><p>Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta. Mitä tapahtuu, kun Mollille ja hänen parhaalle ystävälleen Sisulle iskee iltaväsymyksen sijasta iltahepuli? Esityksessä tarvitaan katsojien apua, jotta päähenkilöt Molli ja Sisu saadaan unten maille. Esitys pohjautuu Katri Kirkkopellon samannimiseen suosittuun lastenkirjaan.</p><p>Rooleissa: Vappu Nalbantoglu, Helena Haaranen ja Reetta Kankare</p><p>Dramatisointi ja ohjaus: Jenny Jumppanen<br>Valosuunnittelu: Milla Veirto<br>Puvustus ja lavastus: Aija Nurminen<br>Naamiointi: Tuula Kuittinen<br>Äänisuunnittelu ja sävellys: Eero Niemi</p>"
            },
            "location_extra_info": {
                "fi": "Pieni Näyttämö LÄMPIÖ"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3594382/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm5igtaoi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491078,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-10-11T15:22:24.095262Z",
                    "last_modified_time": "2025-10-11T15:22:24.095279Z",
                    "name": "Syyskonsertti",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/98434a3f-f7a7-4ff6-a555-e88112c9ec80.png",
                    "cropping": "26,0,336,311",
                    "photographer_name": "",
                    "alt_text": "Syyskonsertti",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491078/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-10-11T15:28:41.495038Z",
            "last_modified_time": "2025-10-11T15:28:41.495055Z",
            "date_published": "2025-10-11T15:10:00Z",
            "start_time": "2025-10-24T14:30:00Z",
            "end_time": "2025-10-24T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sellon kirjaston musiikkikerho esittää syyskonsertin."
            },
            "info_url": null,
            "name": {
                "fi": "Syksyn musiikkikonsertti"
            },
            "description": {
                "fi": "<p><strong>Sellon Lasten musiikkikerho</strong> Vera Kruglikin johdolla esittää syyskonserttinsa </p><p><strong>Sellon kirjaston lavalla 24.10 klo 17.30</strong>. </p><p>Sisäänpääsy on ilmainen!</p><p><strong>24.10&nbsp;в 17.30 на сцене библиотеки Селло</strong> </p><p>выступит детский музыкальный коллектив под руководством Веры Круглик с&nbsp;осенним концертом. </p><p>Вход свободный, добро пожаловать!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5igtaoi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66957",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "34 / 38 €",
                        "sv": "34 / 38 €",
                        "en": "34 / 38 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/",
                        "sv": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/",
                        "en": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490660,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T06:14:22.910081Z",
                    "last_modified_time": "2025-09-09T06:14:22.910098Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777069.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490660/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-09T06:14:22.757846Z",
            "last_modified_time": "2025-10-11T13:14:08.214965Z",
            "date_published": null,
            "start_time": "2026-01-09T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.",
                "sv": "Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).",
                "en": "Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_K-18",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_K-18",
                "en": "http://www.savoyteatteri.fi/en/events/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_R-18"
            },
            "name": {
                "fi": "Köpi Kallio: Huono suoritus K-18 – Loppuunmyyty! / Sold out!",
                "sv": "Köpi Kallio: Huono suoritus K-18 – Slutsåld!",
                "en": "Köpi Kallio: Huono suoritus R-18 – Sold out!"
            },
            "description": {
                "fi": "<p>Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.</p><p><i>Huono suoritus</i> on särmikäs summaus kolmekymppisen radio- ja tv-tähden tähänastisesta elämästä ja parhaista stand up -jutuista.</p><p>Tässä esityksessä mustaa huumoria huokuvat ja paikoin kohtuuttomuuksiin yltyvät vitsit saavat lisäpotkua Köpille itselleen tapahtuneesta pysäyttävästä tarinasta.</p><p>Mitä tarvitaan, että ihminen pysähtyy, lopettaa oman elämänsä suorittamisen ja keskittyy nauttimaan hetkestä? Siihen tarvitaan <i>Huono suoritus</i>.</p><p>Jokaisen shown alussa <i>Huonon suorituksen</i> “virallisena valvojana” ja erikoisvieraana esiintyy <b><i>Kovan viikon ilta</b></i> -ohjelmasta tuttu stand up -koomikko <b>Jukka Lindström</b>.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: K-18</p><p>Permanto K18 anniskelualue. Parvella ei anniskelua.</p>",
                "sv": "<p>Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).</p><p>Huono suoritus är en kantig sammanfattning av den trettioåriga radio- och tv-stjärnans liv hittills och hans bästa ståupphistorier.</p><p>I föreställningen får skämten, som är fulla av svart humor och ibland orimligheter, en skjuts av Köpis fängslande berättelse om sig själv.</p><p>Vad krävs för att en person ska stanna upp, sluta se sitt liv som en prestation och börja njuta av ögonblicket? För det behövs showen Huono suoritus.</p><p>Varje show inleds av ståuppkomikern Jukka Lindström, känd från programmet Kovan viikon ilta, som \"officiell övervakare\" för föreställningen och som gästande artist.</p><p>Längd ca 2 h, inklusive paus.</p><p>Åldersgräns: K-18.</p><p>Parkett K-18-område med serveringstillstånd. Ingen servering på balkongen.</p>",
                "en": "<p>Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance.</p><p>Huono suoritus is an edgy summation of the thirtysomething radio and TV star's life so far and his best stand-up stories.</p><p>The jokes in the show – full of black humour and sometimes even over the top – become even more poignant after hearing Köpi’s own extraordinary experience.</p><p>What does it take for a person to stop, put a pause on performing their life and focus on enjoying the moment? It takes a poor performance.</p><p>Stand-up comedian Jukka Lindström, a familiar face from the TV show Kovan viikon ilta, will launch each Huono suoritus show with his own performance, filling the shoes of both the show’s ‘official supervisor’ and special guest.</p><p>Duration approx. 2 h, including intermission</p><p>Age rating: 18 and up</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "JL-Komediapaja Oy",
                "sv": "JL-Komediapaja Oy",
                "en": "JL-Komediapaja Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66957/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67117",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "17-57 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoyjazzfest/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T15:15:06.388126Z",
            "last_modified_time": "2025-10-10T15:15:06.711353Z",
            "date_published": null,
            "start_time": "2026-03-07T15: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,
            "provider_contact_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7005ED61A6811EF3905FB277130586D4/Shake_Stew_Itavalta_"
            },
            "name": {
                "fi": "Shake Stew (Itävalta) – Savoy JAZZFest"
            },
            "description": {
                "fi": "<p>Itävallan seitsemänhenkinen groove-sensaatio <b>Shake Stew</b> juhlistaa 10-vuotista taivaltaan Savoy JAZZFestin konsertissa. Shake Stew on viime vuosina noussut yhdeksi Euroopan puhutuimmista jazz-kokoonpanoista. Yhtyeen hypnoottiset äänimaisemat, sykkivät rytmit ja vastustamaton energia ovat vieneet heidät loppuunmyydyille saleille aina Wienin Konzerthausista Hampurin Elbphilharmonieen ja maailman suurimmille jazz festivaaleille – nyt he esiintyvät ensimmäistä kertaa Suomessa!</p><p><i>”Sinun ei tarvitse pitää jazzista rakastaaksesi Shake Stew’ta – tämä ei ole musiikkia, tämä on dynamiittia!”</i> – Wiener Zeitung</p><p>Vuonna 2016 basisti-säveltäjä <b>Lukas Kranzelbinderin</b> perustama bändi rikkoo perinteisen jazz-yhtyeen muotin: lavalla on kaksi rumpalia, basisti, kitaristi ja kolme puhallinta. Yhtye on saanut riveihinsä myös uuden vahvistuksen, saksofonisti <b>Yvonne Morielin</b>, joka tuo soundiin uudenlaista sävyä ja raikkautta. Tämä harvinaislaatuinen kokoonpano luo musiikkia, jossa kohtaavat afro-jazzin rytmit, funk, spiritual jazz ja transsimaiset soundit. Tuloksena on musiikillinen kokemus, joka on yhtä aikaa lumoava ja räjähtävä.</p><p>Shake Stew on palkittu mm. German Jazz Awardilla (Vuoden kansainvälinen yhtye) sekä Itävallan arvostetulla Amadeus Music Awardilla. Arvostettu saksalaislehti Die ZEIT on kutsunut heitä ”Itävallan tämän hetken jazz-yhtyeeksi”.</p><p>Yhtye juhlii vuonna 2026 10-vuotista uraansa ja julkaisee tulevan juhlavuoden kunniaksi uuden albumin marraskuussa 2025.</p><p>Savoy JAZZFestissä koetaan Shake Stewn Suomen-debyyttikeikka, joka lupaa hengästyttävää energiaa ja musiikillisen matkan, jota et unohda.<br> <br>Kesto n. 1 t, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>***</p><p>Myynnissä on rajattu erä edullisia päivälippuja Savoy JAZZFestin lauantaille 7.3.2026. 80 euron hintainen päivälippu sisältää <b>Shake Stew</b> -kokoonpanon konsertin klo 17.30 sekä klo 20.00 alkavan konsertin, jonka esiintyjä julkaistaan myöhemmin.</p><p>Katso Shake Stewn musiikkivideo kappaleesta Lila:</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67117/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67118",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "17-67 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoyjazzfest/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491077,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T14:14:27.688838Z",
                    "last_modified_time": "2025-10-10T14:14:27.688857Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778121.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491077/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T14:14:27.523397Z",
            "last_modified_time": "2025-10-10T14:14:27.854222Z",
            "date_published": null,
            "start_time": "2026-03-06T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule kokemaan Duke Ellingtonin musiikin ajaton nerokkuus, kun pianisti Jason Moran tekee kunniaa säveltäjän perinnölle loistokkaasti – viime vuonna vietetyn 125-vuotisjuhlan hengessä."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C945B14294E169FEBD056DED89DD3F09/Jason_Moran_UMO_Helsinki_Jazz_Orchestra_Celebrating_Duke_Ellington_USA_Suomi_"
            },
            "name": {
                "fi": "Jason Moran & UMO Helsinki Jazz Orchestra: Celebrating Duke Ellington (USA/Suomi) – Savoy JAZZFest"
            },
            "description": {
                "fi": "<p>Tule kokemaan Duke Ellingtonin musiikin ajaton nerokkuus, kun pianisti Jason Moran tekee kunniaa säveltäjän perinnölle loistokkaasti – viime vuonna vietetyn 125-vuotisjuhlan hengessä.</p><p><i>”Hätkähdyttävän lahjakas pianisti, jonka kokeilunhalu on loputon”</i> (Los Angeles Times)</p><p>Newyorkilainen pianisti <b>Jason Moran</b> kunnioittaa <b>Duke Ellingtonin</b> perintöä uudella, rohkealla otteella astuessaan Savoy JAZZFestin lavalle <b>UMO Helsinki Jazz Orchestran</b> kanssa.</p><p>Duke Ellington (1899–1974) oli yksi 1900-luvun suurimmista säveltäjistä, orkesterinjohtajista ja pianisteista – jazzin ikoni, jonka ainutlaatuinen tyyli yhdisti vallankumouksellisesti jazzin, bluesin ja swingin. Hänen hittikappaleensa, kuten <i>It Don’t Mean a Thing (If It Ain’t Got That Swing), In a Sentimental Mood</i> ja <i>Take the A Train</i> inspiroivat edelleen muusikoita ja yleisöjä ympäri maailmaa.</p><p><b>Jason Moran</b> (s. 1975) on Houstonista, Texasista kotoisin oleva jazzpianisti, säveltäjä ja taiteellinen johtaja, jota pidetään yhtenä sukupolvensa merkittävimmistä jazzmuusikoista. Hän on julkaissut yli viisitoista albumia, säveltänyt musiikkia teatteriin ja elokuviin (Selma, 13th) sekä tehnyt yhteistyötä mm. <b>Charles Lloydin</b> ja <b>Cassandra Wilsonin</b> kanssa. Moran toimii Washington D.C.:n Kennedy Centerin jazzin taiteellisena johtajana, opettaa New England Conservatoryssa ja on saanut urallaan useita arvostettuja palkintoja, kuten MacArthur-stipendin.</p><p>Luvassa upea swingintäyteinen ilta, jossa Moranin pianismi, klassikkosävellykset ja UMO Helsingin muhkea big band -soundi kohtaavat!</p><p>Kesto n. 2 t, sis. väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>Kuuntele esimakua Youtubesta:</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67118/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67107",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "17 €",
                        "sv": "17 €",
                        "en": "17 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/baltic-circle/",
                        "sv": "https://www.lippu.fi/artist/baltic-circle/",
                        "en": "https://www.lippu.fi/artist/baltic-circle/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490997,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-02T15:13:24.513175Z",
                    "last_modified_time": "2025-10-02T15:13:24.513188Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778042.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490997/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-02T15:13:24.375337Z",
            "last_modified_time": "2025-10-10T14:14:20.978382Z",
            "date_published": null,
            "start_time": "2025-11-26T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Flis Hollandin ja Joy Mariama Smithin yhteisessä iltamassa esitetään kaksi uutta teosta, jotka venyttävät viestinnän, saavutettavuuden ja aistimisen rajoja.",
                "en": "An evening of two new performative works by artists Flis Holland and Joy Mariama Smith that stretch the limits of communication, access, and perception."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3D8A7F4362E32428561BA562840C7A77/Everyday_Priorities_Flis_Holland_Joy_Mariama_Smith",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3D8A7F4362E32428561BA562840C7A77/Everyday_Priorities_Flis_Holland_Joy_Mariama_Smith",
                "en": "http://www.kanneltalo.fi/en/events/event/3D8A7F4362E32428561BA562840C7A77/Everyday_Priorities_Flis_Holland_Joy_Mariama_Smith"
            },
            "name": {
                "fi": "Everyday Priorities: Flis Holland & Joy Mariama Smith – Baltic Circle Festival",
                "sv": "Everyday Priorities: Flis Holland & Joy Mariama Smith – Baltic Circle Festival",
                "en": "Everyday Priorities: Flis Holland & Joy Mariama Smith – Baltic Circle Festival"
            },
            "description": {
                "fi": "<p>Flis Hollandin ja Joy Mariama Smithin yhteisessä iltamassa esitetään kaksi uutta teosta, jotka venyttävät viestinnän, saavutettavuuden ja aistimisen rajoja.</p><p>Taiteilijat kysyvät, mitä yhteys, kollektiivisuus ja vapautuminen voivat merkitä, olipa kyseessä tähdistöjen väliset signaalit tai aistihierarkioiden kyseenalaistaminen. Teokset tuotetaan osana “Everyday Priorities – Art, Technology and Accommodations” -ohjelmaa.</p><p>Teokset tuotetaan osana Everyday Priorities – Art, Technology and Accommodations -ohjelmaa, jonka toteuttavat M-Cult (Helsinki) ja Metro54 (Amsterdam) yhteistyössä Suomen Benelux-instituutin kanssa. Baltic Circlessä nähtävät ensi-illat ovat M-Cultin ja Baltic Circlen yhteistyön tulosta.</p><p>Everyday Priorities – Art, Technology and Accommodations on sarja yhteisöllisiä kokoontumisia ja uusia taiteellisia tuotantoja. Sen puitteissa tutkitaan, kokeillaan ja valjastetaan vaihtoehtoisia tapoja tilata, tuottaa ja esittää (media)taidetta sekä dialogisia ja performatiivisia työskentelytapoja. Kollektiivisena (pois)oppimisen prosessina projekti tukee uusien teknologioiden kriittistä ja spekulatiivista käyttöä, erilaisia vieraanvaraisuuden muotoja sekä työkaluja saavutettavuuteen.</p><p><b>Flis Holland:</b> Unansible<br>Ansible-verkko*1 tarjoaa viiveettömän viestinnän tähdistöjen välille. Ilman viivettä tai kohinaa. Näiden saumattomien yhteyksien sanotaan häivyttävän etäisyydet väliltämme ja edistävän intergalaktista ymmärrystä. Kaikesta täydellisyydestään huolimatta signaali tuntuu vieraalta.</p><p>Flis Hollandin performatiivisessa ääniteoksessa Ansible-verkko pusketaan sen rajojen yli: tavoitteena on purkaa verkon hiottu sujuvuus. James Webb -avaruusteleskoopin kuvien alt-tekstit käynnistävät keskustelun, joka hidastuu, tihenee ja pirstaloituu lopulta moniääniseksi tilaksi.</p><p>*1. Ansible (johdettu englanninkielisestä sanasta ‘answerable’) on Ursula K. Le Guinin keksimä konsepti ja termi, joka esiintyy Osattomien planeetta (The Dispossessed: An Ambiguous Utopia, 1974) -kirjassa.</p><p>Tekijätiedot: Kaikki teoksen alt-tekstit on sovitettu ja muokattu STScl Space Telescope Science Institute -tutkimussäätiön materiaaleista.</p><p><b>Joy Mariama Smith:</b> Untitled [Scents Sense]<br>Untitled [Scents Sense] on Joy Mariama Smithin performatiivinen interventio, joka hyödyntää läheisyyttä, jossa kokee saavutettavuutteen liittyvien tarpeiden tulevan ymmärretyksi sekä niitä näennäisesti tukevia teknologioita. Samalla teos tarkastelee anosmian (eli “hajusokeuden”) merkityksiä suhteessa kolonialistisiin historioihin, diasporaidentiteetteihin ja aistien hierarkiaan.</p><p>Interventiossa avustavat teknologiat, yhdessä äänen- ja videon kanssa, johdattavat yleisön valittujen hajujen äärelle. Hajuaistin kautta heidät kutsutaan pohtimaan rajoja, eroja, saavutettavuutta, valtaa, valvontaa, leimaantumista sekä tarkastelemaan yhteisöllisyyttä, vapautumista, läheisyyttä, hoivaa, muuttoliikkeitä ja vastarintaa.</p><p>Hanketta tukevat Suomen opetus- ja kulttuuriministeriö sekä Mondriaan Fonds.</p><p>Kesto 1 h 30 min (sis. väliaika)</p>",
                "en": "<p>An evening of two new performative works by artists Flis Holland and Joy Mariama Smith that stretch the limits of communication, access, and perception.</p><p>Together, the performances invite questions of connection, collectivity, and liberation — whether through an interstellar signal or the refusal of dominant sensory hierarchies. The commissions are produced as part of the “Everyday Priorities – Art, Technology and Accommodations” project.</p><p>Commissions are produced within Everyday Priorities – Art, Technology and Accommodations, a project by M-Cult (Helsinki) and Metro54 (Amsterdam) in collaboration with the Finnish Cultural Institute for the Benelux. The premieres at Baltic Circle are the result of a partnership between M-Cult and Baltic Circle.</p><p>Everyday Priorities—Art, Technology and Accommodations is a series of gatherings and new artistic commissions that explore, experiment with, and put into action alternative ways of commissioning, producing, and presenting artistic work, media art as well as dialogic and performative practices. As a collective (un)learning process, the project enhances the critical and speculative use of new technologies, different forms of hospitality, and access toolkits.</p><p><b>Flis Holland: Unansible</b><br>The Ansible network*1 offers instantaneous interstellar communication. No delays. No static. Seamless exchanges, said to dissolve the distances between us and foster understanding. Yet the signal, for all its perfection, feels alien.</p><p>In this small group audio performance, we will push the Ansible beyond its intended limits in an attempt to undo the network’s polished fluency. Alt texts for astronomical images from the James Webb Space Telescope are seeds for a dialogue that slows, thickens, and splinters, opening up space for more voices.</p><p>*1. Ansible (derived from ‘answerable’) coined by Ursula K. Le Guin, a concept developed in “The Dispossessed: an ambiguous utopia”, 1974.</p><p>Credits for all the alt texts used in the work: Alt text by STScI Space Telescope Science Institute, adapted.</p><p><b>Joy Mariama Smith: Untitled [Scents Sense]</b><br>Joy Mariama Smith’s Untitled [Scents Sense] is a performative intervention that uses access intimacy and seemingly supportive technologies to consider the implications of Anosmia (aka ‘smell blindness’) in relation to colonial histories, diasporic identities, and the hierarchy of the senses.</p><p>In this intervention, assistive technologies, in conjunction with audio and video, accompany selected smells. Together, they invite the viewer to consider borders, boundaries, access, power, policing, stigmatization, as well as collectivity, liberation, intimacy, care, migration, and resistance through the lens of the olfactory.</p><p>Supported by the Ministry of Education and Culture, Finland and the Mondriaan Fonds, Netherlands.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67107/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": 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",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778133.jpg",
                    "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-10T14:14:11.426072Z",
            "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,
            "provider_contact_info": 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_"
            },
            "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"
            },
            "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 19-20<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. 19-20<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. 19-20<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>"
            },
            "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": "kulke:67154",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491075,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T14:14:09.850731Z",
                    "last_modified_time": "2025-10-10T14:14:09.850789Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778132.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491075/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T14:14:09.669371Z",
            "last_modified_time": "2025-10-10T14:14:10.088133Z",
            "date_published": null,
            "start_time": "2025-10-24T09:00:00Z",
            "end_time": "2025-10-24T10: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,
            "provider_contact_info": 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/DC8451C262CB4F9D96C58BD8E9DB5232/Luo_oma_pyykkiolentosi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/DC8451C262CB4F9D96C58BD8E9DB5232/Skapa_dina_egna_tvattstrecksvarelser_",
                "en": "http://www.stoa.fi/en/events/event/DC8451C262CB4F9D96C58BD8E9DB5232/Create_Your_Own_Clothesline_Creatures_"
            },
            "name": {
                "fi": "Luo oma pyykkiolentosi! – työpaja koululaisille",
                "sv": "Skapa dina egna tvättstrecksvarelser! – workshop för skolbarn",
                "en": "Create Your Own Clothesline Creatures! – workshop for schoolchildren"
            },
            "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><b>Työpajat:</b><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><b>Miksi mukaan työpajaan? </b><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 19-20<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. 19-20<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. 19-20<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>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67154/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67134",
            "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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491074,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T14:14:08.386804Z",
                    "last_modified_time": "2025-10-10T14:14:08.386818Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778131.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491074/?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:08.196665Z",
            "last_modified_time": "2025-10-10T14:14:08.800482Z",
            "date_published": null,
            "start_time": "2025-10-22T16:00:00Z",
            "end_time": "2025-10-22T17: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,
            "provider_contact_info": 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/5ACD9741F2D1EDA48E1B69A7A9E0DA05/Luo_oma_pyykkiolentosi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5ACD9741F2D1EDA48E1B69A7A9E0DA05/Skapa_dina_egna_tvattstrecksvarelser_",
                "en": "http://www.stoa.fi/en/events/event/5ACD9741F2D1EDA48E1B69A7A9E0DA05/Create_Your_Own_Clothesline_Creatures_"
            },
            "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"
            },
            "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 19-20<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. 19-20<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. 19-20<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>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67134/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67153",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491073,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T14:14:07.362715Z",
                    "last_modified_time": "2025-10-10T14:14:07.362734Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778130.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491073/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T14:14:07.120778Z",
            "last_modified_time": "2025-10-10T14:14:07.626974Z",
            "date_published": null,
            "start_time": "2025-10-21T09:00:00Z",
            "end_time": "2025-10-21T10: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,
            "provider_contact_info": 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/A908A562DF00042DC7E4A028CEA43C88/Luo_oma_pyykkiolentosi_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A908A562DF00042DC7E4A028CEA43C88/Skapa_dina_egna_tvattstrecksvarelser_",
                "en": "http://www.stoa.fi/en/events/event/A908A562DF00042DC7E4A028CEA43C88/Create_Your_Own_Clothesline_Creatures_"
            },
            "name": {
                "fi": "Luo oma pyykkiolentosi! – työpaja koululaisille",
                "sv": "Skapa dina egna tvättstrecksvarelser! – workshop för skolbarn",
                "en": "Create Your Own Clothesline Creatures! – workshop for schoolchildren"
            },
            "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><b>Työpajat:</b><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><b>Miksi mukaan työpajaan?</b><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><b>Työpajat koululaisille:</b><br>Ti 21.10. Klo 12-13 ja pe 24.10. Klo 12-13. <br>Ilmoittautumiset: hanna.westerholm@hel.fi</p><p><b>Työpajat perheille</b><br>Ke 22.10. Klo 19-20<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><p>Ryhmille pakolliset ennakkoilmoittautumiset: hanna.westerholm@hel.fi.</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><b>Verkstadsaktiviteter:</b><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><b>Varför ska man delta?</b><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><b>Workshops för skolbarn:</b><br>Tis 21.10. 12-13 och fre 24.10. 12-13.<br>Anmälan: hanna.westerholm@hel.fi</p><p><b>Workshops för familjer</b><br>Ons 22.10. 19-20<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><b>Workshop Activities:</b><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><b>Why Join?</b><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><b>Workshops for school children:</b><br>Tue 21.10. 12-13 and Fri 24.10. 12-13.<br>Registration: hanna.westerholm@hel.fi</p><p><b>Workshops for families</b><br>Wed 22.10. 19-20<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>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67153/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66985",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "10 €",
                        "sv": "10 €",
                        "en": "10 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-20612424/",
                        "sv": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-20612424/",
                        "en": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-20612424/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490634,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-04T13:16:02.329717Z",
                    "last_modified_time": "2025-09-04T13:16:02.329737Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777169.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490634/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-04T13:16:02.202261Z",
            "last_modified_time": "2025-10-10T14:14:04.437826Z",
            "date_published": null,
            "start_time": "2025-10-14T11: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Elämä on juhla on juhannuselokuva Eerolan perheen keskikesän juhlasta Nauvossa."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A677F15749969A192A5EEDA9E88CA863/HopeaCine_Elama_on_juhla",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A677F15749969A192A5EEDA9E88CA863/HopeaCine_Elama_on_juhla",
                "en": "http://www.vuotalo.fi/en/events/event/A677F15749969A192A5EEDA9E88CA863/HopeaCine_Elama_on_juhla"
            },
            "name": {
                "fi": "HopeaCine: Elämä on juhla – Näytös ja tekijävierailu",
                "sv": "HopeaCine: Elämä on juhla",
                "en": "HopeaCine: Elämä on juhla"
            },
            "description": {
                "fi": "<p>Elämä on juhla on juhannuselokuva Eerolan perheen keskikesän juhlasta Nauvossa.</p><p>Huumoria pilkahtelevassa ihmissuhdedraamassa rakastutaan, petytään ja juhlistetaan yötöntä yötä. Elokuvan pääosissa nähdään Pirjo Lonka ja Aamu Milonoff, jotka näyttelevät äitiä ja tytärtä.</p><p>Keskikesä on kauneimmillaan ja juhannus lähestyy, mutta Nauvon saaristolaisidyllissä ja Eerolan perheessä onni rakoilee: konkurssiin mennyt ravintola, salasuhteen aloittanut äiti (Pirjo Lonka), itsetunto-ongelmien kanssa kamppaileva isä (Jani Volanen) ja olosuhteiden vangiksi jäänyt kyyninen teinitytär (Aamu Milonoff).</p><p>Naapurissa asuva entinen Idols-tähti (Jussi Vatanen) haikailee menetettyä menestystä ja saa vieraaksi etäiseksi jääneen, uteliaan ja maailmalle avoimen poikansa (Bruno Baer). Juhannusviikon aikana heistä jokainen joutuu kohtaamaan elämänsä sellaisena kuin se on – kudelmana pettymyksiä ja onnea, juhlana joka jatkuu, kunnes kerran päättyy.</p><p>Tekijävieraina näyttelijä Pirjo Lonka ja tuottaja Marja Pihlaja.<br>Haastattelijana toimittaja Päivi Istala.</p><p>Ensi-ilta:03.09.2025<br>Ikäraja:12<br>Pituus:101 min<br>Ohjaus: Ulla Heikkilä<br>Käsikirjoitus: Ulla Heikkilä</p><p>Näyttelijät: Pirjo Lonka, Aamu Milonoff, Jani Volanen, Bruno Baer, Jussi Vatanen, Ulla Tapaninen, Tommi Eronen, Pia Andersson, Ada Pesso.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66985/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm44todei",
            "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/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2846/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-08T12:13:21.229172Z",
                    "last_modified_time": "2025-10-08T12:13:21.229187Z",
                    "name": "Rakkaat ruokamuistoni",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3fe67170-4952-4a3d-91c7-c5d892422bc9.png",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Kirjailijat vasemmalta: Niclas Makela/Otava, Otto Virtanen/WSOY, Dorit Salutskij/WSOY. Kannet vasemmalta: Otava, Ville Laihonen/WSOY, Laura Annala/WSOY",
                    "alt_text": "Kirjailijat Sara Al Husaini, Irene Zidan ja Hanna Himanka.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T12:17:48.306288Z",
            "last_modified_time": "2025-10-10T12:17:48.306308Z",
            "date_published": null,
            "start_time": "2025-11-02T13:00:00Z",
            "end_time": "2025-11-02T14: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tapahtumasarjan avaa kirjailija Irene Zidan. Luvassa on makuja, tarinoita ja oivalluksia, jotka yhdistävät kirjallisuuden ja ruoan parhaat puolet."
            },
            "info_url": null,
            "name": {
                "fi": "Rakkaat ruokamuistoni: vieraana kirjailija Irene Zidan"
            },
            "description": {
                "fi": "Tule viettämään iltaa kirjallisuuden ja ruoan parissa!<p><br></p><p>Lämpimät ruokahetket kulkevat mukanamme läpi elämän – ne kantavat muistoja, tarinoita ja tunteita. Asiakkaiden toiveiden pohjalta syntynyt tapahtumasarja Rakkaat ruokamuistoni tuo kirjastoon tunnettuja kokkeja ja kirjailijoita jakamaan omia ruokamuistojaan.</p><p><br></p><p>Rakkaat ruokamuistot -tapahtumasarjassa kirjailijat ja muut vieraat jakavat omia ruokamuistojaan ja kertovat, miten ruoka näkyy heidän teoksissaan ja elämässään. Samalla valmistamme yhdessä pientä maisteltavaa, jota yleisö pääsee lopuksi maistelemaan.</p><p>&nbsp;</p><p>Tapahtuma on rento ja keskusteleva — voit halutessasi osallistua keskusteluun ja kertoa omista ruokamuistoistasi. Luvassa on makuja, tarinoita ja oivalluksia, jotka yhdistävät kirjallisuuden ja ruoan parhaat puolet.</p><p><br></p><p>Näihin maksuttomiin ja avoimiin tapahtumiin ei ole pakollista ilmoittautua, mutta varmistat paikkasi ilmoittautumalla etukäteen <a href=\"https://link.webropol.com/s/ruokamuistot \">https://link.webropol.com/s/ruokamuistot </a></p>"
            },
            "location_extra_info": {
                "fi": "Jukeboksi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm44todei/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm4qsvq3e",
            "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:p1808/?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: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:p3917/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491070,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-10-10T08:31:55.953809Z",
                    "last_modified_time": "2025-10-10T08:31:55.953826Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/c256af1b-7fd8-4b0f-a702-e016e6517943.jpg",
                    "cropping": "417,0,1111,694",
                    "photographer_name": "",
                    "alt_text": "laulajia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491070/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-10-09T08:30:38.098711Z",
            "last_modified_time": "2025-10-10T08:32:04.979374Z",
            "date_published": null,
            "start_time": "2025-10-10T11:00:00Z",
            "end_time": "2025-10-10T14: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa mukaan perjantaina 10.10. klo 14-17. Tapahtuma järjestetään monitoimitila Salongissa."
            },
            "info_url": null,
            "name": {
                "fi": "Vanhusten viikko: Konsertti ja yhteislaulua, runonlausuntaa ja senioritanssia"
            },
            "description": {
                "fi": "<p>Vanhusten viikon ohjelmaa Lippulaivan kirjastossa pe 10.10. klo 14-17.</p><p>Ohjelmassa:</p><p>Konsertti ja yhteislaulua, runonlausuntaa ja senioritanssia.</p><p>Mukana: Espoonlahden Eläkkeensaajien kuoro Solisevat ja senioritanssijat</p><p><br></p><p>Järjestäjä: Espoonlahden Eläkkeensaajat ry</p><p><br></p><p>Tilaisuus on avoin ja maksuton. Tervetuloa!</p>"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4qsvq3e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm424ibp4",
            "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/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491071,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T08:21:29.292657Z",
                    "last_modified_time": "2025-10-10T08:21:29.292674Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/933bbbac-ec1e-4ad1-a61c-350253de3c49.png",
                    "cropping": "286,0,1007,720",
                    "photographer_name": "",
                    "alt_text": "Junarata illanhämärässä. Teksti: Invånarkväll om Västbanan, Asukasilta Länsiradasta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491071/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T08:27:45.842605Z",
            "last_modified_time": "2025-10-10T08:27:45.842623Z",
            "date_published": null,
            "start_time": "2025-10-21T15:00:00Z",
            "end_time": "2025-10-21T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan ja keskustelemaan Länsiradasta asukkaiden illassa 21.10 klo 18 Stagella Iso Omenan kirjastossa.",
                "sv": "Välkommen att höra om och diskutera Västbanan på invånarkväll 21.10 kl.18 på Stage i biblioteket i Iso Omena."
            },
            "info_url": null,
            "name": {
                "fi": "RKP asukasilta Länsiradasta",
                "sv": "SFP Invånarkväll om Västbanan"
            },
            "description": {
                "fi": "<p>Tervetuloa kuuntelemaan ja keskustelemaan Länsiradasta asukkaiden illassa 21.10 klo 18 Stagella Iso Omenan kirjastossa.</p><p>Puheenvuorot pitävät Espoon kaupunginhallituksen jäsen Karin Cederlöf ja valtuustoryhmän puheenjohtaja Christina Gestrin, kansanedustaja Henrik Wickström ja Kirkkonummen valtuuston puheenjohtaja Tony Björk.</p><p>Tapahtuman järjestävät Espoon RKP ja Kirkkonummen RKP.</p>",
                "sv": "<p>Välkommen att höra om och diskutera Västbanan på invånarkväll 21.10 kl.18 på Stage i biblioteket i Iso Omena.</p><p>Talturer hålls av Esbos stadsstyrelsemedlem Karin Cederlöf samt fullmäktigegruppsordförande Christina Gestrin, riksdagsledamot Henrik Wickström samt Kyrkslätts fullmäktigeordförande Tony Björk.</p><p>Invånarkvällen arrangeras av SFP i Esbo och SFP i Kyrkslätt.</p>"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage"
            },
            "provider": {
                "fi": "RKP",
                "sv": "SFP"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm424ibp4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agm42crzcy",
            "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/kultus:15/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:3/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2025-10-10T07:33:43.359641Z",
            "last_modified_time": "2025-10-10T07:35:13.239248Z",
            "date_published": null,
            "start_time": "2025-10-13T09:00:00Z",
            "end_time": "2025-10-13T11: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": "2025-10-10T10:40:00+03:00",
            "enrolment_end_time": "2025-10-11T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kokeilu 2",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Kokeilu 2",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Kokeilu 2</p>\n",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agm42crzcy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm42ayqki",
            "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/yso:p2149/?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: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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm42aypg4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm42ayp6y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1491069,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T06:28:54.009265Z",
                    "last_modified_time": "2025-10-10T06:28:54.009282Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ed3033b9-0ddb-4ee8-96ab-e5bcb8b1875b.png",
                    "cropping": "56,0,397,342",
                    "photographer_name": "",
                    "alt_text": "Keltaiset tuolit valkoisen pöydän ääressä ja pikkukuva sen päällä jossa nainen ompelee ompelukoneella",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491069/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T06:35:11.044704Z",
            "last_modified_time": "2025-10-10T06:35:11.044724Z",
            "date_published": null,
            "start_time": "2025-10-22T12:30:00Z",
            "end_time": "2025-11-05T15: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ommellaan uudet päälliset kirjaston tuoleille",
                "sv": "Vi syr nya överdrag till bibliotekets stolar",
                "en": "We are sewing new covers for the library chairs"
            },
            "info_url": null,
            "name": {
                "fi": "Yhteisompelu",
                "sv": "Gemensam sömnad",
                "en": "Group sewing"
            },
            "description": {
                "fi": "<p>Ommellaan yhdessä lastenalueen tuoleihin uusia päällisiä kierrätysmateriaaleista. Päällisiä ommellaan pajailtapäivissä kahtena keskiviikkona. Tervetuloa mukaan! </p><p>Lapsille pajassa on myös muuta toimintaa ko. aikana.</p>",
                "sv": "<p>Vi syr tillsammans nya överdrag till barnavdelningens stolar av återvunnet material. Överdragen sys under två onsdagseftermiddagar i verkstaden. Välkommen med!</p><p>För barnen finns också annan aktivitet under samma tid.</p>",
                "en": "<p>Together we will sew new covers for the children's area chairs using recycled materials. The covers will be made during two Wednesday afternoon workshops. You're warmly welcome to join!</p><p>There will also be other activities for children during the same time.</p>"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm42ayqki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agm4zq3lyq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:21/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2025-10-10T06:16:23.246977Z",
            "last_modified_time": "2025-10-10T06:18:25.302896Z",
            "date_published": null,
            "start_time": "2025-10-14T09:00:00Z",
            "end_time": "2025-10-14T11: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": "2025-10-10T09:20:00+03:00",
            "enrolment_end_time": "2025-10-13T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vielä kerran",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Vielä kerran",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Vielä kerran</p>\n",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agm4zq3lyq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}