Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. 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=230&registration__remaining_attendee_capacity__isnull=true
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 27030,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=231&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=229&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "lippupiste:19352655",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3504617/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352655/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352655/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/katrina-helsingin-kaupunginteatteri-19352655/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235442,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:52.027374Z",
                    "last_modified_time": "2025-02-17T11:16:52.027397Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hktkatrina222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235442/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:16:52.001552Z",
            "last_modified_time": "2025-03-13T00:17:02.980770Z",
            "date_published": null,
            "start_time": "2025-03-12T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/katrina-3504617/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Sally Salminen – Kaisa Lundán – Aili Järvelä<br><strong>KATRINA</strong></p>",
                "sv": "<p>Den unga Katrina lockas av kärleken att flytta från Österbotten till Åland för att bli sjömanshustru. Trots att hon blir lämnad ensam, lyckas hon gång på gång övervinna både yttre svårigheter och sig själv. Katrinas stolthet och rättvisa banar väg där hon utmanar samhällets normer och vad det är att vara kvinna.</p><p>Katrina är en klassikerroman som när den kom ut 1936 var banbrytande och gjorde författaren Sally Salminen till en världskändis, och boken översattes till över tjugo språk. Kaisa Lundáns dramatisering och Aili Järveläs nykomponerade musik ger nu nytt liv åt Katrinas berörande berättelse.</p><p>Emma Klingenberg och Aili Järvelä, Ulriikka Heikinheimo och Senni Valtonen sjunger Katrinas hjärtskärande historia, vars budskap är aktuellt än i dag.</p><p>På scen: Emma Klingenberg, Aili Järvelä, Ulriikka Heikinheimo, Senni Valtonen<br>Dramatisering: Kaisa Lundán<br>Kompositör och arrangör: Aili Järvelä<br>Regi: Jakob Höglund<br>Scenografi och design av rekvisita: Heini Maaranen<br>Kostym: Samu-Jussi Koski<br>Ljusdesign: Tobias Lönnquist<br>Ljuddesign: Antero Mansikka<br>Mask: Pia Kähkönen<br>Premiär: 31.1.2024 på Lilla Teatern<br>Uppföranderätt: Nordic Drama Corner</p><p>Föreställningen textas till finska och svenska via appen Subtitle mobile.<br>Föreställningen är ett samarbete mellan Lilla Teatern, Åbo Svenska Teater och Wasa Teater. I Åbo och Vasa spelar föreställningen våren 2025.<br></p>"
            },
            "name": {
                "fi": "Katrina"
            },
            "short_description": {
                "fi": "Sally Salminen – Kaisa Lundán",
                "sv": "Aili Järvelä KATRINA Den unga Katrina lockas av kärleken att flytta från Österbotten till Åland för att bli sjömanshustru."
            },
            "location_extra_info": {
                "fi": "Lilla Teatern"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19352655/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350659",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748841/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350659/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350659/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350659/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235431,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.456387Z",
                    "last_modified_time": "2025-02-17T11:16:41.456408Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/eyp-lp-222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235431/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:16:51.859560Z",
            "last_modified_time": "2025-03-13T00:17:02.912851Z",
            "date_published": null,
            "start_time": "2025-03-12T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Agatha Christie<br><strong>Eikä yksikään pelastunut</strong></p><p>Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri. Tehokas, hyvin rakennettu ja perinteinen jännitysnäytelmä on Agatha Christietä parhaimmillaan.</p><p>Agatha Christien klassikkodekkari Eikä yksikään pelastunut vie Devonin rannikolle Soldier Islandille, jonne kymmenen ihmistä on saanut kutsun. Kun seurue saapuu paikalle, ilmenee, että isäntäpari ei ole vielä saapunut. Takan reunalta löytyy vanha loru kymmenestä sotilaspojasta sekä kymmenen sotilaspatsasta.</p><p>Lorussa jokainen sotilaspoika kuolee, yksi kerrallaan. Pian käynnistyy äänilevy, jossa jokaista vierasta ja talon palvelijoita syytetään murhista.</p><p>Sitten seurueen jäseniä alkaa kuolla.</p><p>Jokaisen kuolemantapauksen yhteydessä häviää yksi kymmenestä posliinisesta sotilaspoikapatsaasta.</p><p>Kunnes jäljellä ei ole yhtäkään.</p><p>Karmivan kiehtova dekkari tarjoaa intensiivisen parituntisen Arena-näyttämöllä, joka on todistanut paikkansa jännitysnäytelmien ykkösnäyttämönä. Arena-näyttämön intiimissä tunnelmassa nautittiin supersuosittu Agatha Christien Hiirenloukku syksyllä 2023.</p><p>Rooleissa: Anna Ackerman, Jesse Gyllenbögel, Heidi Herala, Arttu Kapulainen, Juha Jokela, Santeri Kinnunen, Jouko Klemettilä, Pertti Koivula, Jari Pehkonen Kaisa Torkkel, Mikko Virtanen</p><p>Kirjailija: Agatha Christie<br>Suomentaja: Aino Piirola<br>Ohjaus: Sakari Hokkanen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Jaana Nykänen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy<br></p>"
            },
            "name": {
                "fi": "Eikä Yksikään Pelastunut"
            },
            "short_description": {
                "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri."
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350659/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19036787",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036787/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036787/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036787/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:16:51.739424Z",
            "last_modified_time": "2025-03-13T00:17:02.850137Z",
            "date_published": null,
            "start_time": "2025-03-12T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Jyrki Kasper, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036787/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19036801",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036801/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036801/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036801/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:16:51.616745Z",
            "last_modified_time": "2025-03-13T00:17:02.776790Z",
            "date_published": null,
            "start_time": "2025-03-12T11: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,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Jyrki Kasper, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036801/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19326905",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3594382/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326905/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326905/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326905/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235439,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:44.559638Z",
                    "last_modified_time": "2025-02-17T11:16:44.559655Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hkt_mollin_iltahepuli_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235439/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:16:51.498176Z",
            "last_modified_time": "2025-03-13T00:17:02.679978Z",
            "date_published": null,
            "start_time": "2025-03-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,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Katri Kirkkopelto<br><strong>MOLLIN ILTAHEPULI</strong></p><p>Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta. Mitä tapahtuu, kun Mollille ja hänen parhaalle ystävälleen Sisulle iskee iltaväsymyksen sijasta iltahepuli? Esityksessä tarvitaan katsojien apua, jotta päähenkilöt Molli ja Sisu saadaan unten maille. Esitys pohjautuu Katri Kirkkopellon samannimiseen suosittuun lastenkirjaan.</p><p>Rooleissa: Kaisa Torkkel, Helena Haaranen ja Sari Haapamäki</p><p>Dramatisointi ja ohjaus: Jenny Jumppanen<br>Valosuunnittelu: Milla Veirto<br>Puvustus ja lavastus: Aija Nurminen<br>Naamiointi: Tuula Kuittinen<br>Äänisuunnittelu ja sävellys: Eero Niemi</p>"
            },
            "name": {
                "fi": "Mollin Iltahepuli"
            },
            "short_description": {
                "fi": "Katri Kirkkopelto MOLLIN ILTAHEPULI Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta."
            },
            "location_extra_info": {
                "fi": "Pieni Näyttämö LÄMPIÖ"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326905/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65446",
            "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: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:46/?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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/red-nose-company-punahilkan-paluu-annantalo-19692816/",
                        "sv": "https://www.lippu.fi/event/red-nose-company-punahilkan-paluu-annantalo-19692816/",
                        "en": "https://www.lippu.fi/event/red-nose-company-punahilkan-paluu-annantalo-19692816/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 160223,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-20T10:14:45.110708Z",
                    "last_modified_time": "2025-01-20T10:14:45.110722Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764780.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/160223/?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-01-20T10:14:45.087763Z",
            "last_modified_time": "2025-03-12T15:14:43.639245Z",
            "date_published": null,
            "start_time": "2025-03-17T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7A6BFBADD7A65703A2430F37CC1E1FA4/Red_Nose_Company_Punahilkan_paluu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7A6BFBADD7A65703A2430F37CC1E1FA4/Red_Nose_Company_Punahilkan_paluu",
                "en": "http://www.annantalo.fi/en/events/event/7A6BFBADD7A65703A2430F37CC1E1FA4/Red_Nose_Company_Punahilkan_paluu"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana.</p><p>Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana. Isoäidiltä lahjaksi saatu viitta antaa Punahilkalle supervoimat ja auttaa selviytymään kiperissä tilanteissa. Supervoimista huolimatta myös yleisön apua tarvitaan. Miten mahtaa ratketa suden ja Punahilkan kohtaaminen tässä nykyaikaan päivitetyssä versiossa?</p><p>Klovnit johdattavat katsojan pohtimaan luottamuksen ja turvallisuuden teemoja huumoria säästelemättä. Esitys on suunnattu erityisesti alakoululaisille ja heidän perheilleen.<br> <br><b>TYÖRYHMÄ</b><br>Näyttämöllä: Hanna Seppä ja Minna Puolanto<br>Ohjaus: Niina Sillanpää<br>Käsikirjoitus: Työryhmä<br>Valo ja äänisuunnittelu: Jere Kolehmainen<br>Puvustus: Noora Salmi<br>Tuotanto: Red Nose Company / Elina Terho, Maija Kühn, Inka Virtanen<br>Graafinen ilme: Ilari Kallinen</p><p>Esityksen kesto n. 60 min<br>Ikäsuositus: 6+<br>Kieli: suomi</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 12 eri esitystä ja 37 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theater – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>Historien om Rödluvan har berättats från generation till generation i hundratals år. Nu sätts den älskade sagan upp på scenen i en dråplig tolkning av två clowner, Babylon och Ré.</p><p>Språk: finska</p><p><b>Hurra!-teaterveckor  <br>Ta med ditt barn till teatern</b><br>Hurraa! teaterveckor syftar till att ge så många barn och ungdomar som möjligt chansen att se levande teater som är särskilt avsedd för dem.</p><p>Hurra!-teaterveckorna sätter fokus på kvalitetsscenkonst för barn och ungdomar. Programmet omfattar 12 olika föreställningar och 40 visningar runt om i Helsingfors.</p><p>Hurraa!-teaterveckornas föreställningar kommer att presenteras i Helsingfors kulturcentrum 14–26 mars 2025. Föreställningarna äger rum i Annegården, Caisa, Gamlasgården, Malms kulturhus, Stoa och Nordhuset. Förutom i kulturcentrumen kommer föreställningarna att glädja barn och ungdomar även på Helsingfors Barnsjukhus.</p><p>Hurraa! arrangeras som en del av den internationella teaterkampanjveckan: Take a child to t theatre – ta med ett barn på teater. Under veckan uppmärksammas också barnens internationella teaterdag den 20 mars.</p><p>Du hittar alla Hurra!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>",
                "en": "<p>The tale of the Little Red Riding Hood has been told for centuries. Now two clowns Babylon & Ré take this beloved story into their hands and tune it to the 21 century.</p><p>The tale of the Little Red Riding Hood has been told for centuries. Now two clowns Babylon & Ré take this beloved story into their hands and tune it to the 21 century. Little Red Riding Hood receives a magical cape from her grandmother – it turns out to have superpower that helps in difficult situations. This show will investigate themes of trust and safety without forgetting joy and laughter.</p><p>We especially welcome for 6–12-year-old kids and their families.</p><p><b>WORKING GROUP</b><br>On stage: Hanna Seppä and Minna Puolanto<br>Director: Niina Sillanpää<br>Script: working group<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Production: Red Nose Company / Elina Terho, Maija Kühn, Inka Virtanen<br>Graphical design: Ilari Kallinen</p><p>Length of the show: 60 minutes<br>Age recommendation: 6+<br>Language: Finnish</p><p><b>Hurraa! theatre weeks  <br>Bring Your Child to the Theatre </b><br>The aim of the Hurraa! theatre weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! theatre weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurrah! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! is organised as part of the International Theatre Campaign Week: Take a Child to  Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "name": {
                "fi": "Red Nose Company: Punahilkan paluu – Hurraa! -teatteriviikot",
                "sv": "Red Nose Company: Punahilkan paluu – Hurraa! -teaterveckor",
                "en": "Red Nose Company: Punahilkan paluu – Hurraa! Theatre weeks"
            },
            "short_description": {
                "fi": "Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana.",
                "sv": "Historien om Rödluvan har berättats från generation till generation i hundratals år. Nu sätts den älskade sagan upp på scenen i en dråplig tolkning av två clowner, Babylon och Ré.",
                "en": "The tale of the Little Red Riding Hood has been told for centuries. Now two clowns Babylon & Ré take this beloved story into their hands and tune it to the 21 century."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65446/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65077",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153638,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T15:14:17.770863Z",
                    "last_modified_time": "2024-12-31T15:14:17.770878Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763825.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153638/?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": "2024-12-31T15:14:17.744178Z",
            "last_modified_time": "2025-03-12T14:14:44.719941Z",
            "date_published": null,
            "start_time": "2025-03-22T10:00:00Z",
            "end_time": "2025-03-22T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/2700B0FBD7FBDA35172C077A3C9EFADE/Supervoimia_ja_elavia_ihmeita",
                "sv": "http://www.stoa.fi/sv/evenemang/event/2700B0FBD7FBDA35172C077A3C9EFADE/Superkrafter_och_levande_underverk",
                "en": "http://www.stoa.fi/en/events/event/2700B0FBD7FBDA35172C077A3C9EFADE/Superpowers_and_living_wonders"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Katkeilevia kastematoja, dinosaurusten sukulaisia ja kasvimaailman lumoa: Hurraa! -viikon perhepäivässä kohdataan luonto ja koko sen värikäs lajien kirjo.</p><p>Päivän esitykset vievät luontoäidin luokse ja paljastavat mitä ihmeellisempiä supervoimia, joita luontokappaleilla voi olla. Tule mukaan eläimenä, ihmisenä tai minä tahansa luonnonoikkuna, ja löydä oma supervoimasi!</p><p>Voit täydentää asuasi UV-kasvomaalauksella tai kehitellä työpajoissa kaikenlaisia korvia. Tarjolla on monenlaista tieteellistä ja taiteellista tekemistä. Monimuotoinen luonto on aarre vailla vertaa – tule mukaan sen ihmeistä oppimaan!</p><p><b>Maksuttomat työpajat klo 12–15</b></p><p><b>Robotit suojelijoina!<br>Aalto-yliopisto Juniorin robotiikkatyöpaja</b><br>Miten robotit toimivat? Mitä ohjelmointi tarkoittaa ja miten se liittyy robotteihin? Voiko robotit olla apuna luonnon monimuotoisuuden suojelemisessa?<br> <br>Tervetuloa oppimaan ohjelmoinnista ja robotiikasta ikätasolle sopivasti! Työpajassa tutustutaan LEGO-robotteihin ohjelmoimalla niitä innostavassa ja lapsille sopivassa ohjelmointiympäristössä. Samalla opitaan ympäröivän teknologian toiminnasta ja pohditaan luonnon monimuotoisuuden säilyttämistä.<br>Maksuton työpaja soveltuu 5–10-vuotiaille lapsille, tai alle kouluikäisille yhdessä vanhemman kanssa. <br>Ohjaaja: Saija Huoponen, Aalto-yliopisto Junior<br> <br><b>Hehkuva puutarha - photobooth</b> <br>Hehkuvassa puutarhassa leikitellään pörriäisten värinäöllä. Maalaamme kukkia ja ihmettelemme niiden hehkuvia värejä uv-valossa. Työpajassa syntyneet maalaukset liitetään osaksi päivän aikana syntyvää hehkuvaa lavastusta, jonka äärellä saa napattua ihanan kuvan muistoksi tapahtumapäivästä. Luvassa myös uv-kasvomaalausta! Avoin työpaja kaikenikäisille!<br>Ohjaaja: Verna Kuntsi, Seikkailutaidekoulu <br> <br><b>Suomen luonnonsuojeluliitto:<br>Luonnon ystävä -taitokortit</b><br>Oletko luonnon ystävä? Nyt on täydellinen hetki osoittaa se: voit suorittaa Luonnon ystävä -taitokortin suorittamalla hauskoja tehtävärasteja. Kortin saa jokainen osallistuja, kaikkea ei tarvitse osata valmiiksi.<br>Ohjaajat: Riitta Malve ja Mirja Reijonen</p><p><b>Karvakorvia ja tuntosarvia -työpaja</b><br>Maailma on täynnä kaikenlaisia ihania ja kummallisia korvia. Tule tekemään koko perheelle eläimellistä ilmettä! Työpajassa askarrellaan eläinten ja kaikenlaisten ihmeellisten otusten korvia.<br>Ohjaaja: Noora Puranen</p><p>Lisäksi: Itäkeskuksen <b>kirjaston lastenosastolla on kirjanäyttely</b> erikoisista eläimistä ja eläinten tavoista.</p><p><b>Maksulliset esitykset<br>klo 13 Kukkatanssit<br>klo 14 Eläköön eläimet </b></p><p>Liput esityksiin 6 €, muu ohjelma maksutonta.</p><p><b>Hurraa! -teatteriviikot  <br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theater – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p>",
                "sv": "<p>Daggmaskar som går av, dinosauriesläktingar och växtvärldens magi: På familjedagen under Hurra!-veckan möter vi naturen och alla dess färgstarka arter.</p><p>Föreställningarna under dagen tar dig med till Moder Natur och avslöjar de mest fantastiska superkrafter som varelser kan ha. Häng med som ett djur, en människa eller något annat naturens nyck och upptäck din egen superkraft!</p><p>Du kan komplettera din outfit med en ansiktsmålning eller göra öron eller vingar i verkstäderna. Dagen bjuder på ett brett utbud av vetenskapliga och konstnärliga aktiviteter. Biologisk mångfald är en skatt utan dess like – kom och lär dig mer om dess underverk!</p><p><b>Gratis verkstäder</b></p><p><b>Robotar som beskyddare!<br>Aalto-universitetets Juniors robotteknikverkstad</b></p><p>Hur fungerar robotar? Vad är programmering och hur hänger det ihop med robotar? Kan robotar hjälpa till att skydda den biologiska mångfalden?<br> <br>Välkommen att lära dig mer om programmering och robotteknik på ett åldersanpassat sätt! I verkstaden utforskar vi LEGO-robotar genom att programmera dem i en inspirerande och barnvänlig programmeringsmiljö. Samtidigt får du lära dig mer om hur tekniken omkring dig fungerar och fundera på hur du kan bevara den biologiska mångfalden.</p><p>Den kostnadsfria verkstaden är lämplig för barn i åldern 5–10 år, eller för barn under skolåldern tillsammans med en förälder. <br>Handledare: Saija Huoponen, Aalto-universitetet Junior<br> <br> <br><b>Fotoverkstad Glödande trädgård</b><br>I den glödande trädgården kan du leka med insekternas färgseende. Vi målar blommor och förundras över deras lysande färger under uv-ljus. Målningarna som skapas i verkstaden kommer att införlivas i en glödande scendesign som skapas under dagen och där man kan ta ett vackert foto som ett minne om dagen. Vi ska också ha uv-ansiktsmålning! Öppen verkstad för alla åldrar!<br>Handledare: Verna Kuntsi, konstskolan Seikkailutaidekoulu <br> <br><b>Finlands naturskyddsförbund:<br>Färdighetskort för naturvän</b><br>Är du en naturvän? Nu är det perfekta tillfället att bevisa det: du kan avlägga färdighetskortet för naturvän genom att klara av roliga uppgiftsutmaningar. Varje deltagare får ett kort, så du behöver inte kunna allt på förhand.<br>Handledare: Riitta Malve och Mirja Reijonen</p><p><b>Dessutom:</b><br>Barnavdelningen i Östra centrums bibliotek har en bokutställning om ovanliga djur och djurens vanor.</p><p>Avgiftsbelagda föreställningar<br>Kl. 13 Blomsterdans<br>Kl. 14 Länge leve djuren</p><p>Biljetter till föreställningar 6 €, övriga program gratis.</p>",
                "en": "<p>Broken earthworms, dinosaur relatives and enchantment from the plant world: on Hurraa! Week’s Family Day, we encounter nature and its entire colourful spectrum of species.</p><p>The presentations take you to Mother Nature and reveal the amazing superpowers that living creatures can have. Come along as an animal, human or even a freak of nature, and discover your superpower!</p><p>You can complement your outfit with a face painting or make ears or wings in our workshops. The event will include a wide range of scientific and artistic activities. Our diverse nature is an unparalleled treasure – come and learn from its wonders!</p><p><b>Free workshops</p><p>Robots as protectors!<br>Aalto University Junior Robotics Workshop</b></p><p>How do robots work? What does programming mean and how does it relate to robots? Can robots help protect biodiversity?<br> <br>Welcome to learning about programming and robotics in an age-appropriate way! The workshop will introduce you to LEGO robots by programming them in an inspiring and child-friendly programming environment. At the same time, we learn about the operation of the surrounding technology and consider the preservation of biodiversity.</p><p>The free workshop is suitable for children aged 5 to 10 years or for children under school age together with a parent. <br>Instructor: Saija Huoponen, Aalto University Junior<br> <br><b>Glowing Garden - photobooth</b><br>In the Glowing Garden, participants play around with bugs’ colour vision. They paint flowers and marvel at the glowing colours under a UV light. The paintings created in the workshop are connected to the glowing stage design created during the day, where you can take a wonderful picture to remember the event day. There will also be UV facial painting! Open workshop for all ages!<br>Instructor: Verna Kuntsi, Adventure art school Seikkailutaidekoulu <br> <br><b>Finnish Association for Nature Conservation:<br>Nature Friend skill cards</b><br>Are you a nature lover? Now is the perfect time to show it: you can complete the Nature Friend skill card by completing fun checkpoints. Every participant will receive the card, so it is not necessary to know everything.<br>Instructors: Riitta Malve and Mirja Reijonen</p><p><b>In addition:</b><br>The children’s section of the Itäkeskus Library has a book exhibition on peculiar animals and animal customs.</p><p>Performances subject to a fee<br>13.00 Flower Dances<br>14.00 Long Live the Animals</p><p>Tickets to the performances €6, other programme free of charge.</p>"
            },
            "name": {
                "fi": "Supervoimia ja eläviä ihmeitä – Hurraa! -viikon perhepäivä",
                "sv": "Superkrafter och levande underverk – Familjedag under Hurraa!-veckor",
                "en": "Superpowers and living wonders – Hurraa! Week’s Family Day"
            },
            "short_description": {
                "fi": "Katkeilevia kastematoja, dinosaurusten sukulaisia ja kasvimaailman lumoa: Hurraa! -viikon perhepäivässä kohdataan luonto ja koko sen värikäs lajien kirjo.",
                "sv": "Daggmaskar som går av, dinosauriesläktingar och växtvärldens magi: På familjedagen under Hurra!-veckan möter vi naturen och alla dess färgstarka arter.",
                "en": "Broken earthworms, dinosaur relatives and enchantment from the plant world: on Hurraa! Week’s Family Day, we encounter nature and its entire colourful spectrum of species."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65077/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65619",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:758/?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": [],
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749340/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749340/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749340/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 247483,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-20T14:14:17.527228Z",
                    "last_modified_time": "2025-02-20T14:14:17.527242Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760433.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/247483/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-20T14:14:17.484642Z",
            "last_modified_time": "2025-03-12T09:14:49.098562Z",
            "date_published": null,
            "start_time": "2025-04-01T11: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/321D6C103FEDE48FA679202870AA7F8B/KINO_CAISA_April_16_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/321D6C103FEDE48FA679202870AA7F8B/KINO_CAISA_April_16_",
                "en": "http://www.caisa.fi/en/events/event/321D6C103FEDE48FA679202870AA7F8B/KINO_CAISA_April_16_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kun vastasyntynyt kuolee synnytyksen aikana, synnytyslääkäri Ninan moraali ja ammattitaito joutuvat tarkkailun kohteeksi. Huhutaan, että hän tekee laittomia abortteja apua tarvitseville.</p><p>Nina (Ia Sukhitashvili) on arvostettu synnytyslääkäri synnytyssairaalassa Itä-Georgiassa. Kun lapsi kuolee vaikean synnytyksen jälkeen, surun murtama isä vaatii, että Ninan menetelmät tutkitaan. Tarkastelu uhkaa tuoda julki Ninan sivutoimen: hän tekee luvattomia abortteja pienissä kylissä lumoavan kauniilla maaseudulla pitkien ajomatkojen päässä. Se uhkaa myös tuhota ammatin, joka tuo ainoan tarkoituksen hänen elämäänsä.</p><p>April on Dea Kulumbegashvilin toinen pitkä elokuva vuonna 2020 ilmestyneen kiitetyn Beginning-elokuvan jälkeen. Elokuvaa varten Kulumbegashvili seurasi kuukausia äitiysneuvolan lääkäreiden työtä ja ympäröivien maaseutuyhteisöjen elämää. Hänen luomassaan tarinassa on realistisia yksityiskohtia, ja se herätettiin henkiin intensiivisessä harjoitus- ja tuotantoprosessissa, jossa oli mukana</p><p>georgialaisia teatteri- ja elokuvanäyttelijöitä (Sukhitashvili, Kakha Kintsurashvili, Merab Ninidze) sekä harrastajanäyttelijöitä. April on syvällinen teos, joka vie katsojan patriarkaalisen perinteen rajoittaman elämän todellisuuteen. Nina tuntee empatiaa potilaitaan kohtaan, mutta muuten hänen tunteilleen ei ole tilaa.</p><p>Sukhitashvilin kurinalaiseen roolisuoritukseen yhdistyvät kuvaaja Arseni Khachaturanin toisinaan heleä ja toisinaan eleetön kuvakieli sekä lumoava ääniraita, jossa kokeellisen säveltäjän Matthew Herbertin minimalistinen musiikki yhdistyy fyysisen maailman ääniin.</p><p>Ikäraja: 12<br>Kesto: 134 min<br>Puhuttu kieli: georgia<br>Tekstitys: englanti</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 12–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19878916/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Efter att ett barn dör under en förlossning sätts gynekologen Ninas moral och yrkesskicklighet under lupp då det går rykten om att hon utför illegala aborter för behövande.</p><p>Nina (Ia Sukhitashvili) är en skicklig förlossningsläkare på ett sjukhus i östra Georgien. Efter en svår förlossning dör barnet och den sörjande fadern kräver en utredning av Ninas metoder. Den granskning som blir följden hotar att avslöja Ninas bisyssla – att köra genom den vackra landsbygden till gravida flickor och kvinnor för att utföra olagliga aborter – och sätta stopp för det yrke som är den enda källan till mening i hennes liv.</p><p>För April, Dea Kulumbegashvilis andra långfilm efter 2020 års succé Beginning, tillbringade hon flera månader med att observera läkarnas arbete på en förlossningsklinik och livet i de omgivande landsbygdssamhällena. Den berättelse som hon har skapat bygger på realistiska detaljer och tog form genom en intensiv repetitions- och produktionsprocess, med en rollista som blandar skickliga</p><p>skådespelare från den georgiska teater- och filmscenen (Ia Sukhitashvili, Kakha Kintsurashvili, Merab Ninidze) med amatörskådespelare. Det här är ett djupt engagerat verk som låter betraktaren leva sig in i verkligheten för människor vars liv begränsas av patriarkala traditioner – inte minst Ninas egna, vars känsloliv utöver den empati hon känner för sina patienter har blivit hämmat.</p><p>Med Ia Sukhitashvilis disciplinerade rollprestation i centrum får filmen också en rik textur från fotografen Arseni Khachaturans ömsom lysande, ömsom spektrala bilder, och det fascinerande soundtracket med minimalistisk musik av den experimentella kompositören Matthew Herbert, förstärkt med ljuddetaljer från filmens fysiska värld.</p><p>Åldersgräns: 12<br>Längd: 134 min.<br>Talat språk: Georgiska<br>Undertexter: Engelska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 12–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19878916/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need.</p><p>Nina (Ia Sukhitashvili) is a skilled obstetrician at a maternity hospital in Eastern Georgia. After a difficult delivery, the infant dies and the grief-racked father demands an inquiry into her methods. The resulting scrutiny threatens to bring to light Nina’s sideline—driving, through the stunningly beautiful countryside to the village homes of pregnant girls and women to provide unsanctioned abortions—and to destroy the profession that is the only source of meaning in her life.</p><p>For April, her second feature following 2020’s acclaimed Beginning, Dea Kulumbegashvili spent months observing the work of doctors at a maternity clinic and the lives of the surrounding rural communities. The story she crafted is grounded in realistic detail and was brought to life by an intensive rehearsal and production process, with a cast that includes accomplished</p><p>Georgian theater and film actors (Sukhitashvili, Kakha Kintsurashvili, Merab Ninidze) alongside nonprofessionals. This is a profoundly committed work that immerses the viewer in the reality of lives constrained by patriarchal tradition—that of Nina, whose emotional life outside of the empathy she has for her patients has become stunted, among them.</p><p>Anchored by Sukhitashvili’s disciplined performance, the film also gains rich texture from its sometimes luminous, sometimes spectral images by cinematographer Arseni Khachaturan and its mesmerizing soundtrack, which integrates minimalist music by experimental composer Matthew Herbert with heightened sounds from the physical world of the film.</p><p>Age Limit: 16<br>Duration: 134 min<br>Spoken language: Georgian<br>Subtitles: English</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 12–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19878916/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "name": {
                "fi": "KINO CAISA: April (16)",
                "sv": "KINO CAISA: April (16)",
                "en": "KINO CAISA: April (16)"
            },
            "short_description": {
                "fi": "Kun vastasyntynyt kuolee synnytyksen aikana, synnytyslääkäri Ninan moraali ja ammattitaito joutuvat tarkkailun kohteeksi. Huhutaan, että hän tekee laittomia abortteja apua tarvitseville.",
                "sv": "Efter att ett barn dör under en förlossning sätts gynekologen Ninas moral och yrkesskicklighet under lupp då det går rykten om att hon utför illegala aborter för behövande.",
                "en": "After a newborn dies during delivery, the morals and professionalism of an OB-GYN, Nina, come under scrutiny amid rumors that she performs illegal abortions for those in need."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65619/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65532",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:758/?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": [],
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749350/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749350/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749350/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172651,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T14:13:54.827132Z",
                    "last_modified_time": "2025-01-27T14:13:54.827145Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760431.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172651/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-27T14:13:54.813901Z",
            "last_modified_time": "2025-03-12T09:14:47.570314Z",
            "date_published": null,
            "start_time": "2025-03-25T16: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4816F45D59F019D6FDE32BBD83C1DEB6/KINO_CAISA_Eureka_16_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4816F45D59F019D6FDE32BBD83C1DEB6/KINO_CAISA_Eureka_16_",
                "en": "http://www.caisa.fi/en/events/event/4816F45D59F019D6FDE32BBD83C1DEB6/KINO_CAISA_Eureka_16_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Alaina on kyllästynyt poliisin työhönsä Pine Ridgen reservaatissa ja päättää lopettaa radiopuhelimeen vastaamisen.</p><p>Hänen veljentyttärensä Sadie viettää pitkän yön häntä odottaen, mutta turhaan. Loukkaantuneena hän päättää aloittaa matkansa isoisänsä avulla: hän lentää ajan ja avaruuden halki Etelä-Amerikkaan. Hän ei halua enää katsoa vanhoja mustavalkoisia lännenelokuvia, jotka eivät edusta häntä millään tavalla. Kaikki tuntuu erilaiselta, kun hän kuulee metsässä asuvien ihmisten unia. Mutta lopullisia johtopäätöksiä ei tehdä... Linnut eivät puhu ihmisille, mutta jos ymmärtäisimme niitä, niillä olisi varmasti kerrottavaa meille.</p><p>Ikäraja: 12<br>Puhuttu kieli: englanti, portugali, Pohjois-Amerikan alkuperäiskieli, sioux<br>Tekstitys: englanti<br>Ohjaaja: Lisandro Alonso</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 12–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837453/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Alaina är trött på att vara polis i Pine Ridge-reservatet och bestämmer sig för att sluta svara på anrop i sin radio.</p><p>Hennes systerdotter Sadie tillbringar en lång natt med att vänta på henne, men utan resultat. Sårad bestämmer hon sig för att påbörja sin resa med hjälp av sin farfar: hon ska flyga genom tid och rum till Sydamerika – äntligen ska hon sluta titta på gamla svartvita westernfilmer som inte representerar henne på något sätt – och allt kommer att kännas annorlunda när hon får höra andra människors drömmar, från dem som bor i skogen. Men det kommer inte att leda till några definitiva slutsatser ... Fåglar pratar inte med människor, men om vi bara kunde förstå dem skulle de säkert säga oss ett sanningens ord.</p><p>Åldersgräns: 12<br>Talat språk: Engelska, portugisiska, nordamerikanskt indianspråk, sioux<br>Undertexter: Engelska<br>Regissör: Lisandro Alonso</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837453/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Alaina is tired of being a police officer in the Pine Ridge Reservation, and decides to stop answering her radio.</p><p>Her niece Sadie spends a long night waiting for her, to no avail. Hurt, she decides to begin her journey with the help of her grandfather: she will fly through time and space to South America, finally she will stop watching old black and white westerns that do not represent her in any way, and everything will feel different when she hears the dreams of other people, those who live in the forest. But there will be no definitive conclusions... Birds don’t talk to humans, yet if only we could understand them, they would surely have a few truths to tell us.</p><p>Age Limit: 16<br>Spoken language:  English, Portuguese, North American Indian, Sioux<br>Subtitles: English<br>Director: Lisandro Alonso</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837453/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "name": {
                "fi": "KINO CAISA: Eureka (16)",
                "sv": "KINO CAISA: Eureka (16)",
                "en": "KINO CAISA: Eureka (16)"
            },
            "short_description": {
                "fi": "Alaina on kyllästynyt poliisin työhönsä Pine Ridgen reservaatissa ja päättää lopettaa radiopuhelimeen vastaamisen.",
                "sv": "Alaina är trött på att vara polis i Pine Ridge-reservatet och bestämmer sig för att sluta svara på anrop i sin radio.",
                "en": "Alaina is tired of being a police officer in the Pine Ridge Reservation, and decides to stop answering her radio."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65532/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65531",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:758/?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": [],
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749337/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749337/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749337/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 172648,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-27T14:13:48.867232Z",
                    "last_modified_time": "2025-01-27T14:13:48.867245Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760430.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/172648/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-27T14:13:48.850869Z",
            "last_modified_time": "2025-03-12T09:14:47.434713Z",
            "date_published": null,
            "start_time": "2025-03-25T12: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/BD011D7777BD085911D688571DE1B0F6/KINO_CAISA_No_Other_Land_16_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/BD011D7777BD085911D688571DE1B0F6/KINO_CAISA_No_Other_Land_16_",
                "en": "http://www.caisa.fi/en/events/event/BD011D7777BD085911D688571DE1B0F6/KINO_CAISA_No_Other_Land_16_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Palestiinalainen aktivisti Basel Adra on puolen vuosikymmenen ajan kuvannut Israelin miehityksen tuhoamaa Masafer Yattabeingin yhteisöään.</p><p>Hän solmii epätodennäköisen liiton israelilaisen toimittajan kanssa, joka haluaa liittyä hänen taisteluunsa.</p><p>Basel Adra, nuori palestiinalaisaktivisti Masafer Yattasta, on taistellut lapsesta asti yhteisönsä joukkokarkotusta ja israelilaisia miehittäjiä vastaan. Basel dokumentoi Masafer Yattan asteittaista hävittämistä, kun sotilaat tuhoavat perheiden koteja. Tämä on suurin yksittäinen pakkosiirto, joka on koskaan toteutettu miehitetyllä Länsirannalla. Basel tapaa israelilaisen toimittajan Yuvalin, joka liittyy hänen taisteluunsa.</p><p>Yli viiden vuoden ajan he taistelevat karkotusta vastaan ja lähentyvät toisiaan. Heidän välilleen syntyvää sidettä vaikeuttaa äärimmäinen epätasa-arvo: Baselin todellisuutta on raaka sotilasmiehitys, ja Yuvalin elämä on rajoittamatonta ja vapaata. Neljän nuoren aktivistin palestiinalais-israelilaiskollektiivin elokuva syntyi alueen synkimpinä ja kauhistuttavimpina aikoina. Se on luovaa vastarintaa apartheidia vastaan ja tien etsimistä kohti tasa-arvoa ja oikeudenmukaisuutta.</p><p>Ikäraja: 12<br>Kesto: 95 min<br>Puhuttu kieli: arabia<br>Tekstitys: englanti<br>Basel Adra, Hamdan Ballal, Yuval Abraham, Rachel Szor</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837446/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>I fem års tid har Basel Adra, en palestinsk aktivist, filmat samhället Masafer Yatta som håller på att förstöras av Israels ockupation, samtidigt som en osannolik vänskap formas mellan honom och en israelisk journalist som vill ansluta sig till hans kamp.</p><p>Basel Adra, en ung palestinsk aktivist från Masafer Yatta, har sedan barnsben kämpat mot den massfördrivning som den israeliska ockupationen orsakat hans samhälle. Basel dokumenterar den gradvisa utplåningen av Masafer Yatta, när soldater raserar familjers hem i den största enskilda tvångsförflyttningen som någonsin genomförts på den ockuperade Västbanken. Hans väg korsas med Yuval, en israelisk journalist som ansluter sig till hans kamp, och i mer än fem års tid kämpar de mot utdrivningen samtidigt som de kommer varandra allt närmare.</p><p>Deras komplexa band är hårt ansatta av den extrema ojämlikheten mellan dem: Basel lever under en brutal militär ockupation, medan Yuval är obegränsad och fri. Denna film, som är gjord av ett palestinskt-israeliskt kollektiv bestående av fyra unga aktivister, skapades under den mörkaste och mest skrämmande tiden i regionen, som en kreativ motståndshandling mot apartheid och ett sökande efter en väg mot jämlikhet och rättvisa.</p><p>Åldersgräns: 12<br>Längd: 95 min.<br>Talat språk: Arabiska<br>Undertexter: Engelska<br>Basel Adra, Hamdan Ballal, Yuval Abraham, Rachel Szor</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837446/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>For half a decade, Basel Adra, a Palestinian activist, films his community of Masafer Yattabeing destroyed by Israel's occupation, as he builds an unlikely alliance with an Israeli journalist who wants to join his fight.</p><p>Basel Adra, a young Palestinian activist from Masafer Yatta, has been fighting his community's mass expulsion by the Israeli occupation since childhood. Basel documents the gradual erasure of Masafer Yatta, as soldiers destroy the homes of families-the largest single act of forced transfer ever carried out in the occupied West Bank. He crosses paths with Yuval, an Israeli journalist who joins his struggle, and for over half a decade they fight against the expulsion while growing closer. Their complex bondis haunted by the extreme inequality between them: Basel, living under a brutal military occupation, and Yuval, unrestricted and free. This film, by a Palestinian-Israeli collective of four young activists, was co-created during the darkest, most terrifying times in the region, as an act of creative resistance to Apartheid and a search for a path towards equality and justice.</p><p>Age Limit: 16<br>Duration: 95 min<br>Spoken language: Arabic<br>Subtitles: English<br>Basel Adra, Hamdan Ballal, Yuval Abraham, Rachel Szor</p><p>Palestine, Norway, 2024</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837446/?affiliate=FSF\">HERE</a></u></p>"
            },
            "name": {
                "fi": "KINO CAISA: No Other Land (16)",
                "sv": "KINO CAISA: No Other Land (16)",
                "en": "KINO CAISA: No Other Land (16)"
            },
            "short_description": {
                "fi": "Palestiinalainen aktivisti Basel Adra on puolen vuosikymmenen ajan kuvannut Israelin miehityksen tuhoamaa Masafer Yattabeingin yhteisöään.",
                "sv": "I fem års tid har Basel Adra, en palestinsk aktivist, filmat samhället Masafer Yatta som håller på att förstöras av Israels ockupation, samtidigt som en osannolik vänskap formas mellan honom och en israelisk journalist som vill ansluta sig till hans kamp.",
                "en": "For half a decade, Basel Adra, a Palestinian activist, films his community of Masafer Yattabeing destroyed by Israel's occupation, as he builds an unlikely alliance with an Israeli journalist who wants to join his fight."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65531/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65529",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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:758/?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": [],
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749347/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749347/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-19749347/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 174396,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-28T10:14:35.031966Z",
                    "last_modified_time": "2025-01-28T10:14:35.031981Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760427.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174396/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-28T10:14:35.007951Z",
            "last_modified_time": "2025-03-12T09:14:45.285847Z",
            "date_published": null,
            "start_time": "2025-03-18T12: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/B38B38A9857EA005BEBE3C6515A99C6F/KINO_CAISA_Uproar_12_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/B38B38A9857EA005BEBE3C6515A99C6F/KINO_CAISA_Uproar_12_",
                "en": "http://www.caisa.fi/en/events/event/B38B38A9857EA005BEBE3C6515A99C6F/KINO_CAISA_Uproar_12_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Julian Dennison ja Minnie Driver tähdittävät tätä hauskaa, sydäntä lämmittävää ja innoittavaa tarinaa nuoren miehen kamppailusta löytää oma aito äänensä.</p><p>Uusi-Seelanti, 1981. Taistelu maorikulttuurin tunnustamisesta kiehuttaa alkuperäiskansaa ja saa aikaan maanlaajuisia mielenosoituksia. 17-vuotiaalla Josh Waakalla on maori-juuret , ja hänellä on ulkopuolinen olo rugbysta intoilevassa yliopistossa.</p><p>Kun Joshin opettaja Madigan suosittelee hänelle teatterikurssia, hän löytää intohimon, jota ei tiennyt tuntevansa. Unelmaa ei kuitenkaan ole helppo tavoitella ympäristössä, jossa näyttää erilaiselta ja jossa oman äidin odotukset ovat jotain aivan muuta.</p><p>Kun mielenosoitukset eri puolilla maata herättävät Joshissa voimakkaan epäoikeudenmukaisuuden tunteen, hänen unelmansa on vaarassa hiipua ennen kuin on päässyt vauhtiin.</p><p>Kesto: 110 minuuttia<br>Ikäraja: 12<br>Puhuttu kieli: englanti<br>Tekstityskieli: suomi</p><p>Ohjaaja: Paul Middleditch, Hamish Bennet</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837451/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Julian Dennison och Minnie Driver spelar huvudrollerna i denna roliga, hjärtevärmande och inspirerande berättelse om en ung mans kamp för att hitta sin autentiska röst.</p><p>Nya Zeeland, 1981. Kampen för att få maorikulturen erkänd väcker känslor hos ursprungsbefolkningen och leder till landsomfattande demonstrationer. Den 17-åriga Josh Waaka har maoriska rötter och känner sig som en outsider på ett universitet som är besatt av rugby.</p><p>När Joshs lärare Madigan rekommenderar en teaterkurs upptäcker han en passion som han aldrig visste att han hade. Men det är inte lätt att förverkliga en dröm i en miljö där man ser annorlunda ut och där den egna moderns förväntningar är något helt annat.</p><p>Demonstrationerna runt om i landet väcker en stark känsla av orättvisa hos Josh, och hans dröm riskerar att försvinna innan den ens har kommit igång.</p><p>Längd: 110 minuter<br>Åldersgräns: lämplig för alla åldrar<br>Talat språk: engelska<br>Textningsspråk: finska<br>Handledare: Paul Middleditch, Hamish Bennet</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837451/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>A 17 year-old teenager is forced to clamber off the fence he has actively sat on all his life to stand up for himself, his whānau (family) and his future.</p><p>Sunedin, 1981. The Springboks are touring New Zealand, sparking nationwide protests. Josh Waaka, 17, is a square peg in the round, rugby-obsessed hole that is St Gilbert’s College. He discovers a passion for acting as well as a greater awareness of his Māori heritage, a combination that ultimately sends him careening headlong into conflict with his oppressive environment when he is exposed for going on a protest march.</p><p>Under pressure from home and school to conform, Josh’s frustrations come to a head when he films a drama school audition tape that ends with a haka, speaking powerfully to the person Josh truly is. Josh’s mother sees the video and they reconcile, and in the final school rugby match of the season, Josh stages a protest and is joined by his family. Through sharing his true voice, Josh has started his family on the journey towards healing.</p><p>Duration: 110 min<br>Age Limit: 12<br>Spoken language: English<br>Subtitles: Finnish<br>Director: Paul Middleditch, Hamish Bennet</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-kulttuurikeskus-caisa-19837451/?affiliate=FSF\">HERE</a></u></p>"
            },
            "name": {
                "fi": "KINO CAISA: Uproar (12)",
                "sv": "KINO CAISA: Uproar (12)",
                "en": "KINO CAISA: Uproar (12)"
            },
            "short_description": {
                "fi": "Julian Dennison ja Minnie Driver tähdittävät tätä hauskaa, sydäntä lämmittävää ja innoittavaa tarinaa nuoren miehen kamppailusta löytää oma aito äänensä.",
                "sv": "Julian Dennison och Minnie Driver spelar huvudrollerna i denna roliga, hjärtevärmande och inspirerande berättelse om en ung mans kamp för att hitta sin autentiska röst.",
                "en": "A 17 year-old teenager is forced to clamber off the fence he has actively sat on all his life to stand up for himself, his whānau (family) and his future."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65529/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "tet:agkysvv4fa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:mannerheimintie_86_helsinki/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:10/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:12/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "tet",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [
                {
                    "id": 329531,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-03-12T07:50:35.774261Z",
                    "last_modified_time": "2025-03-12T07:53:34.851947Z",
                    "name": "notset",
                    "url": "https://linkedevents.api.test.hel.ninja/media/images/_MG_0780-pienempi.jpg",
                    "cropping": "280,0,1640,1360",
                    "photographer_name": "smoisala",
                    "alt_text": null,
                    "data_source": "tet",
                    "publisher": "ahjo:00001",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/329531/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2025-03-12T07:51:57.801016Z",
            "last_modified_time": "2025-03-12T07:53:34.235551Z",
            "date_published": "2025-03-11T22:00:00Z",
            "start_time": "2025-02-12",
            "end_time": "2025-03-12",
            "custom_data": {
                "spots": "1",
                "org_name": "Testiyritys",
                "website_url": "https://www.yle.fi",
                "contact_email": "kerrokantasi@hel.fi",
                "contact_phone": "0509876543",
                "contact_last_name": "Testaaja",
                "contact_first_name": "Yrittäjä"
            },
            "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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Hvenerik Testbolag AB",
                "sv": "7009773-3"
            },
            "description": {
                "fi": "Harjoittelija"
            },
            "name": {
                "fi": "yrityksen harjoittelija"
            },
            "short_description": {
                "fi": "Harjoittelija"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agkysvv4fa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "tet:agkyss2ism",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:57184/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:3/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:6/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:7/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p84/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "tet",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [
                {
                    "id": 329530,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-03-12T07:37:17.654758Z",
                    "last_modified_time": "2025-03-12T07:39:28.485346Z",
                    "name": "notset",
                    "url": "https://linkedevents.api.test.hel.ninja/media/images/_MG_0879_2.jpg",
                    "cropping": "452,0,1468,1016",
                    "photographer_name": "smoisala",
                    "alt_text": null,
                    "data_source": "tet",
                    "publisher": "ahjo:00001",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/329530/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2025-03-12T07:39:27.299659Z",
            "last_modified_time": "2025-03-12T07:39:27.299678Z",
            "date_published": "2025-03-12T07:39:26.815000Z",
            "start_time": "2025-03-20",
            "end_time": "2025-05-31",
            "custom_data": {
                "spots": "1",
                "org_name": "Digiyksikkö",
                "editor_oid": "6aa436fe-b496-4bd3-a19e-d5aefc9b03e7",
                "website_url": "https://www.hel.fi",
                "contact_email": "kerrokantasi@hel.fi",
                "contact_phone": "0401234567",
                "contact_last_name": "Testaaja",
                "contact_first_name": "Testi"
            },
            "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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin kaupunki"
            },
            "description": {
                "fi": "Testataan toiminnallisuuksia."
            },
            "name": {
                "fi": "Kokemusasiantuntija"
            },
            "short_description": {
                "fi": "Testataan toiminnallisuuksia."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agkyss2ism/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350658",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748841/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350658/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350658/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350658/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235431,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.456387Z",
                    "last_modified_time": "2025-02-17T11:16:41.456408Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/eyp-lp-222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235431/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:16:51.378158Z",
            "last_modified_time": "2025-03-12T00:16:38.029769Z",
            "date_published": null,
            "start_time": "2025-03-11T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Agatha Christie<br><strong>Eikä yksikään pelastunut</strong></p><p>Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri. Tehokas, hyvin rakennettu ja perinteinen jännitysnäytelmä on Agatha Christietä parhaimmillaan.</p><p>Agatha Christien klassikkodekkari Eikä yksikään pelastunut vie Devonin rannikolle Soldier Islandille, jonne kymmenen ihmistä on saanut kutsun. Kun seurue saapuu paikalle, ilmenee, että isäntäpari ei ole vielä saapunut. Takan reunalta löytyy vanha loru kymmenestä sotilaspojasta sekä kymmenen sotilaspatsasta.</p><p>Lorussa jokainen sotilaspoika kuolee, yksi kerrallaan. Pian käynnistyy äänilevy, jossa jokaista vierasta ja talon palvelijoita syytetään murhista.</p><p>Sitten seurueen jäseniä alkaa kuolla.</p><p>Jokaisen kuolemantapauksen yhteydessä häviää yksi kymmenestä posliinisesta sotilaspoikapatsaasta.</p><p>Kunnes jäljellä ei ole yhtäkään.</p><p>Karmivan kiehtova dekkari tarjoaa intensiivisen parituntisen Arena-näyttämöllä, joka on todistanut paikkansa jännitysnäytelmien ykkösnäyttämönä. Arena-näyttämön intiimissä tunnelmassa nautittiin supersuosittu Agatha Christien Hiirenloukku syksyllä 2023.</p><p>Rooleissa: Anna Ackerman, Jesse Gyllenbögel, Heidi Herala, Arttu Kapulainen, Juha Jokela, Santeri Kinnunen, Jouko Klemettilä, Pertti Koivula, Jari Pehkonen Kaisa Torkkel, Mikko Virtanen</p><p>Kirjailija: Agatha Christie<br>Suomentaja: Aino Piirola<br>Ohjaus: Sakari Hokkanen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Jaana Nykänen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy<br></p>"
            },
            "name": {
                "fi": "Eikä Yksikään Pelastunut"
            },
            "short_description": {
                "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri."
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350658/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19036786",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036786/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036786/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036786/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:16:51.267927Z",
            "last_modified_time": "2025-03-12T00:16:37.949310Z",
            "date_published": null,
            "start_time": "2025-03-11T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Jyrki Kasper, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036786/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19326904",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3594382/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326904/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326904/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326904/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235439,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:44.559638Z",
                    "last_modified_time": "2025-02-17T11:16:44.559655Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hkt_mollin_iltahepuli_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235439/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:16:51.145769Z",
            "last_modified_time": "2025-03-12T00:16:37.874103Z",
            "date_published": null,
            "start_time": "2025-03-11T08: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,
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=en"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Katri Kirkkopelto<br><strong>MOLLIN ILTAHEPULI</strong></p><p>Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta. Mitä tapahtuu, kun Mollille ja hänen parhaalle ystävälleen Sisulle iskee iltaväsymyksen sijasta iltahepuli? Esityksessä tarvitaan katsojien apua, jotta päähenkilöt Molli ja Sisu saadaan unten maille. Esitys pohjautuu Katri Kirkkopellon samannimiseen suosittuun lastenkirjaan.</p><p>Rooleissa: Kaisa Torkkel, Helena Haaranen ja Sari Haapamäki</p><p>Dramatisointi ja ohjaus: Jenny Jumppanen<br>Valosuunnittelu: Milla Veirto<br>Puvustus ja lavastus: Aija Nurminen<br>Naamiointi: Tuula Kuittinen<br>Äänisuunnittelu ja sävellys: Eero Niemi</p>"
            },
            "name": {
                "fi": "Mollin Iltahepuli"
            },
            "short_description": {
                "fi": "Katri Kirkkopelto MOLLIN ILTAHEPULI Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta."
            },
            "location_extra_info": {
                "fi": "Pieni Näyttämö LÄMPIÖ"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326904/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23dk2q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dlpm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490385,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-11T12:31:17.687224Z",
                    "last_modified_time": "2025-03-11T12:31:17.687239Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7ad2a959-fc08-41ab-a311-4249a647979f.png",
                    "cropping": "82,0,569,487",
                    "photographer_name": "",
                    "alt_text": "Vanhukset iloisina kahvilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490385/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-03-11T12:40:16.546201Z",
            "last_modified_time": "2025-03-11T12:40:16.546217Z",
            "date_published": null,
            "start_time": "2025-05-27T09:00:00Z",
            "end_time": "2025-05-27T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>TIISTAINA 25.3. KELLO 12-14 - Aiheena etsivä vanhustyö </p><p>TIISTAINA 22.4. KELLO 12-14 - Teemana turvallisuus</p><p>TORSTAINA 27.5. KELLO 12-14 - Pureudumme Digitaitoihin ja Alueen eläkeläisjärjestöt esittäytyvät. </p><p>Myös Seniori-info on paikalla joka kerta kello 12-15. </p><p>Lämpimästi tervetuloa mukaan saamaan tietoa ja oppimaan ja tutustumaan alueen ihmisiin. Kohtaamiskahvilaan saa jäädä istuskelemaan ja juttelemaan kello 15 asti.</p>",
                "sv": "<p>TISDAG 25.3. KL. 12–14 – Tema: Uppsökande äldrearbete</p><p>TISDAG 22.4. KL. 12–14 – Tema: Säkerhet</p><p>TORSDAG 27.5. KL. 12–14 – Vi fördjupar oss i digitala färdigheter, och pensionärsorganisationer i området presenterar sig.</p><p>Seniorinfo är också på plats varje gång kl. 12–15.</p><p>Varmt välkommen att ta del av information, lära dig nytt och träffa människor i området. Mötescaféet är öppet för att sitta och samtala fram till kl. 15.</p>",
                "en": "<p>TUESDAY, MARCH 25, 12:00–14:00 – Topic: Outreach work for the elderly</p><p>TUESDAY, APRIL 22, 12:00–14:00 – Theme: Security</p><p>THURSDAY, MAY 27, 12:00–14:00 – We will explore digital skills, and local pensioners' organizations will introduce themselves.</p><p>Senior Info will also be present each time from 12:00 to 15:00.</p><p>You are warmly welcome to receive information, learn new things, and meet people from the area. The meeting café will remain open for sitting and chatting until 15:00.</p>"
            },
            "name": {
                "fi": "Ompun kohtaamiskahvila",
                "sv": "Omppus mötescafé",
                "en": "Omppu's Meeting Café"
            },
            "short_description": {
                "fi": "Asiaa ja iloa Espoon senioreille",
                "sv": "Kunskap och glädje för seniorer i Esbo",
                "en": "Information and joy for Espoo seniors"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dk2q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23dlpm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dk2q/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490385,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-11T12:31:17.687224Z",
                    "last_modified_time": "2025-03-11T12:31:17.687239Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7ad2a959-fc08-41ab-a311-4249a647979f.png",
                    "cropping": "82,0,569,487",
                    "photographer_name": "",
                    "alt_text": "Vanhukset iloisina kahvilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490385/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-03-11T12:40:15.585219Z",
            "last_modified_time": "2025-03-11T12:40:15.585234Z",
            "date_published": null,
            "start_time": "2025-03-25T10:00:00Z",
            "end_time": "2025-05-27T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>TIISTAINA 25.3. KELLO 12-14 - Aiheena etsivä vanhustyö </p><p>TIISTAINA 22.4. KELLO 12-14 - Teemana turvallisuus</p><p>TORSTAINA 27.5. KELLO 12-14 - Pureudumme Digitaitoihin ja Alueen eläkeläisjärjestöt esittäytyvät. </p><p>Myös Seniori-info on paikalla joka kerta kello 12-15. </p><p>Lämpimästi tervetuloa mukaan saamaan tietoa ja oppimaan ja tutustumaan alueen ihmisiin. Kohtaamiskahvilaan saa jäädä istuskelemaan ja juttelemaan kello 15 asti.</p>",
                "sv": "<p>TISDAG 25.3. KL. 12–14 – Tema: Uppsökande äldrearbete</p><p>TISDAG 22.4. KL. 12–14 – Tema: Säkerhet</p><p>TORSDAG 27.5. KL. 12–14 – Vi fördjupar oss i digitala färdigheter, och pensionärsorganisationer i området presenterar sig.</p><p>Seniorinfo är också på plats varje gång kl. 12–15.</p><p>Varmt välkommen att ta del av information, lära dig nytt och träffa människor i området. Mötescaféet är öppet för att sitta och samtala fram till kl. 15.</p>",
                "en": "<p>TUESDAY, MARCH 25, 12:00–14:00 – Topic: Outreach work for the elderly</p><p>TUESDAY, APRIL 22, 12:00–14:00 – Theme: Security</p><p>THURSDAY, MAY 27, 12:00–14:00 – We will explore digital skills, and local pensioners' organizations will introduce themselves.</p><p>Senior Info will also be present each time from 12:00 to 15:00.</p><p>You are warmly welcome to receive information, learn new things, and meet people from the area. The meeting café will remain open for sitting and chatting until 15:00.</p>"
            },
            "name": {
                "fi": "Ompun kohtaamiskahvila",
                "sv": "Omppus mötescafé",
                "en": "Omppu's Meeting Café"
            },
            "short_description": {
                "fi": "Asiaa ja iloa Espoon senioreille",
                "sv": "Kunskap och glädje för seniorer i Esbo",
                "en": "Information and joy for Espoo seniors"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dlpm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65596",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmijazz/malmijazz-torino-unlimited-noise-it-ja-aki-himanen-aleksi-kinnunen-this-is-techno-jazz-3834355/",
                        "sv": "https://www.lippu.fi/artist/malmijazz/malmijazz-torino-unlimited-noise-it-ja-aki-himanen-aleksi-kinnunen-this-is-techno-jazz-3834355/",
                        "en": "https://www.lippu.fi/artist/malmijazz/malmijazz-torino-unlimited-noise-it-ja-aki-himanen-aleksi-kinnunen-this-is-techno-jazz-3834355/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 221070,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-13T12:14:49.617899Z",
                    "last_modified_time": "2025-02-13T12:14:49.617915Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765485.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221070/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-13T12:14:49.573028Z",
            "last_modified_time": "2025-03-11T12:14:50.451763Z",
            "date_published": null,
            "start_time": "2025-04-04T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/16C4A795A2672CF9FE3D8025ECFB234A/Torino_Unlimited_Noise_IT_Aki_Himanen_Aleksi_Kinnunen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/16C4A795A2672CF9FE3D8025ECFB234A/Torino_Unlimited_Noise_IT_Aki_Himanen_Aleksi_Kinnunen",
                "en": "http://www.malmitalo.fi/en/events/event/16C4A795A2672CF9FE3D8025ECFB234A/Torino_Unlimited_Noise_IT_Aki_Himanen_Aleksi_Kinnunen"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Jazz-musiikki kohtaa teknon hypnoottiset rytmit, kun lavalla nähdään italialainen Torino Unlimited Noise ja suomalainen duo Aki Himanen & Aleksi Kinnunen.</p><p>TUN, eli Torino Unlimited Noise, on voimakas yhtye, jossa soittaa Italian kiinnostavimpia jazzmuusikoita. TUN rikkoo genrerajoja yhdistämällä teknon rytmit jazziin luoden samalla raikasta ja ainutlaatuista uutta soundia.</p><p>TUNin kokoonpanossa soittaa mm. palkittu pianisti Fabio Giachino, joka on saanut tunnustusta niin Italiassa kuin kansainvälisesti ja valittu useasti maan parhaiden jazzmuusikoiden joukkoon.</p><p><b>Torino Unlimited Noise</b><br>Gianni Denitto, saksofoni<br>Fabio Giachino, syntetisaattorit<br>Mattia Barbieri, rummut</p><p>Italian collective Torino Unlimited Noise is at the forefront of a new sound, drawing on the history of jazz and futurism of techno to cook up brand new sounds that are challenging yet compelling. <br>— Itsoundsfuture.com</p><p>Trumpetisti Aki Himanen ja rumpali Aleksi Kinnunen ovat muusikoita sekä elektronisen musiikin tuottajia, jotka yhdistelevät ennakkoluulottomasti teknomusiikin tanssittavaa sykettä ja jazz-musiikin spontaaniutta. He pyrkivät jatkuvasti löytämään uusia keinoja ihmisen ja koneiden väliselle vuorovaikutukselle improvisaation sekä musiikillisen kommunikaation keinoin.</p><p>Aki Himanen & Aleksi Kinnunen on tunnettu myös tanssilattian räjäyttävistä live-esiintymisistään, joita on kuultu niin teknoklubeilla kuin suurilla Keski-Euroopan jazz-festivaaleillakin. Viime vuonna duo soitti loppuunmyydyn keikan Berliinin Kantine am Berghain:ssa, joka on maailman kenties arvostetuimman teknoinstituution live-klubi.</p><p>Kesto 2 tuntia 10min, sisältäen väliajan 20min</p>",
                "sv": "<p>Jazzmusik möter technons hypnotiska rytmer när Torino Unlimited Noise från Italien och den finska duon Aki Himanen & Aleksi Kinnunen går upp på scenen.</p><p>TUN, Torino Unlimited Noise, är en powertrio av några av Italiens mest intressanta jazzmusiker. TUN bryter genregränser genom att kombinera technorytmer med jazz och samtidigt skapa ett nytt, fräscht och unikt sound.</p><p>I TUN:s sammansättning ingår bland annat den prisbelönte pianisten Fabio Giachino, som har uppmärksammats både i Italien och internationellt och som vid flera tillfällen har valts till en av landets bästa jazzmusiker.</p><p><b>Torino Unlimited Noise</b><br>Gianni Denitto, saxofon<br>Fabio Giachino, synthar<br>Mattia Barbieri, trummor</p><p>Trumpetisten Aki Himanen och trumslagaren Aleksi Kinnunen är musiker och producenter av elektronisk musik som fördomsfritt kombinerar technomusikens dansanta puls med jazzmusikens spontanitet. De söker ständigt nya sätt för människor och maskiner att växelverka genom improvisation och musikalisk kommunikation.</p><p>Aki Himanen & Aleksi Kinnunen är också kända för sina liveframträdanden som får det att vimla på dansgolvet och som har hörts på såväl technoklubbar som på stora centraleuropeiska jazzfestivaler. Förra året spelade duon en utsåld spelning på Kantine am Berghain i Berlin, liveklubben hos världens kanske mest uppskattade technoinstitution.</p><p>Längd 2 timmar 10 min, inklusive 20 minuters paus</p>",
                "en": "<p>Jazz music meets techno’s hypnotic rhythms when the stage features Italian Torino Unlimited Noise and Finnish duo Aki Himanen & Aleksi Kinnunen.</p><p>TUN, or Turin Unlimited Noise, is a power trio including some of Italy’s most interesting jazz musicians. TUN breaks genre boundaries by combining techno rhythms with jazz to create a fresh and unique new sound.</p><p>Among others, TUN’s line-up consists of the award-winning pianist Fabio Giachino, who has received recognition both in Italy and internationally and has been selected several times as one of the country's best jazz musicians.</p><p><b>Turin Unlimited Noise</b><br>Gianni Denitto, saxophone<br>Fabio Giachino, synthesisers<br>Mattia Barbieri, drums</p><p>Trumpetist Aki Himanen and drummer Aleksi Kinnunen are musicians and electronic music producers who open-mindedly combine the dancing heartbeat of techno music and the spontaneity of jazz music. They are constantly striving to find new ways of human-machine interaction through improvisation and musical communication.</p><p>Aki Himanen and Aleksi Kinnunen are also known for their live performances energising the dance floor, which have been heard in techno clubs as well as in major Central European jazz festivals. Last year, the duo played a sold-out gig at Berlin’s Kantine am Berghain, a live club from perhaps the world’s most prestigious tech institution.</p><p>Duration: 2 hours, including a 20-minute intermission</p>"
            },
            "name": {
                "fi": "Torino Unlimited Noise (IT) + Aki Himanen & Aleksi Kinnunen – MalmiJazz",
                "sv": "Torino Unlimited Noise (IT) + Aki Himanen & Aleksi Kinnunen – MalmiJazz",
                "en": "Torino Unlimited Noise (IT) + Aki Himanen & Aleksi Kinnunen – MalmiJazz"
            },
            "short_description": {
                "fi": "Jazz-musiikki kohtaa teknon hypnoottiset rytmit, kun lavalla nähdään italialainen Torino Unlimited Noise ja suomalainen duo Aki Himanen & Aleksi Kinnunen.",
                "sv": "Jazzmusik möter technons hypnotiska rytmer när Torino Unlimited Noise från Italien och den finska duon Aki Himanen & Aleksi Kinnunen går upp på scenen.",
                "en": "Jazz music meets techno’s hypnotic rhythms when the stage features Italian Torino Unlimited Noise and Finnish duo Aki Himanen & Aleksi Kinnunen."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65596/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23dmc4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dm2m/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150479,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-08T11:19:23.769532Z",
                    "last_modified_time": "2024-03-08T11:19:23.769564Z",
                    "name": "Sigmund W / Unsplash",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/sigmund-OV44gxH71DU-unsplash.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Lapsi askartelee pöydän ääressä. Pöydällä askartelu tarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-01-15T14:32:35.236998Z",
            "last_modified_time": "2025-03-11T11:45:04.754520Z",
            "date_published": null,
            "start_time": "2025-05-21T12:30:00Z",
            "end_time": "2025-05-21T14: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.</p>",
                "sv": "<p>Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.</p>",
                "en": "<p>Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.</p>"
            },
            "name": {
                "fi": "Pajailtapäivä ",
                "sv": "Pysseleftermiddag i bibliotekets Makerspace",
                "en": "Arts and crafts afternoon in the library’s Makerspace"
            },
            "short_description": {
                "fi": "Tule askartelemaan yhdessä kirjaston Pajassa. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa tarvittavat materiaalit.",
                "sv": "Kom och pyssla tillsammans i bibliotekets Paja . Varje eftermiddag har ett nytt tema. Biblioteket tillhandahåller nödvändigt material.",
                "en": "Come and do arts and crafts together in the library's Makerspace. Each afternoon has a different theme. The library will provide the necessary materials.  "
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dmc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}