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

{
    "meta": {
        "count": 26371,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=85",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=83"
    },
    "data": [
        {
            "id": "espoo_le:agmqkprkxa",
            "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:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": 1490579,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-01T12:08:05.040416Z",
                    "last_modified_time": "2025-09-01T12:08:05.040428Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/864ae34d-c57f-4469-852e-073ded98b324.jpg",
                    "cropping": "393,0,1243,850",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on kaksi henkilöä ja siinä lukee päihde- ja mielenterveystyön kansalaistapahtuma Espoon kaupungin kirjastossa 29.10. klo 13-18",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490579/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-01T12:12:36.739023Z",
            "last_modified_time": "2025-09-01T12:12:36.739039Z",
            "date_published": null,
            "start_time": "2025-10-29T11:00:00Z",
            "end_time": "2025-10-29T16: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": "Tule tutustumaan päihde- ja mielenterveysalan järjestöjen apu- ja tukimuotoihin sekä päihde- ja mielenterveyspalveluiden toimintaan!"
            },
            "info_url": null,
            "name": {
                "fi": "Päihde- ja mielenterveystyön kansalaistapahtuma Espoon Lippulaivan kirjastossa"
            },
            "description": {
                "fi": "<p>Tarvitsetko sinä tai läheisesi apua päihde- ja mielenterveyskysymyksissä? Haluatko muuten lisätä tietoasi aiheesta? Tule tutustumaan päihde- ja mielenterveysalan järjestöjen apu- ja tukimuotoihin sekä päihde- ja mielenterveyspalveluiden toimintaan ke 29.10.2025 klo 13-18 Espoon Lippulaivan kirjastoon!</p><p>Espoon Lippulaivan kirjaston (Espoonlahdenkatu 8) monitoimitila Salongissa voit tutustua järjestöissä tarjolla oleviin apu- ja tukimuotoihin sekä päihde- ja mielenterveyspalveluiden toimintaan.</p><p>Lisäksi tapahtumassa jaetaan tietoa päihde- ja mielenterveysongelmien ennaltaehkäisystä, stigmojen vähentämisestä sekä tehdään kansalaiskyselyä palveluiden ja järjestötyön kehittämistarpeista.</p><p>Tapahtuma on maksuton ja avoin kaikille aiheesta kiinnostuneille. Ennakkoilmoittautumista ei tarvita. Tapahtuman järjestää A-klinikkasäätiö, Espoon kirjasto ja Länsi-Uudenmaan hyvinvointialue yhteistyössä muiden tapahtumaan osallistuvien toimijoiden kanssa.</p><p><br></p><p>Lisätietoja:</p><p>Tiina Saarinen, kehittämispäällikkö, Järjestölähtöisen päihdetyön kehittäminen, </p><p> A-klinikkasäätiö,&nbsp;tiina.saarinen[at]a-klinikkasaatio.fi, p. 050 5671173</p>"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkprkxa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66958",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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: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": "25 € / 20 €",
                        "sv": "25 € / 20 €",
                        "en": "25 € / 20 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/maestro-bettina/",
                        "sv": "https://www.lippu.fi/artist/maestro-bettina/",
                        "en": "https://www.lippu.fi/artist/maestro-bettina/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490571,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-01T11:13:57.756364Z",
                    "last_modified_time": "2025-09-01T11:13:57.756381Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774933.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490571/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-01T11:13:57.607256Z",
            "last_modified_time": "2025-09-01T11:13:57.942895Z",
            "date_published": null,
            "start_time": "2025-11-08T16: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": "Vietä unohtumaton ilta Arja Saijonmaan laulujen ja tarinoiden kanssa Vuotalossa!",
                "sv": "Upplev en oförglömlig kväll med Arja Saijonmaas sånger och berättelser i Nordhuset!",
                "en": "Spend an unforgettable evening with Arja Saijonmaa’s songs and stories at Vuotalo!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0B97E801A58FE8BF240BFA23A860F95A/Maestro_Bettina_Arja_Saijonmaa",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/0B97E801A58FE8BF240BFA23A860F95A/Maestro_Bettina_Arja_Saijonmaa",
                "en": "http://www.vuotalo.fi/en/events/event/0B97E801A58FE8BF240BFA23A860F95A/Maestro_Bettina_Arja_Saijonmaa"
            },
            "name": {
                "fi": "Maestro & Bettina: Arja Saijonmaa – Svenska veckan",
                "sv": "Maestro & Bettina: Arja Saijonmaa – Svenska veckan",
                "en": "Maestro & Bettina: Arja Saijonmaa – Svenska veckan"
            },
            "description": {
                "fi": "<p>Vietä unohtumaton ilta Arja Saijonmaan laulujen ja tarinoiden kanssa Vuotalossa!</p><p>TV-toimittaja <b>Bettina Sågbom</b> haastattelee <b>Arja Saijonmaata</b> ruotsiksi hänen elämästään, joka alkaa Suomen sodanjälkeisestä kasvamisesta ja jatkuu tähän päivään. Seuraa hänen matkaansa Helsingistä opiskelijateatteriin, maailmankiertueeseen kreikkalaisen musiikki-ikonin Mikis Theodoriksen kanssa ja menestykseen Chilestä kotoisin olevan ikonisen kansanmusiikkiartistin Violeta Parran laulusta \"Jag vill tacka livet\" (Elämälle kiitos).</p><p>Arja Saijonmaa on sitoutunut artistin urallaan rauhaan, vapauteen ja ihmisoikeuksiin. Hän toimi useiden vuosien ajan YK:n lähettiläänä ja teki yhteistyötä kansainvälisten suurmiesten kuten Roger Mooren ja Harry Belafonten kanssa. Vuonna 1994 hän järjesti yksin rauhankonsertin Oslossa, johon osallistuivat Israelin pääministeri Shimon Peres ja PLO:n johtaja Yassir Arafat. Konsertin aikana he allekirjoittivat rauhansopimuksen.</p><p>80-vuotias Arja Saijonmaa on tehnyt pitkän kansainvälisen uran, saavuttanut menestystä muun muassa ”Melodifestivalenissa” (Ruotsin Euroviisuissa) kappaleella \"Högt över havet\", ja hän on esiintynyt TV-ohjelmissa kuten \"Så mycket bättre\" (Vain elämää), \"Let's Dance\" (Tanssii tähtien kanssa) ja ”Seniorsurfarna” Ruotsin TV:ssä sekä muun muassa \"Elämäni biisi\"-ohjelmassa Suomen TV:ssä.</p><p>Hän on julkaissut äskettäin omaelämäkertansa \"Laulu vapaudelle\" (En sång om frihet), mutta myös aiemmin saunakirjan, joka on innoittanut esimerkiksi KAJ:ta, joka ylisti häntä euroviisuhitissään \"Bara bada bastu\".</p><p>Kesäkuussa Arja Saijonmaa palkittiin Ruotsin kuninkaan mitalilla hänen kulttuuriteoistaan. Hän on elänyt uskomattoman mielenkiintoisen elämän, jonka johtotähtinä ovat olleet musiikki, rohkeus, uteliaisuus ja sisu. Saamme kuulla illan aikana lisää suomalaisesta maailmankansalaisesta, jolla on uskomattoman rikas ja tuottelias ura. Hän kertoo anekdootteja ja laulaa elämänsä merkityksellisimpiä kappaleita.</p><p>Kesto: n. 120 min. sis. väliaika.</p>",
                "sv": "<p>Upplev en oförglömlig kväll med Arja Saijonmaas sånger och berättelser i Nordhuset!</p><p>TV-redaktör <b>Bettina Sågbom</b> intervjuar <b>Arja Saijonmaa</b> på svenska om hennes liv från uppväxten i Finland under efterkrigsåren fram till i dag. Vi får följa hennes resa från Studentteatern i Helsingfors till världsturnén med grekiska musikikonen Mikis Theodorakis och succén med chilenska folkmusikern Violeta Parras ”Jag vill tacka livet”.</p><p>Engagemang för fred, frihet och mänskliga rättigheter genomsyrar Arja Saijonmaas karriär som artist. Hon var under flera år ambassadör för FN och samarbetade med internationella storheter som Roger Moore och Harry Belafonte.1994 anordnade hon på egen hand en fredsgala i Oslo där Israels premiärminister Simon Peres och PLO-ledaren Yassir Arafat medverkade. I en paus under konserten undertecknade de två ett fredsavtal. Hon har sjungit tillsammans med Michail Gorbatjov, kandiderat till Europaparlamentet och varit på turné med Olof Palme och Carl Bildt i olika sammanhang.</p><p>Arja Saijonmaa har haft en lång internationell karriär, framgång bla i ”Melodifestivalen” (Ruotsin Euroviisut) med ”Högt över havet” men också medverkat i TV-program som ”Så mycket bättre” (Vain elämää), ”Let´s Dance” (Tanssii tähtien kanssa) och ”Seniorsurfarna” i Sveriges TV och bla ”Elämäni biisi” i Finlands TV.</p><p>Hon har nyligen gett ut sin självbiografi ”En sång om frihet” (Laulu vapaudelle), men tidigare också en bastu-bok som bla inspirerat KAJ, som ju lovsjöng henne i sin Eurovisionshit ”Bara bada bastu”.</p><p>I juni premierades Arja Saijonmaa med medalj av svenska kungen för sina insatser inom kulturen. Hon har levt ett otroligt intressant liv, där ledorden varit musik, mod, nyfikenhet och sisu. En finsk världsmedborgare med en osannolikt rik och produktiv karriär, som vi under kvällen får stifta närmare bekantskap med när hon berättar anekdoter och sjunger de mest betydelsefulla låtarna från sitt liv.</p><p>Längd: ca 120 min. inkl. paus.</p>",
                "en": "<p>Spend an unforgettable evening with Arja Saijonmaa’s songs and stories at Vuotalo!</p><p>TV editor <b>Bettina Sågbom</b> interviews <b>Arja Saijonmaa</b> in Swedish about her life, from her upbringing in Finland during the postwar years up to the present day. We follow her journey from the Student Theater in Helsinki to a world tour with the Greek music icon Mikis Theodorakis and the success of the Chilean iconic folk musician Violeta Parras' song \"Jag vill tacka livet\" (\"Gracias a la vida\").</p><p>Engagement for peace, freedom, and human rights permeates Arja Saijonmaa's career as an artist. She was a UN ambassador for several years and collaborated with international giants such as Roger Moore and Harry Belafonte. In 1994, she independently organized a peace gala in Oslo, where Israeli Prime Minister Shimon Peres and PLO leader Yasser Arafat participated. During a break in the concert, the two signed a peace treaty. She has sung with Mikhail Gorbachev, run for the European Parliament, and toured with Olof Palme and Carl Bildt in various contexts.</p><p>Arja Saijonmaa has had a long international career, achieving success, among other things, in the “Melodifestivalen” (Swedens Eurovision Song Contest) with \"Högt över havet\" and appearing in TV programs such as \"Så mycket bättre\", \"Let's Dance\" (Dancing with the Stars), and \"Seniorsurfarna\" on Swedish TV, as well as \"Elämäni biisi\" on Finnish TV.</p><p>She recently released her autobiography \"En sång om frihet\" (Laulu vapaudesta) and previously a sauna book that, among other things, inspired KAJ, who praised her in their Eurovision hit \"Bara bada bastu\". In June,</p><p>Arja Saijonmaa was awarded a medal by the Swedish king for her contributions to culture. She has lived an incredibly interesting life, with the guiding words being music, courage, curiosity, and Sisu. A Finnish global citizen with an astonishingly rich and productive career, which we get to hear more about during the evening as she shares anecdotes and sings the most meaningful songs from her life.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66958/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66394",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/",
                        "sv": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/",
                        "en": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178356,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:35.339766Z",
                    "last_modified_time": "2025-07-04T08:12:35.339780Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774026.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178356/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:35.276842Z",
            "last_modified_time": "2025-09-01T11:13:47.188184Z",
            "date_published": null,
            "start_time": "2025-09-20T07: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än kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta.",
                "sv": "Elämän kukka (Livets blomma) är en ordlös pjäs, som musiken skapar rytm till, som handlar om livets kretslopp och kombinerar cirkus och dockteater.",
                "en": "The Flower of Life is a wordless performance combining hoop artistry, object theatre, music, circus and puppet theatre to portray the cycle of life."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka",
                "en": "http://www.malmitalo.fi/en/events/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka"
            },
            "name": {
                "fi": "AEIOU: Elämän kukka",
                "sv": "AEIOU: Elämän kukka",
                "en": "AEIOU: Elämän kukka"
            },
            "description": {
                "fi": "<p>Elämän kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta.</p><p>Vakavaa aihetta käsitellään elämänmyönteisesti. ”Ensin on siemen. Se itää, kasvaa, kukkii, pölyttyy, siementää ja kuihtuu. ”</p><p>Ikäsuositus: 6 kk + <br>Kieli: Sanaton<br>Kesto: 30 min</p><p>Elämän kukalle myönnettiin Slovenian Teatteri-instituutin Laatumerkki 2020.<br> <br>Käsikirjoitus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Ohjaus: Katja Kähkönen, Katja Povše, Mateja Ocepek<br>Vannekoreografia: Henna Matanuska<br>Lavastus ja puvustus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Kukkahame: Iztok Hrga<br>Musiikki: Gregor Zemljič</p><p>Esiintyjät: Henna Matanuska, Katja Kähkönen<br>Kuvat ja video: Heikki Järvinen<br>Tuottaja: Vauva- ja taaperoteatteri AEIOU<br>Yhteistyökumppanit: Lasten ja taiteiden talo, Ljubljana, Lastenkulttuurikeskus Rulla, Tampereen kulttuuripalvelut<br>Suomen ensi-ilta: marraskuu 2020, Monitoimitalo 13, Tampere<br>Slovenian ensi-ilta: lokakuu 2021, Bobri-festivaali, Lasten ja taiteiden talo, Ljubljana<br>Esitystä ovat tukeneet Taiteen edistämiskeskus, Samuel Huberin taidesäätiö, Alli Paasikiven Säätiö, Suomen Kulttuurirahasto, Pirkanmaan Kulttuurirahasto, Alfred Kordelinin säätiö ja Ljubljanan kulttuuritoimi.</p><p>Esitys päiväkotiryhmille pe 19.9. klo 10 varattavissa kultus.hel.fi kautta.</p>",
                "sv": "<p>Elämän kukka (Livets blomma) är en ordlös pjäs, som musiken skapar rytm till, som handlar om livets kretslopp och kombinerar cirkus och dockteater.</p><p>Det allvarliga ämnet behandlas på ett livsbekräftande sätt. ”Först är det fröet. Det gror, växer, blommar, pollinerar, fröar och vissnar.”</p><p>Åldersrekommendation: +6 månader <br>Språk: Ordlöst<br>Längd: 30 minuter</p><p>Elämän kukka tilldelades Slovenian Theatre Institutes kvalitetsmärke 2020.<br> <br>Manus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Regi: Katja Kähkönen, Katja Povše, Mateja Ocepek<br>Tunnbandskoreografi: Henna Matanuska<br>Scenografi och kostymdesign: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Blomkjol: Iztok Hrga<br>Musik: Gregor Zemljič</p><p>Artister: Henna Matanuska, Katja Kähkönen<br>Bilder och video: Heikki Järvinen<br>Producent: Baby- och barnteater AEIOU<br>Samarbetspartner: House of Children and Arts, Ljubljana, barnkulturcentret Rulla, Tammerfors kulturtjänster<br>Premiär i Finland: november 2020, Monitoimitalo 13, Tammerfors<br>Premiär i Slovenien: oktober 2021, Bobri Festival, House of Children and Arts, Ljubljana<br>Föreställningen stöds av Centret för konstfrämjande, Samuel Hubers konststiftelse, Alli Paasikivis stiftelse, Finska kulturfonden, Birkalands kulturstiftelse, Alfred Kordelins stiftelse och Ljubljanas kulturväsende.</p>",
                "en": "<p>The Flower of Life is a wordless performance combining hoop artistry, object theatre, music, circus and puppet theatre to portray the cycle of life.</p><p>Although serious, the theme is approached with a life-affirming tone. \"First comes the seed. It germinates, grows, blooms, is pollinated, produces seeds and withers.\"</p><p>Age recommendation: +6 months <br>Language: Non-verbal<br>Duration: 30 min</p><p>The Flower of Life was awarded the Quality Label by the Slovenian Theatre Institute in 2020.<br> <br>Script: Katja Kähkönen, Mateja Ocepek and Katja Povše<br>Directed by: Katja Kähkönen, Katja Povše and Mateja Ocepek<br>Hoop choreography: Henna Matanuska<br>Set and costume design: Katja Kähkönen, Mateja Ocepek and Katja Povše<br>Flower skirt: Iztok Hrga<br>Music: Gregor Zemljič</p><p>Performers: Henna Matanuska and Katja Kähkönen<br>Photos and video: Heikki Järvinen<br>Producer: Baby and Toddler Theatre AEIOU<br>Partners: House of Children and Arts, Ljubljana; Children's Cultural Centre Rulla; Tampere Cultural Services<br>Finnish premiere: November 2020, Multihouse 13, Tampere<br>Slovenian premiere: October 2021, Bobri Festival, House of Children and Arts, Ljubljana<br>The performance has been supported by the Arts Promotion Centre Finland, the Samuel Huber Art Foundation, the Alli Paasikivi Foundation, the Finnish Cultural Foundation, the Pirkanmaa Regional Fund, the Alfred Kordelin Foundation, and the City of Ljubljana Department for Culture.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66097",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jukka-gustavson-street-level-feat-jukka-orma-malmitalo-20201222/",
                        "sv": "https://www.lippu.fi/event/jukka-gustavson-street-level-feat-jukka-orma-malmitalo-20201222/",
                        "en": "https://www.lippu.fi/event/jukka-gustavson-street-level-feat-jukka-orma-malmitalo-20201222/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1177685,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T06:12:36.850925Z",
                    "last_modified_time": "2025-07-04T06:12:36.850945Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771484.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1177685/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T06:12:36.794824Z",
            "last_modified_time": "2025-09-01T11:13:46.401889Z",
            "date_published": null,
            "start_time": "2025-09-18T16: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": "Jukka Orma ja Jukka Gustavson yhdistävät voimansa ja tarjoavat mielenkiintoisen konsertin eri vuosikymmeniltä!",
                "sv": "Jukka Orma och Jukka Gustavson förenar sina krafter och bjuder på en intressant konsert från olika årtionden!",
                "en": "Jukka Orma and Jukka Gustavson join forces for an interesting concert from various decades!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE181F724774556C5C45F02505EEAD6C/Jukka_Gustavson_Street_Level_feat_Jukka_Orma_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EE181F724774556C5C45F02505EEAD6C/Jukka_Gustavson_Street_Level_feat_Jukka_Orma_",
                "en": "http://www.malmitalo.fi/en/events/event/EE181F724774556C5C45F02505EEAD6C/Jukka_Gustavson_Street_Level_feat_Jukka_Orma_"
            },
            "name": {
                "fi": "Jukka Gustavson & Street Level feat. Jukka Orma",
                "sv": "Jukka Gustavson & Street Level feat. Jukka Orma",
                "en": "Jukka Gustavson & Street Level feat. Jukka Orma"
            },
            "description": {
                "fi": "<p>Jukka Orma ja Jukka Gustavson yhdistävät voimansa ja tarjoavat mielenkiintoisen konsertin eri vuosikymmeniltä!</p><p>Konsertti pohjautuu 60- ja 70-luvun klassikoihin sekä omaan materiaaliin ja yllätyksiäkin on luvassa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>",
                "sv": "<p>Jukka Orma och Jukka Gustavson förenar sina krafter och bjuder på en intressant konsert från olika årtionden!</p><p>Konserten bygger på klassiker från 60- och 70-talet samt eget material, och även överraskningar utlovas.</p><p>Längd: 2 timmar inklusive paus 20 minuter</p>",
                "en": "<p>Jukka Orma and Jukka Gustavson join forces for an interesting concert from various decades!</p><p>The concert is based on classics from the 60s and 70s, as well as original material with a few surprises in store.</p><p>Duration: 2 hours, incl. a 20-min intermission.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66097/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5fs4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1490572,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-01T10:41:41.174825Z",
                    "last_modified_time": "2025-09-01T10:41:41.174839Z",
                    "name": "Kirjoja & ruokaa",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7a2031bb-9d35-472b-ad82-3f428163a6fb.png",
                    "cropping": "105,0,523,418",
                    "photographer_name": "",
                    "alt_text": "Kirja, teetä ja leivos pöydällä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490572/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-01T10:44:31.512644Z",
            "last_modified_time": "2025-09-01T10:44:31.512814Z",
            "date_published": null,
            "start_time": "2025-10-31T14:30:00Z",
            "end_time": "2025-10-31T17: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 tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. ",
                "sv": "Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld.",
                "en": "Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures."
            },
            "info_url": null,
            "name": {
                "fi": "Kirjoja & ruokaa",
                "sv": "Böcker & Mat",
                "en": "Books & Foods"
            },
            "description": {
                "fi": "<p><strong>Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. Jokaisella kerralla tutustumme eri teemaan liittyviin teoksiin ja inspiroidumme niistä kokkailemaan yhdessä.</strong></p><p>Tapahtumasarja on maksuton ja kaikille avoin, mutta suunnattu erityisesti aikuisille. Mukaan mahtuu 14 ensimmäistä saapumisjärjestyksessä.</p><p>Tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta!</p><p>📅 Ajankohdat ja teemat</p><p>24.09. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Aasia, vieraana JinSook Lee</p><p>15.10. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Ranska</p><p>31.10. klo 16.30–19.30, Entressen kirjasto (Jukeboxi) – Halloween</p><p>28.11. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Italia</p>",
                "sv": "<p><strong>Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld. Varje gång fokuserar vi på verk kopplade till ett särskilt tema – och låter oss inspireras till att laga mat och smaka tillsammans.</strong></p><p>Serien är gratis och öppen för alla, men riktar sig särskilt till vuxna. Antalet platser är begränsat till 14 deltagare.</p><p>Denna evenemangsserie är en del av bibliotekets program och har skapats utifrån kundernas önskemål – kom och upplev nya sätt att känna och njuta av litteratur!</p><p>📅 Datum &amp; teman</p><p>24.9 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Asien, gäst JinSook Lee</p><p>15.10 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Frankrike</p><p>31.10 kl. 16.30–19.30, Entresse bibliotek (Jukeboxi) – Halloween</p><p>28.11 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Italien</p>",
                "en": "<p><strong>Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures. Each session focuses on works connected to a specific theme, inspiring us to cook and taste together.</strong></p><p>The series is free of charge and open to everyone, though it is especially aimed at adults. Places are available for the first 14 attendees.</p><p>This event series is part of the library’s program and has been created based on customer wishes – come and experience new ways to sense and enjoy literature!</p><p>📅 Dates &amp; Themes</p><p>24 Sept 16:30–19:30, Lippulaiva Library (Kapyysi) – Asia, guest JinSook Lee</p><p>15 Oct 16:30–19:30, Lippulaiva Library (Kapyysi) – France</p><p>31 Oct 16:30–19:30, Entresse Library (Jukeboxi) – Halloween</p><p>28 Nov 16:30–19:30, Lippulaiva Library (Kapyysi) – Italy</p>"
            },
            "location_extra_info": {
                "fi": "Tapahtuma järjestetään Lippulaivan kirjastossa 24.9., 15.10. ja 28.11. sekä Entressen kirjastossa 31.10.",
                "sv": "Evenemanget ordnas i Lippulaiva bibliotek den 24.9., 15.10. och 28.11. samt i Entresse bibliotek den 31.10.",
                "en": "The event will take place at Lippulaiva Library on September 24, October 15, and November 28, and at Entresse Library on October 31."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5fs4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5iaq",
            "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:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5iwy/?format=api"
            },
            "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": 1490572,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-01T10:41:41.174825Z",
                    "last_modified_time": "2025-09-01T10:41:41.174839Z",
                    "name": "Kirjoja & ruokaa",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7a2031bb-9d35-472b-ad82-3f428163a6fb.png",
                    "cropping": "105,0,523,418",
                    "photographer_name": "",
                    "alt_text": "Kirja, teetä ja leivos pöydällä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490572/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-01T10:43:31.676904Z",
            "last_modified_time": "2025-09-01T10:43:31.676920Z",
            "date_published": null,
            "start_time": "2025-09-24T13:30:00Z",
            "end_time": "2025-09-24T16: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 tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. ",
                "sv": "Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld.",
                "en": "Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures."
            },
            "info_url": null,
            "name": {
                "fi": "Kirjoja & ruokaa",
                "sv": "Böcker & Mat",
                "en": "Books & Foods"
            },
            "description": {
                "fi": "<p><strong>Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. Jokaisella kerralla tutustumme eri teemaan liittyviin teoksiin ja inspiroidumme niistä kokkailemaan yhdessä.</strong></p><p>Tapahtumasarja on maksuton ja kaikille avoin, mutta suunnattu erityisesti aikuisille. Mukaan mahtuu 14 ensimmäistä saapumisjärjestyksessä.</p><p>Tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta!</p><p>📅 Ajankohdat ja teemat</p><p>24.09. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Aasia, vieraana JinSook Lee</p><p>15.10. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Ranska</p><p>31.10. klo 16.30–19.30, Entressen kirjasto (Jukeboxi) – Halloween</p><p>28.11. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Italia</p>",
                "sv": "<p><strong>Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld. Varje gång fokuserar vi på verk kopplade till ett särskilt tema – och låter oss inspireras till att laga mat och smaka tillsammans.</strong></p><p>Serien är gratis och öppen för alla, men riktar sig särskilt till vuxna. Antalet platser är begränsat till 14 deltagare.</p><p>Denna evenemangsserie är en del av bibliotekets program och har skapats utifrån kundernas önskemål – kom och upplev nya sätt att känna och njuta av litteratur!</p><p>📅 Datum &amp; teman</p><p>24.9 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Asien, gäst JinSook Lee</p><p>15.10 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Frankrike</p><p>31.10 kl. 16.30–19.30, Entresse bibliotek (Jukeboxi) – Halloween</p><p>28.11 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Italien</p>",
                "en": "<p><strong>Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures. Each session focuses on works connected to a specific theme, inspiring us to cook and taste together.</strong></p><p>The series is free of charge and open to everyone, though it is especially aimed at adults. Places are available for the first 14 attendees.</p><p>This event series is part of the library’s program and has been created based on customer wishes – come and experience new ways to sense and enjoy literature!</p><p>📅 Dates &amp; Themes</p><p>24 Sept 16:30–19:30, Lippulaiva Library (Kapyysi) – Asia, guest JinSook Lee</p><p>15 Oct 16:30–19:30, Lippulaiva Library (Kapyysi) – France</p><p>31 Oct 16:30–19:30, Entresse Library (Jukeboxi) – Halloween</p><p>28 Nov 16:30–19:30, Lippulaiva Library (Kapyysi) – Italy</p>"
            },
            "location_extra_info": {
                "fi": "Tapahtuma järjestetään Lippulaivan kirjastossa 24.9., 15.10. ja 28.11. sekä Entressen kirjastossa 31.10.",
                "sv": "Evenemanget ordnas i Lippulaiva bibliotek den 24.9., 15.10. och 28.11. samt i Entresse bibliotek den 31.10.",
                "en": "The event will take place at Lippulaiva Library on September 24, October 15, and November 28, and at Entresse Library on October 31."
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5iaq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agmqjhvd2y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?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:u48040050",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api"
                }
            ],
            "created_time": "2025-09-01T09:32:09.570806Z",
            "last_modified_time": "2025-09-01T09:33:25.840971Z",
            "date_published": null,
            "start_time": "2025-09-03T08:11:00Z",
            "end_time": "2025-09-03T08:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-09-01T12:34:00+03:00",
            "enrolment_end_time": "2025-09-02T11:11:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "test",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "javascript:alert()",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "test",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p><a href=\"@javascript:alert()\">hello</a>&nbsp;</p>\n",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmqjhvd2y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66645",
            "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:31/?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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1219164,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T13:16:39.418547Z",
                    "last_modified_time": "2025-07-09T13:16:39.418585Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772366.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1219164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T13:16:39.357156Z",
            "last_modified_time": "2025-09-01T09:15:17.642570Z",
            "date_published": null,
            "start_time": "2025-11-05T10: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": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5C4B2B1D2A6E2C1D69516C5B83819E3D/Opi_suomea_laulaen_TAYNNA",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5C4B2B1D2A6E2C1D69516C5B83819E3D/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/5C4B2B1D2A6E2C1D69516C5B83819E3D/Learn_Finnish_by_Singing_"
            },
            "name": {
                "fi": "Opi suomea laulaen TÄYNNÄ – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Maksuton, mutta mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn laulupajakerrat: <br>Ke 10.9. klo 10 ja 11.45<br>Ke 5.11. klo 12.30 ja 14.15<br>Ke 10.12. Klo 10 ja 11.45</p>",
                "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p>Höstens sångverkstäder:<br>On 10.9. kl. 10 och 11.45<br>On 5.11. kl. 12.30 och 14.15<br>On 10.12. kl. 10 och 11.45</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br>Ask for more information and register: sanna.nuutinen@hel.fi</p><p>Autumn song workshops:<br>Wed 10.9. at 10 and 11.45<br>Wed 5.11. at 12.30 and 14.15<br>Wed 10.12. at 10 ja 11.45</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66645/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66865",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1490452,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-18T14:13:54.492750Z",
                    "last_modified_time": "2025-08-18T14:13:54.492768Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776244.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490452/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-18T14:13:54.380304Z",
            "last_modified_time": "2025-09-01T09:15:03.070577Z",
            "date_published": null,
            "start_time": "2025-09-10T14:00:00Z",
            "end_time": "2025-09-10T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Keskustelutilaisuus Kannelmäen kaupunkielämästä. Keskustelijoiksi toivotaan kaikenikäisiä ja -taustaisia alueen asukkaita. Tervetuloa mukaan keskustelemaan!",
                "sv": "Ett diskussionsmöte om stadslivet i Gamlas. Områdets invånare i alla åldrar och med olika bakgrund är välkomna att delta i diskussionen. Välkommen att delta i diskussionen!",
                "en": "A discussion event focused on urban life in Kannelmäki. People of all ages and backgrounds are welcome to participate in the discussion. Come and join us!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8DE8DF9CC770BBC7FB2134F544991D39/Keskusteluja_kaupunkielamasta_Kannelmaessa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8DE8DF9CC770BBC7FB2134F544991D39/Diskussioner_om_stadslivet_i_Gamlas",
                "en": "http://www.kanneltalo.fi/en/events/event/8DE8DF9CC770BBC7FB2134F544991D39/Discussions_on_urban_life_in_Kannelmaki"
            },
            "name": {
                "fi": "Keskusteluja kaupunkielämästä Kannelmäessä",
                "sv": "Diskussioner om stadslivet i Gamlas",
                "en": "Discussions on urban life in Kannelmäki"
            },
            "description": {
                "fi": "<p>Keskustelutilaisuus Kannelmäen kaupunkielämästä. Keskustelijoiksi toivotaan kaikenikäisiä ja -taustaisia alueen asukkaita. Tervetuloa mukaan keskustelemaan!</p><p>Minkälaista kaupunkielämää Kannelmäessä eletään? Mitä kaupunkielämä sinulle tarkoittaa? Mitä ajattelet hyvään kaupunkielämään kuuluvan? Minkälaisia kykyjä tarvitsemme, jotta yhteiselo kaupunkitilassa sujuisi paremmin?</p><p>Tervetuloa keskustelemaan ja oppimaan uutta Kannelmäen kaupunkielämästä yhdessä muiden asukkaiden kanssa! Tilaisuus on tarkoitettu Kannelmäessä ja lähialueilla asuville.</p><p>Tilaisuuden tavoitteena ei ole löytää ratkaisuja, vaan lisätä ymmärrystä kaupunkitilasta ja sen käyttäjistä sekä Kannelmäen kaupunkielämästä.</p><p>Keskustelu järjestetään Erätauko-menetelmällä. Erätauko-keskustelussa pyrimme syventämään ymmärrystä itsestä, muista ja maailmasta. Puhumme omasta kokemuksesta ja kuuntelemme toista ihmistä. Riittää, että tulet keskusteluun mukaan uteliaalla ja avoimella mielellä. Sinun ei tarvitse olla aiheen asiantuntija eikä puhua suomea äidinkielenä. Keskustelut käydään kuitenkin suomeksi.</p><p>Tilaisuus on ilmainen, mutta vaatii ennakkoilmoittautumisen. Ilmoittaudu tilaisuuteen lomakkeella: https://forms.gle/NiGijjEjQj6QS7gs6</p><p>Tilaisuuden järjestää kaupunkimuotoilija Moona Tikka. Tilaisuus toteutetaan Helsingin kaupungin asukasosallisuuden pienavustuksella.</p><p>Verkkosivut: https://www.moonatikka.com/kaupunkielmst<br>Fb-tapahtuma: https://fb.me/e/8YIOEBzYw</p><p>Kaikille avoin ja maksuton tapahtuma. Vaatii ennakkoilmoittautumisen.</p>",
                "sv": "<p>Ett diskussionsmöte om stadslivet i Gamlas. Områdets invånare i alla åldrar och med olika bakgrund är välkomna att delta i diskussionen. Välkommen att delta i diskussionen!</p><p>Hurdant stadsliv lever man i Gamlas? Vad betyder stadslivet för dig? Vad tycker du hör till ett bra stadsliv? Vilka färdigheter behöver vi för att kunna samexistera bättre i stadsrummet?</p><p>Välkommen att diskutera och lära sig nytt om livet i Gamlas tillsammans med andra invånare! Evenemanget är för dem som bor i Gamlas med omnejd.</p><p>Syftet med evenemanget är inte att hitta lösningar, utan att öka förståelsen för stadsrummet och dess användare samt för stadslivet i Gamlas. Diskussionen ordnas med metoden Dialogpaus.</p><p>I Dialogpausdiskussionen strävar vi efter att fördjupa vår förståelse för oss själva, andra och världen. Vi talar utifrån våra egna erfarenheter och lyssnar på andra. Det räcker att du deltar i diskussionen med ett öppet och nyfiket sinne. Du behöver inte vara expert på ämnet eller ha finska som modersmål. <br>Diskussionerna kommer dock att föras på finska.</p><p>Mötet är kostnadsfritt men kräver förhandsanmälan. Anmäl dig till mötet med formuläret: https://forms.gle/NiGijjEjQj6QS7gs6</p><p>Mötet ordnas av stadsdesignern Moona Tikka. Mötet genomförs med hjälp av ett mindre understöd för Helsingfors stads invånardelaktighet.</p><p>Webbplats (på finska): https://www.moonatikka.com/kaupunkielmst<br>Fb-evenemang: https://fb.me/e/8YIOEBzYw<br>Kontaktuppgifter: moona.tikka@gmail.com och 050 358 8786</p><p>Mötet är öppet för alla och kostnadsfritt. Kräver förhandsanmälan.</p>",
                "en": "<p>A discussion event focused on urban life in Kannelmäki. People of all ages and backgrounds are welcome to participate in the discussion. Come and join us!</p><p>What kind of urban life do the residents of Kannelmäki lead? What does urban life mean to you? What do you think good urban life entails? What kinds of skills do we need to better co-exist with each other in the urban space?</p><p>Come and discuss the topic and learn new things about urban life in Kannelmäki together with other residents! The event is intended for people living in Kannelmäki and the surrounding areas.</p><p>The aim of the event is not to find solutions but to increase understanding of the urban space and its users, as well as urban life in Kannelmäki. The discussion will be held in Finnish, using the Timeout method.</p><p>In a Timeout discussion, we seek to deepen our understanding of ourselves, others and the world. We speak from our own experience and listen to the other person. All you need to do is join the discussion with an open and curious mind. You do not need to be an expert in the topic or speak Finnish as your first language. However, the discussions will take place in Finnish.</p><p>The event is free of charge but requires advance registration. Sign up for the event using the following form: https://forms.gle/NiGijjEjQj6QS7gs6</p><p>The event is organised by urban designer Moona Tikka. The event will be implemented with a small resident participation grant from the City of Helsinki.</p><p>Website: https://www.moonatikka.com/kaupunkielmst<br>FB event: https://fb.me/e/8YIOEBzYw<br>Contact details: moona.tikka@gmail.com and +358 50 358 8786</p><p>The event is open to all and free of charge. Advance registration required.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66865/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66365",
            "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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "16 €",
                        "sv": "16 €",
                        "en": "16 €"
                    },
                    "info_url": {
                        "fi": "https://ilmonet.fi/course/H254166",
                        "sv": "https://ilmonet.fi/course/H254166",
                        "en": "https://ilmonet.fi/course/H254166"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490570,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-01T09:15:02.205547Z",
                    "last_modified_time": "2025-09-01T09:15:02.205570Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773634.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490570/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-01T09:15:02.002591Z",
            "last_modified_time": "2025-09-01T09:15:02.465625Z",
            "date_published": null,
            "start_time": "2025-09-09T14:30:00Z",
            "end_time": "2025-09-09T17: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": "Kävelyretkellä etsitään viitteitä toisenlajisista eläimistä ja pohditaan monilajista kanssakaupunkilaisuutta.",
                "sv": "På finska. Under rundvandringen söker vi efter tecken på djur av andra arter och dryftar vad det innebär att vara medstadsbo med andra arter.",
                "en": "In Finnish. During this walk, participants will look for signs of nonhuman animals and reflect on the urban coexistence of multiple species."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A2B7F681E375E640E3CABB931DFBEBD6/Monilajiset_kaupunkilaiset_-_kaupunkiluontoretki_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A2B7F681E375E640E3CABB931DFBEBD6/Stadsbor_av_manga_arter_stadsnaturutflykt_",
                "en": "http://www.kanneltalo.fi/en/events/event/A2B7F681E375E640E3CABB931DFBEBD6/Multispecies_City_Dwellers_Urban_Nature_Walk_"
            },
            "name": {
                "fi": "Monilajiset kaupunkilaiset - kaupunkiluontoretki",
                "sv": "Stadsbor av många arter – stadsnaturutflykt",
                "en": "Multispecies City Dwellers – Urban Nature Walk"
            },
            "description": {
                "fi": "<p>Kävelyretkellä etsitään viitteitä toisenlajisista eläimistä ja pohditaan monilajista kanssakaupunkilaisuutta.</p><p>Retken aikana kävellään Kannelmäen, erityisesti Mätäjoen ympäristössä ja keskitytään havainnoimaan kaupunkiluontoa uusilla tavoilla. Kierroksella kävellään noin 4 km mittainen matka, jonka aikana tehdään useita pysähdyksiä ja kuunnellaan, katsotaan, aistitaan ja ajatellaan Kannelmäen toisenlajisia eläimiä. Samalla pohdimme, mihin olemme tottuneet kiinnittämään huomiota kaupunkiympäristössä ja miksi.</p><p>Oppaina toimivat esitystaiteilija Maija Linturi ja teatteripedagogi Camilla Anderzén.</p><p>Ilmoittautuminen ti 12.08.2025 klo 10:00 alkaen: https://ilmonet.fi/course/H254166</p><p>Hinta: 16 €<br>Pukeudu retkelle säänmukaisesti. Halutessasi ota mukaan muistiinpanovälineet.</p><p>Opetuskieli: suomi</p><p>Lähtö retkelle Kanneltalon Sitratorin Unelma-patsaan luota.</p><p>Yhteistyössä Kanneltalo Työväenopiston kanssa.</p>",
                "sv": "<p>På finska. Under rundvandringen söker vi efter tecken på djur av andra arter och dryftar vad det innebär att vara medstadsbo med andra arter.</p><p>Under utflykten går vi i Gamlas och i synnerhet i Rutiåns omgivning och fokuserar på att upptäcka stadsnaturen på nya sätt. Vi vandrar cirka 4 kilometer under rundvandringen och tar flera pauser och lyssnar, tittar på, känner till och tänker på djur av andra arter i Gamlas. Samtidigt funderar vi på vad vi är vana att fästa uppmärksamhet vid i stadsmiljön och varför.<br>Våra guider är performancekonstnär Maija Linturi och teaterpedagog Camilla Anderzén.</p><p>Anmälan ti 12.8.2025 från och med kl. 10.00.<br>Anmäl dig till utflykten: https://ilmonet.fi/course/H254166</p><p>Klä dig efter vädret inför utflykten. Ta med anteckningsmaterial om du vill.</p><p>Undervisningsspråk: finska</p><p>Vi startar till utflykten vid Dröm-statyn på Cittertorget utanför Gamlasgården.</p>",
                "en": "<p>In Finnish. During this walk, participants will look for signs of nonhuman animals and reflect on the urban coexistence of multiple species.</p><p>The route takes the group through the Kannelmäki area, especially around Mätäjoki, and focuses on observing urban nature in new ways. The walk covers approximately four kilometres, with several stops along the way to listen, look, sense and think about the nonhuman animals of Kannelmäki. At the same time, we will consider what we are used to noticing in the urban environment and why.<br>The participants at the walk will be guided by performance artist Maija Linturi and theatre pedagogue Camilla Anderzén.</p><p>Registration from 10:00, Tue 12 August 2025, onwards.</p><p>Sign up for the walk: https://ilmonet.fi/course/H254166</p><p>Please wear weather-appropriate clothing. Feel free to bring a notepad and pen with you.</p><p>Language of instruction: Finnish<br>The departure point is the Unelma statue at Kanneltalo's Sitratori.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66365/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5jn4",
            "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: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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490573,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-01T07:47:01.823519Z",
                    "last_modified_time": "2025-09-01T07:47:01.823534Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/69154a4a-bb43-4c73-a924-af2b3ed515b1.png",
                    "cropping": "60,0,374,313",
                    "photographer_name": "Espoon kaupungin kirjasto",
                    "alt_text": "kuva käsinkueista, joitta mielikuvituksellisia hahmoja ja värejä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490573/?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-09-01T07:49:51.262506Z",
            "last_modified_time": "2025-09-01T07:49:51.262523Z",
            "date_published": null,
            "start_time": "2025-09-05T12:00:00Z",
            "end_time": "2025-09-05T14: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": "Tehdään mielikuvitus hahmoja valmiisiin pohjiin. Pienet lapset aikuisten seurassa. "
            },
            "info_url": null,
            "name": {
                "fi": "Unisyöppö-käsinukkepaja"
            },
            "description": {
                "fi": "<p>Ison Omenan kirjasto osallistuu Lohkottuihin päiviin järjestämällä kokoperheen käsinukkien askartelupajan. </p><p>Nämä nuket eivät ole ihan tavallisia. Voit käyttää kaiken mielikuvituksesi ja tehdä outoja otuksia, unimaailman ukkeleita tai mitä ikinä mielikuvituksestasi nousee. Me autamme! Voit tehdä nuken vain omaksi iloksi, mutta näille nukeille voi kuiskuttaa myös toiveen iltaisin, että ne syövät pahat unesi, ja sinä saat nukkua aivan rauhssa. Tämä omituisten otusten kerho on yleensä hyvin nälkäinen, mitä painajaisiin tulee. </p><p>Tervetuloa!</p>"
            },
            "location_extra_info": {
                "fi": "Paja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5jn4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agmqhoomci",
            "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:22/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?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": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2025-09-01T05:22:12.161570Z",
            "last_modified_time": "2025-09-01T05:45:12.939269Z",
            "date_published": null,
            "start_time": "2025-09-02T06:00:00Z",
            "end_time": "2025-09-02T07: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-09-01T08:41:00+03:00",
            "enrolment_end_time": "2025-09-02T09:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kokeilu",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Kokeilu",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Kokeilu</p>\n",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmqhoomci/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000148",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849161/?format=api"
            },
            "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/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000148/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000148/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kuningatarnaeytelmae-helsingin-kaupunginteatteri-20000148/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360030,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:19.912887Z",
                    "last_modified_time": "2025-03-17T22:17:19.912902Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.629627Z",
            "last_modified_time": "2025-08-30T22:16:27.654793Z",
            "date_published": null,
            "start_time": "2025-08-30T15: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": {
                "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Kuningatarnäytelmä"
            },
            "description": {
                "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto<br>Erikoistehosteet: Markku Ahonen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000148/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999866",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api"
            },
            "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/lets-play-business-helsingin-kaupunginteatteri-19999866/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999866/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999866/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.182714Z",
                    "last_modified_time": "2025-03-17T22:17:20.182730Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.518482Z",
            "last_modified_time": "2025-08-30T22:16:27.516444Z",
            "date_published": null,
            "start_time": "2025-08-30T15: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": {
                "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Let'S Play Business Ensi-Ilta"
            },
            "description": {
                "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999866/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999844",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api"
            },
            "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/lets-play-business-helsingin-kaupunginteatteri-19999844/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999844/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999844/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.182714Z",
                    "last_modified_time": "2025-03-17T22:17:20.182730Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:20.392858Z",
            "last_modified_time": "2025-08-29T22:16:24.692072Z",
            "date_published": null,
            "start_time": "2025-08-29T15: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": {
                "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Let'S Play Business Ennakko"
            },
            "description": {
                "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999844/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66956",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490568,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T13:13:55.941804Z",
                    "last_modified_time": "2025-08-29T13:13:55.941821Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777068.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490568/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T13:13:55.802822Z",
            "last_modified_time": "2025-08-29T15:13:50.851617Z",
            "date_published": null,
            "start_time": "2025-08-30T08:00:00Z",
            "end_time": "2025-08-30T12: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 kaikille avoimeen toripäivään, jossa pääset hyppäämään markkinatunnelmiin paikallisten toimijoiden ja aktiviteettien parissa.",
                "en": "Welcome to an open market day for everyone, where you can enjoy the lively atmosphere with local vendors and activities!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmin_toripaiva",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmin_toripaiva",
                "en": "http://www.malmitalo.fi/en/events/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmi_Market_Day"
            },
            "name": {
                "fi": "Ylä-Malmin toripäivä",
                "sv": "Ylä-Malmin toripäivä",
                "en": "Ylä-Malmi Market Day"
            },
            "description": {
                "fi": "<p>Tervetuloa mukaan kaikille avoimeen toripäivään, jossa pääset hyppäämään markkinatunnelmiin paikallisten toimijoiden ja aktiviteettien parissa.</p><p>Paikan päällä on yli 20 torimyyjää ja esittelijää, joiden antimiin pääset tutustumaan markkinatyyliin. Päivään mahtuu myös muuta pientä ilahduttavaa, somistetaan Malmia kauniin kukkakirjaimin ja mahdollisesti paikan päällä on myös sirkusta. Tervetuloa mukaan! <br> <br>Ylä-Malmin toripäivä on osa OmaStadi-hanketta \"Ylä-Malmin tori ja Ala-Malmin puisto viihtyisäksi!\". Ylä-Malmin torin elävöittäminen on lähtenyt käyntiin asukkaiden ja alueen toimijoiden toiveita ja ehdotuksia kartoittamalla.</p>",
                "en": "<p>Welcome to an open market day for everyone, where you can enjoy the lively atmosphere with local vendors and activities!</p><p>There will be more than 20 market sellers and exhibitors on site offering their specialties in true market style. The day will also feature other delightful surprises: we will once again decorate the square with beautiful floral letters, and there may even be circus performances! Everyone is welcome!<br> <br>Ylä-Malmi Market Day is part of the OmaStadi project “Making the square of Ylä-Malmi and Ala-Malmi Park more enjoyable!”. The revitalization of Ylä-Malmi Square began by gathering wishes and suggestions from residents and local actors.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66956/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66779",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "10€ / 8€",
                        "sv": "10€ / 8€",
                        "en": "10€ / 8€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1271735,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T12:14:26.283312Z",
                    "last_modified_time": "2025-07-16T12:14:26.283328Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775285.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1271735/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T12:14:26.158835Z",
            "last_modified_time": "2025-08-29T12:14:31.778457Z",
            "date_published": null,
            "start_time": "2025-11-04T12: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": "Samborombónista Pohjolan rannikoille - Musiikkimatka Evert Tauben jalanjäljissä. Ruotsalaisuuden viikon eli Svenska veckanin tiistaimatinea ruotsiksi.",
                "sv": "Svenska veckans tisdagsmatiné",
                "en": "From Samborombón to the Nordic coast - A musical journey in the footsteps of Evert Taube. Swedish Week (Svenska veckan) Tuesday matinée in swedish."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar_",
                "en": "http://www.vuotalo.fi/en/events/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar"
            },
            "name": {
                "fi": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius",
                "sv": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius",
                "en": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius"
            },
            "description": {
                "fi": "<p>Samborombónista Pohjolan rannikoille - Musiikkimatka Evert Tauben jalanjäljissä. Ruotsalaisuuden viikon eli Svenska veckanin tiistaimatinea ruotsiksi.</p><p>Ohjelmassa on runsas ja monipuolinen kattaus Evert Tauben laululyriikkaa ja monia hänen rakastetuimmista teoksistaan sekä harvemmin kuultuja ”unohdettuja” helmiä.</p><p>Saaristolaisvalssien ja luonnonkuvausten ohella luvassa on myös lauluja, joiden inspiraation lähteenä on Evertin Argentiinassa viettämä aika (1910–1915).</p><p>Argentiinalainen kansanmusiikki ja tango ovat olleet erittäin tärkeitä molemmille artisteille: Pentti on sekä opiskellut että tehnyt yhteistyötä kuuluisien argentiinalaisten kitaristien, kuten Eduardo ja Juan Falún, Jorge Cardoson ja Jorge Morelin kanssa. Bandoneónvirtuoosi Mikko on ollut kiertueella tangolaulaja Martin Alvaradon säestäjänä. Tämän lisäksi Mikko on säestänyt muun muassa Sven Bertil Taubea.</p><p>Pentti Hildén: laulu ja kitara<br>Mikko Helenius: bandoneón, haitari, piano ja laulu<br>Kesto n. 60 min. <br>Kieli: ruotsi.</p>",
                "sv": "<p>Svenska veckans tisdagsmatiné</p><p>Skärgårdsvalserna och naturskildringarna har sin givna plats men programmet har lika mycket  sånger inspirerade av Everts vistelse (1910-1915) i Argentina.</p><p>Argentinsk folkmusik och tango har varit väldigt viktiga för båda artisterna: Pentti har både studerat för och samarbetat med Argentinska gitarrens stora namn såsom Eduardo oah Juan Falú, Jorge Cardoso och Jorge Morel.   Bandoneonvirtuosen Mikko har turnerat flirtigt som ackompanjatör för tangosångaren Martin Alvarado. Utöver Tango kan det nämnas att Mikko  ackompanjerat  bl.a. Sven Bertil Taube.</p><p>Pentti Hildén: sång och gitarr<br>Mikko Helenius bandoneon, dragspel, piano och sång. <br>Längd ca 60 min. <br>Språk: svenska.</p>",
                "en": "<p>From Samborombón to the Nordic coast - A musical journey in the footsteps of Evert Taube. Swedish Week (Svenska veckan) Tuesday matinée in swedish.</p><p>The programme offers a rich and varied selection of Evert Taube’s songs and includes many of his most beloved works alongside more rarely heard, \"forgotten\" gems.</p><p>The waltzes about the archipelago and descriptions of nature have their rightful place, but the programme also includes songs inspired by Evert's stay in Argentina (1910–1915).</p><p>Argentine folk music and tango have been very important to both artists: Pentti has both studied under and collaborated with great names within Argentine guitar, such as Eduardo and Juan Falú, Jorge Cardoso and Jorge Morel. Bandoneon virtuoso Mikko has toured extensively accompanying tango singer Martin Alvarado. In addition to Tango, Mikko has accompanied Sven Bertil Taube, among others.</p><p>Pentti Hildén: vocals and guitar<br>Mikko Helenius: bandoneon, accordion, piano and vocals<br>Duration apx 60 min.<br>Language: swedish.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66779/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66846",
            "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: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: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: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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490495,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-21T15:14:00.875409Z",
                    "last_modified_time": "2025-08-21T15:14:00.875432Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776152.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490495/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-21T15:14:00.716977Z",
            "last_modified_time": "2025-08-29T12:14:16.814004Z",
            "date_published": null,
            "start_time": "2025-09-04T14: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": {
                "fi": "Tuore dokumenttielokuva Can't Look Away (USA, 2025) tarkastelee sosiaalisen median synkempää puolta sekä sen vaikutuksia nuoriin.",
                "sv": "Den nya dokumentären Can't Look Away (USA, 2025) utforskar den mörkare sidan av sociala medier och dess inverkan på unga människor.",
                "en": "The recent documentary Can't Look Away (USA, 2025) explores the darker side of social media and its impacts on young people."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/64DE1CAA27A6A786F0BD8331AC57ACEE/Can_t_Look_Away_-dokumenttielokuva_12_ja_avoin_keskustelu",
                "sv": "http://www.stoa.fi/sv/evenemang/event/64DE1CAA27A6A786F0BD8331AC57ACEE/Dokumentaren_Can_t_Look_Away_12_och_oppen_diskussion",
                "en": "http://www.stoa.fi/en/events/event/64DE1CAA27A6A786F0BD8331AC57ACEE/Can_t_Look_Away_documentary_film_12_and_open_discussion"
            },
            "name": {
                "fi": "Can't Look Away -dokumenttielokuva (12) ja avoin keskustelu",
                "sv": "Dokumentären Can't Look Away (12) och öppen diskussion",
                "en": "Can't Look Away documentary film (12+) and open discussion"
            },
            "description": {
                "fi": "<p>Tuore dokumenttielokuva Can't Look Away (USA, 2025) tarkastelee sosiaalisen median synkempää puolta sekä sen vaikutuksia nuoriin.</p><p>Elokuvassa seurataan oikeusprosessia, jossa ryhmä juristeja pyrkii saattamaan teknologiayhtiöt vastuuseen tuotteidensa ja palveluidensa lapsille ja nuorille aiheuttamista vahingoista.</p><p>Dokumenttielokuva on englanninkielinen ja se näytetään englanninkielisen tekstityksen kanssa.</p><p>Elokuvan kesto on 75 min.<br>Elokuvan ikäsuositus: 12<br>Elokuvan kieli ja tekstitys: englanti</p><p>Näytöksen jälkeen Musiikkisalissa käydään avoin keskustelu aiheen ympärillä. Keskustelun fasilitoi Smartphone Free Childhood Finland -järjestö.</p><p>Paneelissa Elina Kiiski-Kataja (Digirauha ry) ja Anni Pätilä sekä Katariina Leivo (Suojellaan Lapsia ry.)<br>Keskustelutilaisuuden kieli: suomi ja englanti</p><p>Vapaa pääsy</p>",
                "sv": "<p>Den nya dokumentären Can't Look Away (USA, 2025) utforskar den mörkare sidan av sociala medier och dess inverkan på unga människor.</p><p>Filmen följer den juridiska processen där en grupp advokater försöker hålla teknologibolag ansvariga för den skada som deras produkter och tjänster orsakar barn och ungdomar.</p><p>Dokumentärens språk: engelska, engelsk textning<br>Filmens längd: 75 min.</p><p>Efter visningen ordnas en öppen diskussion kring temat. Diskussionen faciliteras av organisationen Smartphone Free Childhood Finland. <br>Diskussionstillfällets språk: finska och engelska</p><p>Fritt inträde.</p>",
                "en": "<p>The recent documentary Can't Look Away (USA, 2025) explores the darker side of social media and its impacts on young people.</p><p>The film follows a legal process where a group of lawyers try to hold tech companies accountable for the harm their products and services cause to children and young people.</p><p>Documentary language: English with captions<br>Duration of the film: 75 min.</p><p>After the screening, the theme will be discussed further in an open conversation. The debate is facilitated by the organisation Smartphone Free Childhood Finland.</p><p>Conversation language: Finnish and English</p><p>Free entry.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66846/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5jzq",
            "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: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/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "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": 1490574,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-29T10:38:55.145125Z",
                    "last_modified_time": "2025-08-29T10:38:55.145140Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/b153e314-33c1-4eb1-a6ec-f9ef32536455.jpg",
                    "cropping": "130,0,409,279",
                    "photographer_name": "",
                    "alt_text": "Kolme muusikkoa lavalla ja teksti Triolé",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490574/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-29T10:42:13.956433Z",
            "last_modified_time": "2025-08-29T10:42:13.956449Z",
            "date_published": "2025-08-29T10:37:00Z",
            "start_time": "2025-08-30T09:00:00Z",
            "end_time": "2025-08-30T09: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": "Elävänmusiikin matinea Espoopäivän kunniaksi"
            },
            "info_url": null,
            "name": {
                "fi": "Trio Triolé Ison Omenan stagella"
            },
            "description": {
                "fi": "<p>Trio Triolé esiintyy Stagella!</p>"
            },
            "location_extra_info": {
                "fi": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5jzq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22sqzi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p360/?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": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490248,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-04T08:06:11.047248Z",
                    "last_modified_time": "2025-06-04T08:06:11.047261Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/dd7b89f1-9f20-496a-a708-585a388bbda2.png",
                    "cropping": "164,0,639,476",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee adg- Asian dancing group",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490248/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-04T08:11:03.320397Z",
            "last_modified_time": "2025-08-29T10:16:05.564590Z",
            "date_published": null,
            "start_time": "2025-08-30T08:00:00Z",
            "end_time": "2025-08-30T13: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 Embrace the rhythm of Asia-tapahtumaan Salonkiin Espoo-päivänä!",
                "en": "Welcome to Embrace the rhythm of Asia event! There will be a teacher-led dance workshop, performances and more!"
            },
            "info_url": null,
            "name": {
                "fi": "Embrace the Rhythm of Asia - tapahtuma",
                "en": "Embrace the Rhythm of Asia - Espoo Päivä 30th of August"
            },
            "description": {
                "fi": "<p>Ohjelmassa on tanssityöpaja, esityksiä ja paljon muuta. Tervetuloa!</p><p><br></p><p>Tapahtuman ohjelma englanniksi:</p><p><br></p><p>Our Asian Dancing Group is dedicated to bringing the rich and diverse dance traditions of Asia to life. From traditional folk dances to contemporary interpretations, we celebrate the artistry, culture, and beauty of Asian movement. Event is held in Lippulaiva Library's Salonki space.</p><p>There will be teacher-led Chinese dance, Korean dance workshop, on stage performances and more!</p><p><br></p><p>Program</p><p>11:00 -11:15 Opening ceremony</p><p>11:15-11:20&nbsp;Dance&nbsp;by Asian dance group (ADG)</p><p>11:20-11:30 Chinese woman dance by Jade dancing group</p><p>11:30-12:00 Chinese ancient music instrument play by Sir Hu</p><p>12:00-12,05,Thai kid dance by the Finnish Thai Association</p><p>12:05-12:10 Kid piano play by Mengya Chinese school</p><p>12:10-12:20 Kid sing poems by Mengya Chinese school</p><p>12:20-12:50 Chinese dance workshop by ADG</p><p>13:00-13:40 break (Chinese calligraphy and&nbsp;painting&nbsp;art exhibition by Qianhu art institute )</p><p>13:40-13:50 Chinese round fan dance by ADG</p><p>13:50-14:00 Chinese woman dance by Jade dancing group</p><p>14:00-14:20 math games by Xiangxiang math group</p><p>14:20-14:28: Indian kid dance by the Finnish Thai Association</p><p>14:28-15:00 Korean dance workshop by ADG</p><p>15:00-15:10 Kid duo sinning and piano by Mengya Chinese school</p><p>15:10-15:30 Indian dance work shop by the Finnish Thai association&nbsp;</p><p><br></p><p>Free entrance!</p><p>More information: asddance0@gmail.com</p><p>asiandancegroup.fi</p><p><br></p><p>The event is in English and Finnish.</p>",
                "en": "<p>There will be a teacher-led dance workshop, performances and more!</p><p><br></p><p>The event programme:</p><p><br></p><p>Our Asian Dancing Group is dedicated to bringing the rich and diverse dance traditions of Asia to life. From traditional folk dances to contemporary interpretations, we celebrate the artistry, culture, and beauty of Asian movement. Event is held in Lippulaiva Library's Salonki space.</p><p>There will be teacher-led Chinese dance, Korean dance workshop, on stage performances and more!</p><p><br></p><p>Program</p><p>11:00 -11:15 Opening ceremony</p><p>11:15-11:20&nbsp;Dance&nbsp;by Asian dance group (ADG)</p><p>11:20-11:30 Chinese woman dance by Jade dancing group</p><p>11:30-12:00 Chinese ancient music instrument play by Sir Hu</p><p>12:00-12,05,Thai kid dance by the Finnish Thai Association</p><p>12:05-12:10 Kid piano play by Mengya Chinese school</p><p>12:10-12:20 Kid sing poems by Mengya Chinese school</p><p>12:20-12:50 Chinese dance workshop by ADG</p><p>13:00-13:40 break (Chinese calligraphy and&nbsp;painting&nbsp;art exhibition by Qianhu art institute )</p><p>13:40-13:50 Chinese round fan dance by ADG</p><p>13:50-14:00 Chinese woman dance by Jade dancing group</p><p>14:00-14:20 math games by Xiangxiang math group</p><p>14:20-14:28: Indian kid dance by the Finnish Thai Association</p><p>14:28-15:00 Korean dance workshop by ADG</p><p>15:00-15:10 Kid duo sinning and piano by Mengya Chinese school</p><p>15:10-15:30 Indian dance work shop by the Finnish Thai association&nbsp;</p><p><br></p><p>Free entrance!</p><p>More information: asddance0@gmail.com</p><p>asiandancegroup.fi</p><p>The event is in English and Finnish.</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sqzi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}