Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&page=45&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 11864,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=46&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=44&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:67750",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494145,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-09T07:13:38.442852Z",
                    "last_modified_time": "2025-12-09T07:13:38.442867Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782678.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494145/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-09T07:13:38.274315Z",
            "last_modified_time": "2025-12-09T12:12:59.333861Z",
            "date_published": null,
            "start_time": "2026-01-06",
            "end_time": "2026-01-11",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Evgenija Grossin teokset ovat tarinallisia animaatioita, jotka puhuttelevat koko perhettä.",
                "sv": "Evgenija Gross verk är berättande animationer som tilltalar hela familjen.",
                "en": "Evgenija Gross’s works are narrative animations that appeal to the whole family."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9ED4B81AD9EA8C9BC90890518B3ABF94/Evgenija_Gross_UA_Path_road_We_are_under_the_protection_of_the_Gods",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9ED4B81AD9EA8C9BC90890518B3ABF94/Evgenija_Gross_UA_Path_road_We_are_under_the_protection_of_the_Gods",
                "en": "http://www.annantalo.fi/en/events/event/9ED4B81AD9EA8C9BC90890518B3ABF94/Evgenija_Gross_UA_Path_road_We_are_under_the_protection_of_the_Gods"
            },
            "description": {
                "fi": "<p>Evgenija Grossin teokset ovat tarinallisia animaatioita, jotka puhuttelevat koko perhettä.</p><p><b>Osa 1. Polku / tie.</b> Kun tuttu maailma romahtaa ja elämä vaihtaa suuntaa, on valittava uusi polku, uusi tie. Kompassina toimii sydän ja kohtalon virtaan luottaminen on viisainta.</p><p>“Seurasin sydäntäni Suomeen enkä erehtynyt. Täältä löysin uuden kodin ja alun. Teos on omistettu suomalaisille ukrainalaisten auttamisesta ja tukemisesta vaikeina aikoina. Olette ikuisesti sydämessäni.” – Evgenija Gross</p><p><b>Osa 2. Olemme jumalten suojeluksessa.</b> Tyttö, Nadya, kääntyy jumalten puoleen avun ja suojan saadakseen. Henkiolennon välityksellä hän tarjoaa heille oksan punaista koiranheisiä (kalyna), ja jumalat, hyväksyen lahjan, punovat siitä suojaseppeleen ja lahjoittavat sen hänelle. Tarina kertoo, että ukrainalaisia suojelevat korkeammat voimat ja kansan ikiaikainen perintö – siksi he ovat voittamattomia.</p><p><b>Evgenija Gross</b> on ukrainalainen taiteilija, muotoilija ja animaattori. Hän on opiskellut Muotisuunnittelun instituutissa Kiovassa ja työskennellyt Novator-elokuvastudion animaattorina, lavastajana ja tuotantosuunnittelijana sekä osallistunut hahmojen kehittämiseen. Gross on asunut Suomessa vuodesta 2022 alkaen, ja hän opiskelee nykyisin Stadin AO:ssa Helsingissä.</p><p>Teos on esillä Annantalon seinään heijastettuna 6.–11.1.2026.</p><p>Annantalo on avoinna <br>6.1. klo 17-22<br>7.1. klo 8-22<br>8.1. klo 8-22<br>9.1. klo 8-22<br>10.1. klo 10-22<br>11.1. klo 17-22</p>",
                "sv": "<p>Evgenija Gross verk är berättande animationer som tilltalar hela familjen.</p><p><b>Del 1. Väg / vägval.</b> När din välbekanta värld faller samman och livet byter riktning måste du välja en ny väg. Att lita på ödet och segla utan motstånd är klokast när hjärtat är din kompass.</p><p>\"Jag följde mitt hjärta till Finland, och jag hade rätt. Här fann jag ett nytt hem och en ny början. Jag tillägnar min video det finska folket för att ni hjälpt och stöttat ukrainare i svåra tider. Ni finns för alltid i mitt hjärta.” – Evgeniya Gross.</p><p><b>Del 2. Vi står under gudarnas beskydd.</b> Flickan, Nadya, vänder sig till gudarna för hjälp och skydd. Genom en ande som mellanhand räcker hon fram en kvist röd olvon (kalyna), och gudarna, som tar emot gåvan, flätar en skyddskrans och skänker den åt henne. Berättelsen uttrycker att det ukrainska folket beskyddas av högre makter och sitt uråldriga arv – och därför är oövervinnligt.</p><p><b>Evgenija Gross</b> är en ukrainsk konstnär, designer och animatör. Hon har studerat vid Institutet för modedesign i Kyiv och arbetat på filmstudion Novator som animatör, scenograf och produktionsdesigner samt deltagit i karaktärsutveckling. Sedan 2022 bor hon i Finland och studerar nu vid Stadin AO i Helsingfors.</p><p>Verket visas projicerat på Annegårdens vägg 6–11.1.2026.</p><p>Annegården är öppen<br>6.1 kl. 17–22<br>7.1 kl. 8–22<br>8.1 kl. 8–22<br>9.1 kl. 8–22<br>10.1 kl. 10–22<br>11.1 kl. 17–22</p>",
                "en": "<p>Evgenija Gross’s works are narrative animations that appeal to the whole family.</p><p><b>Part 1. Path / road.</b> When your familiar world collapses and life shifts its course, you must choose a new path, a new road. Trusting the flow of fate, sailing without resistance is wiser when your compass is the heart.</p><p>“I followed my heart to Finland, and I was not mistaken. Here I found a new home and a new beginning. I dedicate my video to the Finnish people for helping and supporting Ukrainians in difficult times. You are forever in my heart.\" - Evgeniya Gross.</p><p><b>Part 2. We are under the protection of the Gods.</b> The girl, Nadya, turns to the gods for help and protection. Through a spirit-intermediary, she offers a branch of red viburnum, and the gods, accepting her gift, weave it into a protective wreath, which they bestow upon her. This story conveys that the Ukrainian people are safeguarded by higher powers and by their ancient lineage and are therefore invincible.</p><p><b>Evgeniya Gross</b> is a Ukrainian artist, designer, and animator. She studied at the Institute of Fashion Design in Kyiv and worked at the Novator film studio as an animator, set designer, and production designer, also contributing to character development. Since 2022 she has lived in Finland and is currently studying at Stadin AO in Helsinki.</p><p>The artwork will be displayed projected onto the wall of Annantalo from 6 to 11 January 2026.</p><p>Annantalo is open<br>6 Jan 5–10 pm<br>7 Jan 8 am–10 pm<br>8 Jan 8 am–10 pm<br>9 Jan 8 am–10 pm<br>10 Jan 10 am–10 pm<br>11 Jan 5–10 pm</p>"
            },
            "name": {
                "fi": "Evgenija Gross (UA) – Path / road – We are under the protection of the Gods – LUX Helsinki",
                "sv": "Evgenija Gross (UA) – Path / road – We are under the protection of the Gods – LUX Helsinki",
                "en": "Evgenija Gross (UA) – Path / road – We are under the protection of the Gods – LUX Helsinki"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67750/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67731",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494071,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:51.557722Z",
                    "last_modified_time": "2025-12-04T13:12:51.557737Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782657.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494071/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-04T13:12:51.452946Z",
            "last_modified_time": "2025-12-09T07:13:37.444275Z",
            "date_published": null,
            "start_time": "2025-12-21T12:00:00Z",
            "end_time": "2025-12-21T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan talvipäivänseisausta Stoaan yhdessä perheen ja ystävien kanssa! Ohjelmassa on musiikkia, myyntipisteitä ja perinteistä askartelua.",
                "sv": "Välkommen att fira vintersolståndet på Stoa tillsammans med din familj och dina vänner! Programmet består av musik, försäljningsstånd och traditionella pyssel.",
                "en": "Come celebrate the winter solstice with family and friends at Cultural Centre Stoa! The celebration will feature music, sales stalls and traditional crafts."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/030067D85A07D3FB203DFCA9EDB32F8B/Yalda_Vuoden_pisimman_yon_juhla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/030067D85A07D3FB203DFCA9EDB32F8B/Yalda_Fest_for_arets_langsta_natt",
                "en": "http://www.stoa.fi/en/events/event/030067D85A07D3FB203DFCA9EDB32F8B/Yalda_Celebration_of_the_longest_night_of_the_year"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan talvipäivänseisausta Stoaan yhdessä perheen ja ystävien kanssa! Ohjelmassa on musiikkia, myyntipisteitä ja perinteistä askartelua.</p><p><b>Musiikkiesitys klo 15.30–16.15</b><br>Lavalla esiintyy Ghatre, nelihenkinen yhtye, joka yhdistää Lähi-idän musiikkiperinteet ja modernit sävyt energisellä ja tunnelmallisella otteella.</p><p>Yhtyeen kokoonpano:<br>•\tGian Majidi – laulu<br>•\tMarouf Majidi – tar ja tanbour<br>•\tKhashayar Eshkevari – kamancheh<br>•\tAhoora Mahnone – perkussiot</p><p><b>Ohjelmaa iltapäivän ajan</b><br>Stoan aulassa ja ravintolassa voit tutustua ruoka- ja korumyyntipisteisiin sekä askarrella perinteisiä Yalda-lahjoja omenasta ja neilikasta.</p><p><b>Mikä on Yalda?</b><br>Yalda-yö on talvipäivänseisauksen aikaan vietettävä juhla, jolloin kokoonnutaan yhteen nauttimaan ruoasta, juomasta ja runoudesta. Juhlaan kuuluvat granaattiomenat, vesimelonit ja pähkinät, jotka symboloivat aamunkoittoa ja elämän lämpöä.<br>Yaldaa vietetään useissa maissa, kuten Iranissa, Kurdistanissa, Afganistanissa, Tadžikistanissa, Azerbaidžanissa ja Turkissa.</p><p>Vapaa pääsy</p><p>Järjestäjät: Stoan kulttuuripalvelut ja Itäkeskuksen kirjasto.</p>",
                "sv": "<p>Välkommen att fira vintersolståndet på Stoa tillsammans med din familj och dina vänner! Programmet består av musik, försäljningsstånd och traditionella pyssel.</p><p><b>Musikuppträdande kl. 15.30–16.15</b>\t<br>Ghatre, en kvartett som förenar musiktraditioner från Mellanöstern och moderna toner med ett energiskt och stämningsfullt grepp, uppträder på scenen.</p><p>Bandets sammansättning:<br>•\tGian Majidi – sång<br>•\tMarouf Majidi – tar och tanbour<br>•\tKhashayar Eshkevari – kamancheh<br>•\tAhoora Mahnone – perkussion</p><p><b>Program under eftermiddagen</b><br>I Stoas entré och restaurang kan du utforska mat- och smyckesförsäljningsstånden och pyssla traditionella Yalda-gåvor av äppel och kryddnejlika.</p><p><b>Vad är Yalda?</b><br>Yalda-natten är en fest under vintersolståndet då man samlas för att njuta av mat, dryck och poesi. Granatäppel, vattenmeloner och nötter som symboliserar gryning och livsvärme tillhör festen.<br>Yalda firas i flera länder, bland annat i Iran, Kurdistan, Afghanistan, Tadzjikistan, Azerbajdzjan och Turkiet.</p><p>Fritt inträde</p><p>Arrangörer: Stoas kulturtjänster och Östra centrums bibliotek.</p>",
                "en": "<p>Come celebrate the winter solstice with family and friends at Cultural Centre Stoa! The celebration will feature music, sales stalls and traditional crafts.</p><p><b>Musical performance at 15.30–16.15</b>\t<br>Featuring Ghatre, a four-person band that combines Middle Eastern musical traditions and modern tones with an energetic and atmospheric approach.</p><p>Line-up:<br>•\tGian Majidi – vocals<br>•\tMarouf Majidi – tar and tanbour<br>•\tKhashayar Eshkevari – kamancheh<br>•\tAhoora Mahnone – percussion</p><p><b>Afternoon programme</b><br>In the Stoa lobby and restaurant, visitors can explore food and jewellery stalls and make traditional Yalda gifts from apples and carnations.</p><p><b>What is Yalda?</b><br>Yalda Night is a celebration of the winter solstice, bringing people together to enjoy food, drink and poetry. Foods associated with the celebration include pomegranates, watermelons and nuts, which symbolise dawn and the warmth of life.<br>Yalda is celebrated in several countries, including Iran, Kurdistan, Afghanistan, Tajikistan, Azerbaijan and Turkey.</p><p>Free entry</p><p>Organisers: Stoa Cultural Services and Itäkeskus Library</p>"
            },
            "name": {
                "fi": "Yalda – Vuoden pisimmän yön juhla",
                "sv": "Yalda – Fest för årets längsta natt",
                "en": "Yalda – Celebration of the longest night of the year"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67731/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67761",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "sv": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "en": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494144,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-09T07:13:33.982762Z",
                    "last_modified_time": "2025-12-09T07:13:33.982778Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782720.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494144/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-09T07:13:33.827273Z",
            "last_modified_time": "2025-12-09T07:13:34.199681Z",
            "date_published": null,
            "start_time": "2025-12-12T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Koska Lucia-päivä on tänä vuonna lauantaina, Rastis-Lucia vierailee jo perjantaina 12.12. klo 10 Vuotalossa.",
                "sv": "Eftersom Lucia-dagen i år blir på en lördag, får vi redan fredagen den 12.12 kl. 10 besök av Rastis-Lucian i Nordhuset."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BC54DFF0692809B3E2B7623CBE80EE50/Rastis_Lucia_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BC54DFF0692809B3E2B7623CBE80EE50/Rastis_Lucia",
                "en": "http://www.vuotalo.fi/en/events/event/BC54DFF0692809B3E2B7623CBE80EE50/Rastis_Lucia_"
            },
            "description": {
                "fi": "<p>Koska Lucia-päivä on tänä vuonna lauantaina, Rastis-Lucia vierailee jo perjantaina 12.12. klo 10 Vuotalossa.</p><p>Vuosaaren ruotsinkielisen ala-asteen eli Nordsjö lågstadieskolanin kolmannen luokan oppilaat esiintyvät Lucia-kulkueensa kanssa Vuotalon rapussa ja aulassa. Esitys kestää n. varttitunnin.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Eftersom Lucia-dagen i år blir på en lördag, får vi redan fredagen den 12.12 kl. 10 besök av Rastis-Lucian i Nordhuset.</p><p>Det är eleverna i årskurs 3 från Nordsjö lågstadieskola som uppträder med sitt Lucia-följe i Nordhusets trappa och aula. Uppvisningen tar ca en kvart.</p><p>Fri entré.</p>"
            },
            "name": {
                "fi": "Rastis Lucia",
                "sv": "Rastis Lucia",
                "en": "Rastis Lucia"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67761/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66302",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1211035,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-08T12:12:48.122018Z",
                    "last_modified_time": "2025-07-08T12:12:48.122031Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773298.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1211035/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-08T12:12:48.061691Z",
            "last_modified_time": "2025-12-08T14:13:33.260530Z",
            "date_published": null,
            "start_time": "2025-12-12T14:30:00Z",
            "end_time": "2025-12-12T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!",
                "sv": "Det enormt populära discoevenemanget för hela familjen, AnnanHouse, övertar Annegården igen!",
                "en": "The highly popular AnnanHouse disco event for the whole family will once again take over Annantalo!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/22F9F18E3047E80AFC48921D87884806/AnnanHouse_Disko_Huurre_ja_jaa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/22F9F18E3047E80AFC48921D87884806/AnnanHouse_Disco_Rimfrost_och_is",
                "en": "http://www.annantalo.fi/en/events/event/22F9F18E3047E80AFC48921D87884806/AnnanHouse_Disco_Frost_and_ice"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!</p><p>AnnanHouse on elektronisen tanssimusiikin erikoistapahtuma, joka tutustuttaa kävijät diskokulttuurin maailmaan. Tämänkertaisen diskon teemana on huurre ja jää. Tule näyttämään viileimmät tanssiliikkeesi ja jäätävän upeat askelkuviosi. Voit pukeutua teeman mukaisella tyylillä tai hakea Annantalon pukulainaamosta sopivan asun diskoiltaan.</p><p>Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit myös hypätä tanssituokioihin, piipahtaa avoimissa teemaan sopivissa taidetyöpajoissa ja tavata Lumikuningatar ja Jääprinsessa.</p><p><b>Aikataulu</b><br> klo 16.30  Pukulainaamo KUURA aukeaa ja työpajat käynnistyvät.<br> klo 16.30-18.30 Lumikuningattaren ja Jääprinsessan meet&greet<br> klo 17.00 Diskon ovet aukeavat.<br> klo 17.15 ja 18.45 Fiona Fiouh’n (lausutaan Fiuun) tanssituokio ja muut diskohahmot mukana<br> klo 19.30 Diskon ovet sulkeutuvat ja työpajat päättyvät<br> Diskoillan päätteeksi Lumiukko johdattelee diskokansan Annantalon etupihalle</p><p>Työpajat klo 16.30–19.30:</p><p>Talvinen taikasauva <br> Taikasauvatyöpajassa voit tehdä ja koristella juuri sinun taikoihisi sopivan taikasauvan. Millainen taikasauva sinua kutsuu? Onko se lumisen kimalteleva, hopeisen häkäisevä, jäätävän upea vai talviyön tummien taikojen loihtija? Ilmassa on taikaa – tervetuloa!<br> Työpajan toteuttavat Annantalon taidekasvattajat</p><p>Lumipalloilua-aistileikkitila  <br> Talvi tupsahti leikkitilaan! Pujahda lumenvalkoiseen majaan, kurkkaa mitä löytyy lumipallon sisältä, tunnustele, pyörittele ja oleile. Vai istahdatko kesäkeitaaseen värikkäiden pallojen keskelle?<br> Lumipalloilua-tila johdattaa pikkuväen talventuntuiseen tunnelmaan. Majojen ja pallojen lomassa saa lokoilla ja lököillä, tutkia aistikoreja tai ottaa hetken levähdysleikin.<br> Aistileikkitilan inspirointi ja toteutus: Runoropinoita eli Ulla-Maija Vanhala<br> <br>Savimaalaustyöpaja  <br> Tule kokeilemaan maalaamista saviväreillä. Voit maalata oman kortin tai jättää talviterveisesi yhteiseen teokseen. Savimaalit ovat luonnonmukaisia ja myrkyttömiä. Työpajan toteuttaa Savimestari Suveka Kymäläinen<br> <br>Disco-tontun kierrätyskorutyöpaja <br>Tule valmistamaan riemukkaan iloisen Disco-tontun vaatteeseen kiinnitettävä asuste kierrätysmateriaaleista. Valmistamasi pukukorun voit kiinnittää vaatteeseesi ja näin voit säkenöidä tanssin pyörteissä nyt ja läpi talven. Korutyöpajan toteuttaa Marja Koskela<br> <br>Säihkyvät kasvoglitterit <br>Tule hakemaan talven pimeyteen kimallusta! Pyydä itsellesi värikäs ja säihkyvä glittermeikki tai kimmeltävä glittertatuointi. Kimalluksen kasvoillesi loihtii Glitternistit. Kaikki säihke syntyy ekoglitterillä.</p><p>Lumikuningattaren ja jääprinsessan Meet&Greet <br>Tule tapaamaan saduista tutut jään kuninkaalliset ikimuistoisessa tapaamisessa klo 16.30-18.30. Saat tapaamisesta muistoksi kortin nimikirjoituksilla.</p><p>Viimeiset osallistujat otetaan sisään työpajoihin klo 19.15.<br>  <br>Vapaa pääsy, ei ennakkoilmoittautumista.  <br> <br>Diskossa käytetään teatterisavua ja vilkkuvia valoja. Tarjolla on kuulosuojaimia.</p><p>Työpajat ohjataan pääosin suomeksi ja englanniksi. Kaikki ovat tervetulleita kielestä ja kielitaidosta riippumatta. <br> <br>Nähdään tanssilattialla!</p>",
                "sv": "<p>Det enormt populära discoevenemanget för hela familjen, AnnanHouse, övertar Annegården igen!</p><p>AnnanHouse är ett speciellt evenemang med elektronisk dansmusik där besökarna får bekanta sig med discokulturens värld.</p><p>Temat för detta disco är Rimfrost och is. Kom och visa oss dina häftigaste danssteg och supercoola stegsekvenser. Du kan klä dig enligt tema eller söka en till discokvällen lämplig klädsel från Annegårdens kostymutlåning.</p><p>För musiken står Annegårdens egen dj Nicolas Sebastien, som bjuder på allt från house till disco. Under discokvällen kan du också delta i dansstunder, besöka öppna konstworkshoppar som passar temat och delta i en utställningsguidning. Under discokvällen kan du också dansa, ta del av öppna konstverkstäder som passar till temat och träffa Snödrottningen och Isprinsessan.</p><p><b>Tidtabell</b><br> kl. 16.30 Kostymutlåningen KUURA öppnar och verkstäderna drar igång.<br> kl. 16.30–18.30 Meet & Greet med Snödrottningen och Isprinsessan<br> kl. 17.00 Discot öppnar sina dörrar.<br> kl. 17.15 och 18.45 Dans med Fiona Fiouh (utalas Fiuu) och andra discokaraktärer<br> kl. 19.30 Discot stänger sina dörrar och verkstäderna avslutas<br> Som avslutning på discokvällen leder Snögubben discofolket ut på Annegårdens gård</p><p><b>Verkstäder kl. 16.30–19.30:</b><br> De sista deltagarna tas emot till verkstäderna kl. 19.15.<br><b>Vintrig trollstav</b> <br> I trollstavsverkstaden kan du göra och dekorera en trollstav som passar till just din magi. Hurdan trollstav kallar på dig? Glittrar den av snö, skimrar den av silver, är den isigt vacker eller skapar den mörk vinternattsmagi? Det är något magiskt i luften – välkommen!<br> Verkstaden leds av Annegårdens konstpedagoger</p><p><b>Snöbolls- och sinneslekplats</b> <br> Vintern har kommit till lekrummet! Här kan du slinka in i en snövit hydda, kolla vad som finns inne i snöbollen, känna, rulla och bara vara. Eller kanske du vill slå dig ner i en sommaroas bland färgglada bollar?<br> Snöbollsrummet bjuder på vinterstämning för de minsta. Bland kojorna och bollarna kan man ha skoj, utforska sinneskorgar och ta en vilopaus.<br> Inspiration och förverkligande av sinneslekrummet: Runoropinoita, alltså Ulla-Maija Vanhala<br> <br><b>Lermålningsverkstad</b><br> Kom och prova på att måla med lerfärger. Du kan måla ett eget kort eller lämna en vinterhälsning på ett gemensamt verk. Lerfärgerna är naturliga och giftfria. Verkstaden leds av lermästaren Suveka Kymäläinen<br> <br><b>Discotomtens verkstad för återvunna smycken</b> <br> Kom med och gör en accessoar till den glada Discotomtens kläder av återvunnet material. Du kan fästa dräktsmycket som du gjort vid dina kläder och glittra i dansens virvlar nu och hela vintern. Smyckesverkstaden leds av Marja Koskela<br> <br><b>Tindrande ansiktsglitter</b> <br> Kom med och glittra i vintermörkret! Du kan få en färgglad och gnistrande glittersminkning eller en skimrande glittertatuering. Glitternistit får dig att glittra. Allt glitter som används är ekoglitter.</p><p><b>Meet & Greet med Snödrottningen och Isprinsessan</b><br> Kom och träffa sagornas vinterkungligheter vid ett oförglömligt evenemang kl. 16.30–18.30. Du får ett signerat kort som minne av mötet.</p><p>Fritt inträde, ingen förhandsanmälan krävs. <br> <br>På discot används teaterrök och blinkande lampor. Hörselskydd finns tillgängliga. Workshopparna hålls huvudsakligen på finska och engelska. Alla är välkomna, oavsett språk och språkkunskaper. <br> <br>Vi ses på dansgolvet!</p>",
                "en": "<p>The highly popular AnnanHouse disco event for the whole family will once again take over Annantalo!</p><p>AnnanHouse is a special electronic dance music event that introduces visitors to the world of disco culture. The theme of this year's disco is frost and ice (huurre ja jää). Come and show off your coolest dance moves and frostiest steps. You can dress in the style of the theme or pick up an outfit from Annantalo's wardrobe for the disco party.</p><p>Annantalo’s own DJ Nicolas Sebastien will be in charge of the music, spinning top records from house to disco. During the night, you can join dance sessions, pop by open art workshops in the theme of the event and take guided tours of the exhibition.</p><p>During the disco night, you can join dance sessions, pop by open art workshops matching the theme of the event and meet the Snow Queen and Ice Princess.</p><p><b>Schedule</b><br> 16.30 Pukulainaamo KUURA for borrowing outfits is opened and the workshops start.<br> 16.30–18.30 Meet & greet with the Snow Queen and Ice Princess.<br> 17.00 The doors to the disco are opened.<br> 17.15 and 18.45 Dance session with Fiona Fiouh (pronounced Feou) and other disco characters.<br> 19.30 The disco closes and the workshops end.<br> At the end of the disco night, the Snowman will lead the disco crowd to the front yard of Annantalo.</p><p><b>Workshops 16.30–19.30:</b><br> Last entry to the workshops is at 19.15.<br><b>Winter magic wand</b> <br> In the magic wand workshop, you can make and decorate a magic wand that suits your magic. What kind of magic wand is calling out to you? Does it have a snowy sparkle, a silver glow or an icy beauty, or does it conjure up the dark magic of winter nights? There is magic in the air – join us!<br> The workshop is organised by Annantalo’s art educators.</p><p><b>Snowball sensory playground</b> <br> Winter has arrived at the playground! Slip into a snow-white hut, see what is inside a snowball, feel around, roll balls, and hang out. Or will you sit down in the summer oasis, among colourful balls?<br> The Snowball playground allows children to immerse themselves in a wintery atmosphere. Children can lay down and relax among the huts and balls, explore the sensory boxes, or take a moment to rest.<br> The sensory playground is inspired and organised by Runoropinoita, i.e. Ulla-Maija Vanhala.<br> <br><b>Clay painting workshop</b><br> Come and try painting with clay colours. You can paint your own card or leave your winter greetings in a collective work. The clay paints are natural and non-toxic. The workshop is organised by master clay artist Suveka Kymäläinen.<br> <br><b>A disco elf’s upcycled jewellery workshop</b> <br> Come and make an accessory from recycled materials for the outfit of a cheerful disco elf. You can attach the piece of costume jewellery you make to your clothes and shine away when dancing now and through the winter. The jewellery workshop is organised by Marja Koskela.<br> <br><b>Sparkly face glitter</b> <br> Come and find sparkle in the winter darkness! Ask for colourful and sparkly glitter make-up or a glistening glitter tattoo. Glitter service Glitternistit will make the sparkly magic happen. All of the glitter used is eco-friendly.</p><p><b>Meet & greet with the Snow Queen and Ice Princess </b><br> Come and meet the royalty of the ice from fairy tales at an unforgettable meet & greet session from 16.30 to 18.30. You will receive an autographed card as a memento.</p><p>Free entry, no advance registration. <br> <br>The disco will feature fog machines and flashing lights. Ear defenders will be available. The workshops will mostly be held in Finnish and English. Everyone is welcome, regardless of language and language skills. <br> <br>See you on the dance floor!</p>"
            },
            "name": {
                "fi": "AnnanHouse Disko: Huurre ja jää",
                "sv": "AnnanHouse Disco: Rimfrost och is",
                "en": "AnnanHouse Disco: Frost and ice"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66302/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67323",
            "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: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: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494135,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T13:13:55.195196Z",
                    "last_modified_time": "2025-12-08T13:13:55.195211Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780961.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494135/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T13:13:55.081261Z",
            "last_modified_time": "2025-12-08T13:13:55.333633Z",
            "date_published": null,
            "start_time": "2026-01-10T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01920257D12CC9C7B29DAAEC69B0D5AE/Supermarsu_ja_suuri_huijaus_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/01920257D12CC9C7B29DAAEC69B0D5AE/Supermarsu_ja_suuri_huijaus_S_",
                "en": "http://www.malmitalo.fi/en/events/event/01920257D12CC9C7B29DAAEC69B0D5AE/Supermarsu_ja_suuri_huijaus_S_"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Supermarsu ja suuri huijaus (S) – Kino Helios",
                "sv": "Supermarsu ja suuri huijaus (S) – Kino Helios",
                "en": "Supermarsu ja suuri huijaus (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67323/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67317",
            "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: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: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494134,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T13:13:54.424744Z",
                    "last_modified_time": "2025-12-08T13:13:54.424765Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780952.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494134/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T13:13:54.319108Z",
            "last_modified_time": "2025-12-08T13:13:54.558632Z",
            "date_published": null,
            "start_time": "2026-01-03T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F11344D54910D8FCA32C6BF303C7E613/Supermarsu_ja_suuri_huijaus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F11344D54910D8FCA32C6BF303C7E613/Supermarsu_ja_suuri_huijaus",
                "en": "http://www.malmitalo.fi/en/events/event/F11344D54910D8FCA32C6BF303C7E613/Supermarsu_ja_suuri_huijaus"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Supermarsu ja suuri huijaus – Kino Helios",
                "sv": "Supermarsu ja suuri huijaus – Kino Helios",
                "en": "Supermarsu ja suuri huijaus – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67317/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67310",
            "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: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: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494133,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T13:13:54.029400Z",
                    "last_modified_time": "2025-12-08T13:13:54.029413Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780921.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494133/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T13:13:53.877908Z",
            "last_modified_time": "2025-12-08T13:13:54.190422Z",
            "date_published": null,
            "start_time": "2026-01-02T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FDEE7839771FE50ACC9DCA6BE167512F/Supermarsu_ja_suuri_huijaus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FDEE7839771FE50ACC9DCA6BE167512F/Supermarsu_ja_suuri_huijaus",
                "en": "http://www.malmitalo.fi/en/events/event/FDEE7839771FE50ACC9DCA6BE167512F/Supermarsu_ja_suuri_huijaus"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Supermarsu ja suuri huijaus – Kino Helios",
                "sv": "Supermarsu ja suuri huijaus – Kino Helios",
                "en": "Supermarsu ja suuri huijaus – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67310/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:6c5ec27a-acc4-4b3d-a9a8-f8cc07e6a23b",
            "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/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Mirkka_testi_8124219197441"
                    },
                    "description": {
                        "fi": "lapset 6€ oman haravan kanssa"
                    },
                    "price": {
                        "fi": "lapset 6€/aikuiset 10€"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1494132,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-08T12:55:57.748510Z",
                    "last_modified_time": "2025-12-08T12:55:57.748535Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/f007fd2d-96bf-f011-bbd3-7ced8d7302b4",
                    "name": "tervetuloa",
                    "cropping": "",
                    "photographer_name": "Mirkka Saari",
                    "alt_text": "kuvassa tie ja aurinko",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494132/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-08T12:55:59.745541Z",
            "last_modified_time": "2025-12-08T12:55:59.745581Z",
            "date_published": "2025-12-08T12:45:11Z",
            "start_time": "2025-12-22T08:00:00Z",
            "end_time": "2025-12-23T14: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-12-15T08:00:00+02:00",
            "enrolment_end_time": "2025-12-22T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Haravointia kaikille"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Haravointia kaikille osallistuville</p></div>"
            },
            "name": {
                "fi": "Mirkka testi 8.12."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sitratori"
            },
            "provider": {
                "fi": "Kanneltalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6c5ec27a-acc4-4b3d-a9a8-f8cc07e6a23b/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67320",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494127,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T11:13:53.838943Z",
                    "last_modified_time": "2025-12-08T11:13:53.838963Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780956.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494127/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T11:13:53.718687Z",
            "last_modified_time": "2025-12-08T11:13:53.986242Z",
            "date_published": null,
            "start_time": "2026-01-07T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/852F29AF767348A1058536C323ABE814/Roofman_Kattokeikkailija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/852F29AF767348A1058536C323ABE814/Roofman_Kattokeikkailija_12_",
                "en": "http://www.malmitalo.fi/en/events/event/852F29AF767348A1058536C323ABE814/Roofman_Kattokeikkailija_12_"
            },
            "description": {
                "fi": "<p>Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan.</p><p>Vankilasta paennut entinen sotilas ja ammattivaras Jeffrey löytää piilopaikan lelukaupan sisältä ja onnistuu elämään siellä kuukausien ajan kenenkään huomaamatta – samalla tehden murtokeikkoja kattojen kautta.</p><p>Huolellisesti rakennettu kaksoiselämä alkaa kuitenkin rakoilla, kun hän rakastuu Leighin (Kirsten Dunst). Alkaa jännittävä takaa-ajo ja menneisyyden tapahtumat saavat Jeffreyn kiinni. Elokuvan on ohjannut Derek Cianfrance (Blue Valentine, The Place Beyond The Pines, Sound of Metal).</p><p>Ikäraja: 12<br>Kesto: 125 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "sv": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "en": "Roofman – Kattokeikkailija (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67320/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67748",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494125,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T10:13:06.753589Z",
                    "last_modified_time": "2025-12-08T10:13:06.753603Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777315.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494125/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T10:13:06.673192Z",
            "last_modified_time": "2025-12-08T10:13:06.864893Z",
            "date_published": null,
            "start_time": "2025-12-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/80C5EEF5E658A609580674FAD251C8A6/Roofman_Kattokeikkailija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/80C5EEF5E658A609580674FAD251C8A6/Roofman_Kattokeikkailija_12_",
                "en": "http://www.malmitalo.fi/en/events/event/80C5EEF5E658A609580674FAD251C8A6/Roofman_Kattokeikkailija_12_"
            },
            "description": {
                "fi": "<p>Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan.</p><p>Vankilasta paennut entinen sotilas ja ammattivaras Jeffrey löytää piilopaikan lelukaupan sisältä ja onnistuu elämään siellä kuukausien ajan kenenkään huomaamatta – samalla tehden murtokeikkoja kattojen kautta.</p><p>Huolellisesti rakennettu kaksoiselämä alkaa kuitenkin rakoilla, kun hän rakastuu Leighin (Kirsten Dunst). Alkaa jännittävä takaa-ajo ja menneisyyden tapahtumat saavat Jeffreyn kiinni. Elokuvan on ohjannut Derek Cianfrance (Blue Valentine, The Place Beyond The Pines, Sound of Metal).</p><p>Ikäraja: 12<br>Kesto: 125 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "sv": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "en": "Roofman – Kattokeikkailija (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67748/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67747",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-roofman-kattokeikkailija-4048009/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494124,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T10:13:06.204622Z",
                    "last_modified_time": "2025-12-08T10:13:06.204638Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777351.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494124/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T10:13:06.071893Z",
            "last_modified_time": "2025-12-08T10:13:06.352181Z",
            "date_published": null,
            "start_time": "2025-12-17T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EECF32F35AFF3C1EEB0DA07E43C57B3D/Roofman_Kattokeikkailija_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EECF32F35AFF3C1EEB0DA07E43C57B3D/Roofman_Kattokeikkailija_12_",
                "en": "http://www.malmitalo.fi/en/events/event/EECF32F35AFF3C1EEB0DA07E43C57B3D/Roofman_Kattokeikkailija_12_"
            },
            "description": {
                "fi": "<p>Channing Tatumin tähdittämä draamakomedia Roofman - Kattokeikkailija perustuu uskomattomaan tositarinaan vankikarkuri Jeffrey Manchesterista ja hänen villistä pakomatkastaan.</p><p>Vankilasta paennut entinen sotilas ja ammattivaras Jeffrey löytää piilopaikan lelukaupan sisältä ja onnistuu elämään siellä kuukausien ajan kenenkään huomaamatta – samalla tehden murtokeikkoja kattojen kautta.</p><p>Huolellisesti rakennettu kaksoiselämä alkaa kuitenkin rakoilla, kun hän rakastuu Leighin (Kirsten Dunst). Alkaa jännittävä takaa-ajo ja menneisyyden tapahtumat saavat Jeffreyn kiinni. Elokuvan on ohjannut Derek Cianfrance (Blue Valentine, The Place Beyond The Pines, Sound of Metal).</p><p>Ikäraja: 12<br>Kesto: 125 min<br>Ensi-ilta: 28.11.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "sv": "Roofman – Kattokeikkailija (12) – Kino Helios",
                "en": "Roofman – Kattokeikkailija (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67747/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67746",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494122,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:46.708524Z",
                    "last_modified_time": "2025-12-08T09:13:46.708540Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777387.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494122/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:46.588107Z",
            "last_modified_time": "2025-12-08T09:13:46.862092Z",
            "date_published": null,
            "start_time": "2025-12-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D10188CBE6E4CDB2196164CB200EC4BF/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D10188CBE6E4CDB2196164CB200EC4BF/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/D10188CBE6E4CDB2196164CB200EC4BF/Sydantalvi_16_"
            },
            "description": {
                "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67746/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67745",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494121,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:46.087771Z",
                    "last_modified_time": "2025-12-08T09:13:46.087787Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777384.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:45.975471Z",
            "last_modified_time": "2025-12-08T09:13:46.241181Z",
            "date_published": null,
            "start_time": "2025-12-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/96289EAC5B0CF80BE99D19BD1B251DA0/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/96289EAC5B0CF80BE99D19BD1B251DA0/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/96289EAC5B0CF80BE99D19BD1B251DA0/Sydantalvi_16_"
            },
            "description": {
                "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67745/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67743",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-springsteen-deliver-me-from-nowhere-4048010/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494120,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:45.519673Z",
                    "last_modified_time": "2025-12-08T09:13:45.519688Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777314.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494120/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:45.394229Z",
            "last_modified_time": "2025-12-08T09:13:45.687282Z",
            "date_published": null,
            "start_time": "2025-12-19T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_",
                "en": "http://www.malmitalo.fi/en/events/event/77F5B9DD976F17DA07A74374FBB1F896/Springsteen_Deliver_Me_from_Nowhere_12_"
            },
            "description": {
                "fi": "<p>Elokuva kertoo Bruce Springsteenin vuoden 1982 Nebraska-albumin tekemisestä aikana, jolloin Springsteen oli vielä menestyspaineiden ja menneisyyden haamujen kanssa painiskeleva nuori muusikko, joka sinnitteli maailmanlaajuisen supertähteyden kynnyksellä.</p><p>Springsteenin asunnon makuuhuoneessa New Jerseyssä neliraitanauhurilla äänitetty albumi merkitsi käännekohtaa hänen elämässään, ja sitä pidetään edelleen yhtenä Springsteenin ajattomimmista teoksista — se on karu ja tunnelmaltaan aavemainen akustinen levy, jolla kadonneet sielut etsivät syytä uskoa tulevaan.</p><p>Ikäraja: 12<br>Kesto: 120 min<br>Ensi-ilta: 31.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios",
                "sv": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios",
                "en": "Springsteen: Deliver Me from Nowhere (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67743/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67744",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sydaentalvi-4048008/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494119,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T09:13:44.497961Z",
                    "last_modified_time": "2025-12-08T09:13:44.497979Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777350.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494119/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T09:13:44.351520Z",
            "last_modified_time": "2025-12-08T09:13:44.670396Z",
            "date_published": null,
            "start_time": "2025-12-17T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_",
                "en": "http://www.malmitalo.fi/en/events/event/800F9018D6E5348D2A2C37FB2573AAE9/Sydantalvi_16_"
            },
            "description": {
                "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Sydäntalvi (16) – Kino Helios",
                "sv": "Sydäntalvi (16) – Kino Helios",
                "en": "Sydäntalvi (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67744/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67695",
            "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:105/?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: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:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/",
                        "sv": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/",
                        "en": "https://www.lippu.fi/event/kino-helios-tonttu-malmitalo-21042837/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T08:13:00.663134Z",
                    "last_modified_time": "2025-12-08T08:13:00.663164Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777386.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494116/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-08T08:13:00.564607Z",
            "last_modified_time": "2025-12-08T08:13:00.821056Z",
            "date_published": null,
            "start_time": "2025-12-27T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_",
                "en": "http://www.malmitalo.fi/en/events/event/B71B1431628262F1A63D0C486965139F/Kino_Helios_Tonttu_7_"
            },
            "description": {
                "fi": "<p>Taianomainen koko perheen jouluseikkailu Tonttu on lämmin tarina ystävyydestä, rohkeudesta ja mielikuvituksen voimasta.</p><p>Lumi ja Talvi ovat olleet erottamattomat koko elämänsä ajan, kunnes kohtalo yllättäen ajaa heidät erilleen. Lumi päätyy taianomaiseen tonttumaahan, jossa tontut valmistavat joululahjat kaikille maailman lapsille. Alkaa seikkailu, joka vaatii rohkeutta, luottamusta ja kekseliäisyyttä. Tontut ovat aluksi epäluuloisia tyhjästä tupsahtavaa ihmislasta kohtaan, mutta tonttulapsi Pyry ottaa Lumin mielenkiinnolla vastaan. Pyry on kiinnostunut uusista seikkailuista ja ystävyys Lumin kanssa näyttää mahdollisuudelta jännittävään matkaan. Talvinen retki tonttujen taianomaisessa maailmassa on täynnä yllätyksiä ja joulun ihmeitä.</p><p>Joonas Berghäll ja Hannes Vartiainen ovat ohjanneet Tonttu-elokuvan, jota on kuvattu Kemin Lumilinnassa, Levillä, Rovaniemellä ja Helsingissä. Elokuvan lapsirooleissa nähdään Soma Zimmatore, Thea Achillea ja Marco Stylianou. Muissa rooleissa nähdään huippuammattilaisia kuten Sara Melleri, Jarkko Niemi, Alma Pöysti, Eero Milonoff, Kati Outinen ja Vesa Vierikko. Mukana myös Tonttu-maailman vartijoina tubettaja, artisti Seksikäs-Suklaa ja artisti Musta Barbaari. Sivurooleissa nähdään myös vaikuttajat Viivi ja Venla.</p><p>Robin Packalen julkaisee suomalaisen Tonttu-elokuvan tunnuskappaleen Piece by Piece keskiviikkona 12.11. Se on yhteisjulkaisu ruotsalaisartisti Clara Maen kanssa. Kappale on tehty suomalaisvoimin – Packalenin mukana kappaletta ovat olleet tekemässä ILON, Camu Creutz sekä Elias Hjelm.</p><p>Ikäraja: 7<br>Kesto: 81 min<br>Ensi-ilta: 14.11.2025<br>Kieli: puhuttu suomeksi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kino Helios: Tonttu (7)",
                "sv": "Kino Helios: Tonttu (7)",
                "en": "Kino Helios: Tonttu (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67695/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67152",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4002880",
                        "sv": "https://www.lippu.fi/eventseries/name-4002880"
                    },
                    "description": null,
                    "price": {
                        "fi": "42,50-48,50 €",
                        "sv": "42,50-48,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491096,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-14T13:14:09.264934Z",
                    "last_modified_time": "2025-10-14T13:14:09.264949Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764215.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491096/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-14T13:14:09.079961Z",
            "last_modified_time": "2025-12-07T15:12:47.756112Z",
            "date_published": null,
            "start_time": "2025-12-17T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa",
                "sv": "Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B35DD67939FB3743F686DC3E3BE48B89/Christmas_Comedy_-_Den_Stora_Humorkvallen",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B35DD67939FB3743F686DC3E3BE48B89/Christmas_Comedy_-_Den_Stora_Humorkvallen"
            },
            "description": {
                "fi": "<p>Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa</p><p><b>Svenskfinlands största humorklubb återvänder till Helsingfors med stjärnkomiker både från Sverige och Finland! <br>I höst har det gått 10 år sedan den ambulerande humor & stand up-klubben <i>HumorHuset</i> drog i väg på sin allra första turné, då med både Magnus Betnér och Janne Grönroos i spetsen, och har under åren besökt Helsingfors många gånger. 10 år firas med en kanonkväll på Savoy teatern. Kvällen går under namnet Christmas Comedy - Den Stora Humorkvällen. Det blir stand up, imitationer och trams av en icke tidigare skådad kavalkad komiker på samma scen! Varmt välkomna att skratta loss tillsammans inför jul!</p><p>Magnus Betnér (SWE)</b></p><p>Magnus Betnér är svensk standup. Ingen svensk komiker har varit piggare på att testa nya grepp och ligga i framkant för stand upens utveckling än Magnus Betnér. Inför varje föreställning skriver han nytt material, och inte sällan med någon lokal förankring.</p><p>Magnus Betnér är en av Sveriges mest framgångsrika stand up komiker genom tiderna. Med råge är han även den komiker i Sverige som gjort flest soloföreställningar och även den av svenska komiker som besökt Finland flest gånger. <br>Känd från bland annat det svenska humorprogrammet <i>Parlamentet</i> och för sin ofta politiska, liberala och provokativa humorstil, skämtar han ofta om aktuella ämnen.</p><p><b>Christoffer Strandberg</b></p><p>Christoffer är den prisbelönta komikern och underhållaren som är känd från bland annat <i>Putous, Tanssii Tähtien Kaa, Top Gear Finland, Petolliset</i> och <i>Christoffer Strandberg Show</i>.<br>Han är även känd för sina roliga imitationer av kända personer och presidenter. Kanske någon karaktär dyker upp under kvällen?</p><p><b>André Wickström</b></p><p>Stand up nestorn André Wickström är en av landets absolut mest kända och omtyckta komiker. På hemmaplan har han sedan starten år 1995 turnerat runt på stand up klubbar, gjort flera soloshower och medverkat i såväl prisbelönta TV program som i filmer och sketchprogram, både i Finland och utomlands. <br>Hösten 2005 firade André Wickström 10 år som komiker med soloshowen <i>”En kvälls grej”</i> på Svenska Teatern i Helsingfors. Showen sågs av över 15.000 personer. År 2015 firade han sin 20-åriga karriär med soloshowen <i>”20 år stand up”</i> på Esbo Stadsteater och i år firar André 30 år på scenen.  <br>I Sverige ses André ofta på Sveriges mest anrika stand up klubb Norra Brunn, och har även medverkat i otaliga TV program som till exempel <i>Parlamentet</i> och <i>Roast på Berns</i>, samt i den populära svenska TV serien Solsidan. <br>André är också känd för det inhemska humorprogrammet Detta om detta som han gjorde ihop med Stan Saanila.</p><p><b>Janne Grönroos</b></p><p>Janne Grönroos ses ofta på stand up scener runtom i Svenskfinland och uppträder även på de<br>svenska humorklubbarna såsom <i>Norra Brunn</i> i Stockholm. Janne Grönroos är Radio X3M<br>veteranen som efter TV-jobb i Sverige nu är programledare för YLE:s populära TV-program Efter Nio. Janne driver även den svenskspråkiga övningsklubben <i>Top Floor Comedy</i>, där både nya och mer garvade stand up-komiker kan öva och testa nytt.</p><p><b>Alfred Backa</b></p><p>Alfred Backa är en prisbelönt österbottnisk komiker med mångårig bakgrund inom humor i varierande tappning och den som hittar det roliga i det mesta. Han har även gett ut flera böcker, medverkat i både poddar och radioprogram. 2019 turnerade Alfred med sin humorföreställning <i>Alfred Backa framför Alfred Backa</i>. 2024 turnerade han i Österbotten med succéföreställningen <i>Alfred Backa for President</i> för fulla salonger och just nu är han aktuell med soloshowen <i>Alfred Backa Gör Upp med Svensk(Finland)</i>, som turnerar runtom i Svenskfinland. Alfred producerar även flitigt politisk satir i sina digitala kanaler, vilket fått stor uppmärksamhet den senaste tiden och populariteten ökar.</p><p>Längd: Ca. 2,5 h (inklusive paus)</p><p>Åldersgräns: K-15</p><p>Föreställningen är på svenska.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersg</p>",
                "sv": "<p>Christoffer Strandberg, Magnus Betnér (swe), André Wickström, Janne Grönroos & Alfred Backa</p><p><b>Svenskfinlands största humorklubb återvänder till Helsingfors med stjärnkomiker både från Sverige och Finland! <br>I höst har det gått 10 år sedan den ambulerande humor & stand up-klubben <i>HumorHuset</i> drog i väg på sin allra första turné, då med både Magnus Betnér och Janne Grönroos i spetsen, och har under åren besökt Helsingfors många gånger. 10 år firas med en kanonkväll på Savoy teatern. Kvällen går under namnet Christmas Comedy - Den Stora Humorkvällen. Det blir stand up, imitationer och trams av en icke tidigare skådad kavalkad komiker på samma scen! Varmt välkomna att skratta loss tillsammans inför jul!</p><p>Magnus Betnér (SWE)</b></p><p>Magnus Betnér är svensk standup. Ingen svensk komiker har varit piggare på att testa nya grepp och ligga i framkant för stand upens utveckling än Magnus Betnér. Inför varje föreställning skriver han nytt material, och inte sällan med någon lokal förankring.</p><p>Magnus Betnér är en av Sveriges mest framgångsrika stand up komiker genom tiderna. Med råge är han även den komiker i Sverige som gjort flest soloföreställningar och även den av svenska komiker som besökt Finland flest gånger. <br>Känd från bland annat det svenska humorprogrammet <i>Parlamentet</i> och för sin ofta politiska, liberala och provokativa humorstil, skämtar han ofta om aktuella ämnen.</p><p><b>Christoffer Strandberg</b></p><p>Christoffer är den prisbelönta komikern och underhållaren som är känd från bland annat <i>Putous, Tanssii Tähtien Kaa, Top Gear Finland, Petolliset</i> och <i>Christoffer Strandberg Show</i>.<br>Han är även känd för sina roliga imitationer av kända personer och presidenter. Kanske någon karaktär dyker upp under kvällen?</p><p><b>André Wickström</b></p><p>Stand up nestorn André Wickström är en av landets absolut mest kända och omtyckta komiker. På hemmaplan har han sedan starten år 1995 turnerat runt på stand up klubbar, gjort flera soloshower och medverkat i såväl prisbelönta TV program som i filmer och sketchprogram, både i Finland och utomlands. <br>Hösten 2005 firade André Wickström 10 år som komiker med soloshowen <i>”En kvälls grej”</i> på Svenska Teatern i Helsingfors. Showen sågs av över 15.000 personer. År 2015 firade han sin 20-åriga karriär med soloshowen <i>”20 år stand up”</i> på Esbo Stadsteater och i år firar André 30 år på scenen.  <br>I Sverige ses André ofta på Sveriges mest anrika stand up klubb Norra Brunn, och har även medverkat i otaliga TV program som till exempel <i>Parlamentet</i> och <i>Roast på Berns</i>, samt i den populära svenska TV serien Solsidan. <br>André är också känd för det inhemska humorprogrammet Detta om detta som han gjorde ihop med Stan Saanila.</p><p><b>Janne Grönroos</b></p><p>Janne Grönroos ses ofta på stand up scener runtom i Svenskfinland och uppträder även på de<br>svenska humorklubbarna såsom <i>Norra Brunn</i> i Stockholm. Janne Grönroos är Radio X3M<br>veteranen som efter TV-jobb i Sverige nu är programledare för YLE:s populära TV-program Efter Nio. Janne driver även den svenskspråkiga övningsklubben <i>Top Floor Comedy</i>, där både nya och mer garvade stand up-komiker kan öva och testa nytt.</p><p><b>Alfred Backa</b></p><p>Alfred Backa är en prisbelönt österbottnisk komiker med mångårig bakgrund inom humor i varierande tappning och den som hittar det roliga i det mesta. Han har även gett ut flera böcker, medverkat i både poddar och radioprogram. 2019 turnerade Alfred med sin humorföreställning <i>Alfred Backa framför Alfred Backa</i>. 2024 turnerade han i Österbotten med succéföreställningen <i>Alfred Backa for President</i> för fulla salonger och just nu är han aktuell med soloshowen <i>Alfred Backa Gör Upp med Svensk(Finland)</i>, som turnerar runtom i Svenskfinland. Alfred producerar även flitigt politisk satir i sina digitala kanaler, vilket fått stor uppmärksamhet den senaste tiden och populariteten ökar.</p><p>Längd: Ca. 2,5 h (inklusive paus)</p><p>Åldersgräns: K-15</p><p>Föreställningen är på svenska.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersg</p>"
            },
            "name": {
                "fi": "Christmas Comedy - Den Stora Humorkvällen – Loppuunmyyty! / Slutsåld!",
                "sv": "Christmas Comedy - Den Stora Humorkvällen – Slutsåld!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Eventland Oy",
                "sv": "Eventland Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67152/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66888",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/",
                        "sv": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/",
                        "en": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/"
                    },
                    "description": null,
                    "price": {
                        "fi": "38,90 € / S&D 100,60 €",
                        "sv": "38,90 € / S&D 100,60 €",
                        "en": "38,90 € / S&D 100,60 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490497,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-21T15:14:23.262790Z",
                    "last_modified_time": "2025-08-21T15:14:23.262806Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776509.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490497/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-21T15:14:23.139549Z",
            "last_modified_time": "2025-12-07T15:12:46.881825Z",
            "date_published": null,
            "start_time": "2025-12-13T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.",
                "sv": "I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.",
                "en": "Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A97408785726628A844435B194961916/Suurlahettilaat",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A97408785726628A844435B194961916/Suurlahettilaat",
                "en": "http://www.savoyteatteri.fi/en/events/event/A97408785726628A844435B194961916/Suurlahettilaat"
            },
            "description": {
                "fi": "<p>Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.</p><p>Yhtye nousi suomalaisen bändipopin kaanoniin heti vuonna 1991 debyyttialbumillaan Omituisten otusten kerho, josta ikivihreiksi nousi kappaleet Elokuun 11. ja Pitääxunaina?. Nopeassa tahdissa klassikkokimara jatkui mm. biiseillä Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot ja Mitä miehen tulee olla?<br> <br>Savoy Teatterissa 13.12. on luvassa yhtyeen juhlakiertueen 2025 viimeinen keikka ja runsas kattaus biisejä bändin uran varrelta. Suomisoulia, joka on tehnyt Suurlähettiläistä sukupolvien ajan rakastetun.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p><p><b>Konsertin Show&Dinner-lippupaketit ovat loppuunmyyty, mutta illallinen on mahdollista tilata suoraan Savoy-teatterin ravintola Minnen verkkokaupasta: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat<br> <br>Huomioithan, että Minnen illalliskattauksessa on rajallinen määrä paikkoja jäljellä.</b></p><p>Show & Dinner -lippu sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b><br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>TAI</p><p><b>Menu Green</b><br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>Menun hinta ei sisällä juomia.<br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>",
                "sv": "<p>I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.</p><p>Bandet skrev in sig i den finska bandpopens historia genast 1991 med sitt debutalbum Omituisten otusten kerho, från vilket låtarna Elokuun 11. och Pitääxunaina? blev evergreens. Den tempofyllda klassiska cocktailen fortsatte med låtar som Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot och Mitä miehen tulee olla?.</p><p>Den 13 december är Savoy-teatern värd för den sista konserten på bandets jubileumsturné 2025, och en hel uppsättning låtar från bandets karriär utlovas. Den finska soulen som gjort Suurlähettiläät älskat i generationer.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Till konserten säljs en utsökt trerätters middag på restaurang Minne Garden intill Savoy-teatern som serveras två timmar före föreställningen. Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Biljettpaketen Show & Dinner till konserten är slutsålda, men det går bra att beställa middag direkt i Savoy-teaterns restaurang Minnes webbutik: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Observera att det finns ett begränsat antal platser kvar till Minnes middagsdukning.</p><p>Biljetten Show & Dinner inkluderar en entrébiljett och en meny med kött eller vegetarisk mat som serveras till borden.</p><p>Menu Classic<br>Kräftskagen, rostat maltbröd, ättiksgurka och sikrom L<br>Oxfilé tillagad på låg värme, rostad palsternacka och pommes aligot L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>ELLER</p><p>Menu Green<br>Rödbetscarpaccio, granskottscheddar och picklad svamp L, G<br>Grillad savoykål, kikärtspuré och stuvad spenat L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar före kvällens föreställning.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>",
                "en": "<p>Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades.</p><p>The band shot to fame in the Finnish band pop scene right at the start, in 1991, with their debut album Omituisten otusten kerho. The album’s songs Elokuun 11. and Pitääxunaina? became evergreen hits. The band continued to churn out classics at a fast pace, with songs such as Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot and Mitä miehen tulee olla?</p><p>On 13 December, the Savoy Theatre will host the last show of the band's 2025 anniversary tour, offering a wide range of songs from the band's career: The Finnish soul that has made Suurlähettiläät a beloved band across generations.</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>A delicious three-course dinner at the Savoy Theatre's Minne Garden restaurant is available for purchase for the concert evening, served two hours before the performance. Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>The concert’s Show & Dinner ticket packages are sold out, but it is possible to order dinner directly from the Savoy Theatre's Restaurant Minne's online shop (website in Finnish): https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Please note that there are a limited number of seats left for the dinner service at Restaurant Minne.</p><p>The Show & Dinner ticket includes an entrance ticket and a meat or vegetarian menu served to tables.</p><p>Menu Classic<br>Toast skagen, toasted malt bread, pickled cucumber and whitefish roe L<br>Beef fillet cooked at low heat, roasted parsnips and pommes aligot, L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>OR</p><p>Menu Green<br>Beetroot carpaccio, spruce sprout cheddar and pickled mushrooms L,G<br>Grilled savoy cabbage, chickpea puree and braised spinach L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>The price of the menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the evening's performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p>"
            },
            "name": {
                "fi": "Suurlähettiläät – Loppuunmyyty! / Sold out!",
                "sv": "Suurlähettiläät – Slutsåld!",
                "en": "Suurlähettiläät – Sold out!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Sunborn Events Oy",
                "sv": "Sunborn Events Oy",
                "en": "Sunborn Events Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66888/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67257",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491324,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-07T09:13:45.145784Z",
                    "last_modified_time": "2025-11-07T09:13:45.145799Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772167.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491324/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-07T09:13:44.946637Z",
            "last_modified_time": "2025-12-04T16:12:51.601710Z",
            "date_published": null,
            "start_time": "2025-12-04",
            "end_time": "2026-01-10",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Valitut taideteokset ovat taiteilijoilta Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard, sekä Greta Granö ja gallery of light and shadow.",
                "sv": "Konstnärer: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya och Aero Vineyard, och Greta Granö och gallery of light and shadow.",
                "en": "The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and Greta Granö and a gallery of light and shadow."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION",
                "en": "http://www.vuotalo.fi/en/events/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION"
            },
            "description": {
                "fi": "<p>Valitut taideteokset ovat taiteilijoilta Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard, sekä Greta Granö ja gallery of light and shadow.</p><p>REFRACTION (Refraktio) on valoa ja muistia käsittelevä ryhmänäyttely, jonka on kuratoinut Yasmin Ibrahim. Vuoden pimeimpänä kuukautena palaamme valossa kylpeviin muistoihin ja niiden vaihtumiseen, muuttumiseen ja pysähtymiseen. Teokset liikkuvat henkilökohtaisen ja julkisen välillä ja käyttävät valoa metaforisesti ja kirjaimellisesti heijastamaan omia kokemuksiamme ja sitä, miten ne näyttäytyvät ulkomaailmalle.</p><p>Näyttely on ammentanut inspiraatiota Yasmin Ibrahimin omasta suhteesta valoon pohjoiselle pallonpuoliskolle globaalista etelästä saapuneena maahanmuuttajana. Kukin työ esittelee valon haurautta, sitä kuinka valo muuttaa muistia ja rikkoo ja vakiinnuttaa sen.</p><p>Valittujen teosten tekijät ovat Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard ja gallery of light and shadow. Jokainen työ tarkastelee valon käyttöä ja suhdettamme siihen, sekä sitä mitä meidän pitäisi valaista. Kuraattorina Ibrahim on kiinnostunut Suomessa varjoon jääneiden taiteilijoiden valon kuvauksista ja käytöstä sekä muistin kyvystä liikuttaa tai jähmettää meidät ja ottaa meidät mukaan tai sulkea meidät ulkopuolelle.</p><p>Tervetuloa avajaisiin Vuotaloon 4.12. klo 18.30–20.00!</p><p>Kuva credit: Still from “Stepping into the Light\"<br>Legendary Overall Mother Lola Gorgeous Gucci <br>Xclusive Lanvin House Ball 2023.</p>",
                "sv": "<p>Konstnärer: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya och Aero Vineyard, och Greta Granö och gallery of light and shadow.</p><p>REFRACTION är en grupputställning om ljus och minnen, kuraterad av Yasmin Ibrahim. Under årets mörkaste månad minns vi minnen fyllda av ljus, och hur de skiftar, förändras och stagnerar. I rörelsen mellan det personliga och det offentliga används ljuset på ett metaforiskt och bokstavligt sätt för att reflektera över vad vi upplever och hur det porträtteras för omvärlden.</p><p>Med inspiration från Yasmin Ibrahims egen relation till ljuset som en invandrare från den globala södern som nu bor på norra halvklotet visar alla de utvalda konstverken hur skört ljuset är, hur det förändrar minnet och vad som stör och stabiliserar det.</p><p>De utvalda konstverken är skapade av Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero och Ozeya Vineyard samt gallery of light and shadow. Varje verk utforskar hur vi använder ljus, vår relation till ljuset och vad vi borde belysa. Som kurator är Ibrahim intresserad av hur underrepresenterade konstnärer i Finland skildrar och använder ljus, och hur minnen kan förflytta sig, frysa, stänga ut eller inkludera oss.</p><p>Välkommen till invigningen på Nordhuset den 4 december kl. 18.30–20.00!</p><p>Med stöd av Catalysti ry och TAIKE.</p>",
                "en": "<p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and Greta Granö and a gallery of light and shadow.</p><p>REFRACTION is a group exhibition curated by Yasmin Ibrahim on light and memory. During the darkest month of the year, we remember memories engulfed in light, how they shift, change and become stagnant. Moving between the personal and the public, light is used in a metaphoric and literal sense to reflect what we experience and how it is portrayed to the outside world.</p><p>Inspired by Yasmin Ibrahim’s own relationship to light as an immigrant from the Global South living in the Northern Hemisphere, each selected artwork shows the fragility of light, how it changes memory, what disrupts and settles it.</p><p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and a gallery of light and shadow. Each piece looks at the use of light, our relationship to it, and what should be shed light on. As a curator, Ibrahim is interested in the depictions and usage of light by underrepresented artists in Finland, and how memory can move, freeze, exclude or include us.</p><p>Welcome to the opening at Vuotalo on 4.12 between 18:30-20:00!<br>Supported by Catalysti ry and TAIKE.</p><p>Photo credit: Still from “Stepping into the Light\"</p><p>Legendary Overall Mother Lola Gorgeous Gucci<br> <br>Xclusive Lanvin House Ball 2023.</p>"
            },
            "name": {
                "fi": "REFRACTION – Kuratoinut Yasmin Ibrahim",
                "sv": "REFRACTION – Kurerad av Yasmin Ibrahim",
                "en": "REFRACTION – Curated by Yasmin Ibrahim"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67257/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:d5f44420-5f04-4570-ae8a-7e73eda65f12",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45307/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:de728393-b30b-48c4-aa49-e3814ac980d1/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_youtube",
                    "link": "https://Youtube.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://Instagram.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_tumblr",
                    "link": "https://Tumblr.com",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=4122025_JIIRI_Sprint_retro_ja_review_-_Alitapahtuma2128169567"
                    },
                    "description": {
                        "fi": "Hintatietojen kuvaus suomeksi"
                    },
                    "price": {
                        "fi": "15"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1494096,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-04T15:49:34.041592Z",
                    "last_modified_time": "2025-12-04T15:49:34.041611Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80",
                    "name": "Kuvateksti",
                    "cropping": "",
                    "photographer_name": "Kuvaajan nimi",
                    "alt_text": "Kuvan Alt-teksti",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494096/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "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/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2025-12-04T07:13:36.453930Z",
            "last_modified_time": "2025-12-04T15:49:34.627964Z",
            "date_published": "2025-12-04T07:07:38Z",
            "start_time": "2025-12-31T06:00:00Z",
            "end_time": "2025-12-31T21:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 15,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 500,
            "minimum_attendee_capacity": 15,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "JIIRI Sprint retro ja review - Alitapahtuma"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>JIIRI Sprint retro ja review -Alitapahtuma</div><div><div><div><div><div><div><div><div><div><br>&nbsp;</div></div></div></div></div></div></div></div></div></div>"
            },
            "name": {
                "fi": "4.12.2025 JIIRI Sprint retro ja review - Alitapahtuma"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Tapahtumapaikan lisätiedot - Suomi"
            },
            "provider": {
                "fi": "Annantalo (KYMP)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:d5f44420-5f04-4570-ae8a-7e73eda65f12/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}