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

{
    "meta": {
        "count": 27581,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=245&show_all=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=243&show_all=true"
    },
    "data": [
        {
            "id": "lippupiste:19667025",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3802085/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/dreamer-helsingin-kaupunginteatteri-19667025/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/dreamer-helsingin-kaupunginteatteri-19667025/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/dreamer-helsingin-kaupunginteatteri-19667025/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235443,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:56.262449Z",
                    "last_modified_time": "2025-02-17T11:16:56.262465Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/72/54/hkt-dreamer222-tickets_341904_2916919_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/235443/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:02.665318Z",
            "last_modified_time": "2025-04-02T23:15:53.408162Z",
            "date_published": null,
            "start_time": "2025-04-02T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Helsinki Dance Company & Annamari Keskinen & Ryan Mason DREAMER DREAMER on monitaiteellinen tanssiteos näkyvän ja näkymättömän maailman vuorovaikutuksesta."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/dreamer-3802085/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/dreamer-3802085/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/dreamer-3802085/?affiliate=ADV&language=en"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "name": {
                "en": "Dreamer"
            },
            "description": {
                "fi": "<p>Helsinki Dance Company &amp; Annamari Keskinen &amp; Ryan Mason<br><strong>DREAMER</strong></p><p>DREAMER on monitaiteellinen tanssiteos näkyvän ja näkymättömän maailman vuorovaikutuksesta. Esitys kutsuu yleisön surrealistiseen odotushuoneeseen, jossa ihmiskehot, liike, musiikki ja tila sulautuvat yhteen.</p><p>Teoksen ilmaisuvoimaiset esiintyjät johdattavat yleisön matkalle alitajunnan syviin virtauksiin, missä piilotetut pelot, toiveet, ja nautinnot tulevat käsinkosketeltaviksi – lihaksi ja liikkeeksi. DREAMER tekee näkyväksi periksiantamattoman pyrkimyksemme tavoitella uskomatonta myös mahdottoman edessä.</p><p>Annamari Keskinen (1985, Suomi) ja Ryan Mason (1980, USA) ovat tulleet tunnetuksi omaäänisistä, vahvan fyysisistä ja usein elokuvamaisista kansainvälisesti arvostetuista näyttämöteoksistaan.</p><p>Rooleissa: Inka Tiitinen, Sofia Hilli, Mikko Paloniemi, Jyrki Kasper, Justus Pienmunne, Pekka Louhio</p><p>Koreografia: Annamari Keskinen ja Ryan Mason<br>Skenografia ja valosuunnittelu: William Iles<br>Pukusuunnittelu: Elina Kolehmainen<br>Sävellys ja äänisuunnittelu: Timo Tikka<br>Naamioinnin suunnittelu: Henri Karjalainen</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667025/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350925",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748849/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-sinun-margot-helsingin-kaupunginteatteri-19350925/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-sinun-margot-helsingin-kaupunginteatteri-19350925/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-sinun-margot-helsingin-kaupunginteatteri-19350925/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235432,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.590376Z",
                    "last_modified_time": "2025-02-17T11:16:41.590394Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/sinun-margot_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/235432/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:02.543351Z",
            "last_modified_time": "2025-04-02T23:15:53.357015Z",
            "date_published": null,
            "start_time": "2025-04-02T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Meri Valkama – Tuomas Timonen Sinun, Margot Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nous"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=en"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "name": {
                "fi": "Sinun, Margot"
            },
            "description": {
                "fi": "<p>Meri Valkama – Tuomas Timonen<br><strong>Sinun, Margot</strong></p><p>Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nousi heti ilmestyttyään kirjallisuutemme merkkiteokseksi. Helsingin Kaupunginteatteri vastaa lukijoiden ja katsojien lukuisiin pyyntöihin valmistamalla Riikka Oksasen ohjaamana menestysromaanin pohjalta upean teatteriversion suurelle näyttämölle.</p><p>Vilja Siltasen isä Markus on juuri kuollut. Hänen asunnostaan löytyy nippu kirjeitä naiselta nimeltä Margot. Viljan äiti ei suostu sanomaan kirjeistä mitään, joten Viljan on matkustettava takaisin Berliiniin selvittämään, keneltä kirjeet ovat.</p><p>Vilja on varttunut DDR:ssä, jossa hänen isänsä työskenteli ulkomaankirjeenvaihtajana 1980-luvun alkupuolella. Perhe piti Itä-Saksaa ihannevaltiona. Sitten Berliinin muuri murtui ja perheonni hajosi. Miksi? Ja kuka kirjeiden Margot oikein on?</p><p>Sinun, Margot laajenee yksilön ja perheen tarinasta suureksi, kokonaista aikakautta tarkastelevaksi jännitysnäytelmäksi. Otteessaan pitävä draama onnistuu pohtimaan poikkeuksellisella tavalla ajankohtaisia kysymyksiä: Voiko menneisyyden muistaminen auttaa ymmärtämään nykyisyyttä?</p><p>Sinun, Margot on intensiivinen, psykologinen näytelmä siitä, mitä tapahtuu, kun ihanteelliseksi rakennettu kuva elämästä, aatteesta, tai ihmisestä alkaa särkyä. Kuka tai mitä ihminen lopulta on, jollei tiedä totuutta omasta menneisyydestään?</p><p>Viljan roolissa nähdään Jussi-palkittu Satu Tuuli Karhu. Margotina loistaa elokuvista ja televisiosta tuttu Sara Soulié. Viljan isää Markusta näyttelee useissa elokuvissa vaikutuksen tehnyt Martin Bahne ja Viljan äitiä Rosaa näyttelee upea Sanna-June Hyde.</p><p>Rooleissa: Satu Tuuli Karhu, Sara Soulié, Martin Bahne, Helena Haaranen, Vuokko Hovatta, Sanna-June Hyde, Tuukka Leppänen, Lasse Lipponen, Sanna Majuri, Risto Kaskilahti, Samuli Pajunen, Emma Pälsynaho, Raili Raitala</p><p>Kirjailija: Meri Valkama<br>Dramatisointi: Tuomas Timonen<br>Ohjaus: Riikka Oksanen<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Tiina Kaukanen<br>Valo- ja videosuunnittelu: Toni Haaranen<br>Äänisuunnittelu: Eradj Nazimov<br>Naamioinnin suunnittelu: Milja Mensonen<br>Dramaturgi: Ari-Pekka Lahti<br>Ohjaajan assistentti: Kirsi Karlenius</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350925/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350663",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350663/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350663/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350663/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "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:17:02.407546Z",
            "last_modified_time": "2025-04-02T23:15:53.292781Z",
            "date_published": null,
            "start_time": "2025-04-02T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri."
            },
            "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"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "name": {
                "fi": "Eikä Yksikään Pelastunut"
            },
            "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>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350663/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350580",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?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-3748845/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350580/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350580/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350580/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235435,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.389566Z",
                    "last_modified_time": "2025-02-17T11:16:42.389583Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/skymning_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/235435/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:02.287866Z",
            "last_modified_time": "2025-04-02T23:15:53.242543Z",
            "date_published": null,
            "start_time": "2025-04-02T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Kjell Westö - Annina Enckell Skymning 41 – berättelsen om Molly och Henry Året är 1939 då nyförälskade Molly och Henry förstår att deras lilla nation kommer att"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=en"
            },
            "location_extra_info": {
                "fi": "Lilla Teatern"
            },
            "name": {
                "sv": "Skymning 41 - Berättelsen Om Molly Och Henry"
            },
            "description": {
                "fi": "<p>***<br>Vuonna 1939 vastarakastuneet Molly ja Henry kohtaavat sodan, joka muuttaa heidän elämänsä. Näyttelijä Molly lähtee Ruotsiin keräämään rahaa Suomen puolesta, kun Henry taas raportoi rintaman kauhuista, mutta hänen rehelliset tekstinsä jäävät julkaisematta. Esitys, joka perustuu Kjell Westön romaaniin, kertoo sodan vaikutuksista siviileihin sekä rakkaudesta ja moraalista kriisiaikana.</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br> Lipunvälittäjä: Lippupiste Oy<br></p>",
                "sv": "<p>Kjell Westö - Annina Enckell<br><strong>Skymning 41 – berättelsen om Molly och Henry</strong></p><p>Året är 1939 då nyförälskade Molly och Henry förstår att deras lilla nation kommer att hamna i krig. Henry skickas inte till fronten, han är för gammal för att bli inkallad. Ändå förändrar kriget allt. Skådespelerskan Molly åker på turné till Sverige för att samla in pengar för Finlands sak, medan Henry reser till fronten för att skriva reportage om krigets fasor. Henrys texter blir inte publicerade, hans förmän tycker språket är för rått och ärligt. De saknar patriotiska berättelser om den finska soldaten – en hjälte som stålt dör för fosterlandet. Samtidigt måste Molly spela triviala roller i lättsamma komedier då hon egentligen skulle vilja “stå på scenen och gestalta mänskans villkor här i världen”. Molly och Henry försöker hitta tillbaka till livet som det var, men kriget är en gapande käft som slukar åt sig människornas glädje och hopp.</p><p>Föreställningen baserar sig på Kjell Westös roman och den handlar om en nation i krig, om hur retoriken i samhället militariseras och om hur kriget påverkar den civila befolkningen. Det är även en berättelse om kärlek och moral i kristid och om att kämpa för det man tror på.</p><p>Aktörer: Saga Sarkola, Elmer Bäck, Pia Runnakko, Alexander Wendelin, Joachim Wigelius, Antti Timonen</p><p>Regi: David Sandqvist<br>Dramatisering: Annina Enckell<br>Scenografi: Peter Ahlqvist<br>Dräktdesign: Sari Suominen<br>Ljusdesign: Pekka Pitkänen<br>Ljuddesign: Niklas Lundström<br>Maskdesign: Jutta Kainulainen<br>Dramaturgi: Henna Piirto</p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350580/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65365",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/tiistaimatinea-tisdagsmatine-ediths-systrar-vuotalo-19615855/",
                        "sv": "https://www.lippu.fi/event/tiistaimatinea-tisdagsmatine-ediths-systrar-vuotalo-19615855/",
                        "en": "https://www.lippu.fi/event/tiistaimatinea-tisdagsmatine-ediths-systrar-vuotalo-19615855/"
                    },
                    "price": {
                        "fi": "10 € / 8 €",
                        "sv": "10 € / 8 €",
                        "en": "10 € / 8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153641,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-02T09:15:52.675275Z",
                    "last_modified_time": "2025-01-02T09:15:52.675294Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761670.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153641/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-02T09:15:52.644639Z",
            "last_modified_time": "2025-04-02T20:13:30.790375Z",
            "date_published": null,
            "start_time": "2025-04-15T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Edithin sisaret on Edith Södergranin runojen innoittama esitys, enimmäkseen ruotsiksi mutta myös vähän suomeksi.",
                "sv": "Ediths systrar är en föreställning inspirerad av Edith Södergrans dikter, mestadels på svenska men också lite på finska.",
                "en": "Ediths sisters is based on poems by Edith Södergran together with choreography and objects. Mostly in swedish but also little in finnish."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1146A0928E29CF085CB90D94BDC65FF9/Edithin_sisaret_-_Edith_Sodergranin_runoja_ja_koreografioita_esineille",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1146A0928E29CF085CB90D94BDC65FF9/Ediths_systrar_-_Recitation_av_Edith_Sodergran-dikter_med_koreografi_och_foremal_",
                "en": "http://www.vuotalo.fi/en/events/event/1146A0928E29CF085CB90D94BDC65FF9/Ediths_systrar_-_Recitation_av_Edith_Sodergran-dikter_med_koreografi_och_foremal_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Edithin sisaret - Edith Södergranin runoja ja koreografioita esineille – Nurinpäin Kollektiivi",
                "sv": "Ediths systrar - Recitation av Edith Södergran-dikter med koreografi och föremål – Nurinpäin Kollektiivi",
                "en": "Ediths systrar - Recitation av Edith Södergran-dikter med koreografi och föremål – Nurinpäin Kollektiivi"
            },
            "description": {
                "fi": "<p>Edithin sisaret on Edith Södergranin runojen innoittama esitys, enimmäkseen ruotsiksi mutta myös vähän suomeksi.</p><p>Runojen tulkintaa täydentävät esineet ja liikkeelliset koreografiat laajentaen runoelämyksen visuaaliseksi kokonaisuudeksi, joka luo rinnakkaisia maailmoja ja yhteyksiä katsojan mielikuvituksessa.</p><p>Esitykseen valitut yksitoista runoa luovat katsauksen Edith Södergranin tuotantoon kuvaten ihmisen elämänkulkua sekä ajatonta ihmisyyttä. Eri ikäisten esiintyjien kautta tuodaan näkyväksi elämänkokemuksen merkitys ja että ihmisen luomisen tarve on loppumaton.</p><p>Esiintyjinä Rose-Marie Malm, Malin Wikström-Orre ja nukketeatteritaiteilija Pauliina Vesslin,</p><p>Kieli: ruotsi / suomi<br>Kesto: 40 min</p>",
                "sv": "<p>Ediths systrar är en föreställning inspirerad av Edith Södergrans dikter, mestadels på svenska men också lite på finska.</p><p>Tolkningen av dikterna kompletteras av föremål och rörliga koreografier som utvidgar diktupplevelsen till ett visuellt helhetsverk, vilket skapar parallella världar och kopplingar i åskådarens fantasi.<br>De elva dikter som valts ut för föreställningen ger en översikt över Edith Södergrans verk, skildrande människans livsväg samt tidlös mänsklighet. Genom medverkande i olika åldrar synliggörs livserfarenhetens betydelse och att människans skapandebehov är oändligt.<br>Medverkande är Rose-Marie Malm, Malin Wikström-Orre och dockteaterkonstnären Pauliina Vesslin.</p><p>KONCEPT <br>Pauliina Vesslin, Rose-Marie Malm & Malou Ilmoni<br>FRAMFÖRANDE<br>Pauliina Vesslin, Rose-Marie Malm & Malin Wikström-Orre <br>FOTO<br>Christopher Senn & Maria Zitting</p><p>SPRÅK<br>Svenska och till en liten del på finska<br>REKOMMENDERAD ÅLDER<br>Unga och vuxna <br>FÖRESTÄLLNINGENS LÄNGD 40 min<br>Språk: svenska / finska</p>",
                "en": "<p>Ediths sisters is based on poems by Edith Södergran together with choreography and objects. Mostly in swedish but also little in finnish.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65365/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65586",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 195150,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-05T10:13:17.845018Z",
                    "last_modified_time": "2025-02-05T10:13:17.845038Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761782.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/195150/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-05T10:13:17.816833Z",
            "last_modified_time": "2025-04-02T15:13:29.598467Z",
            "date_published": null,
            "start_time": "2025-04-02T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Helsinki Cine Aasia -festivaali tuo vuosittain kiinnostavimmat uutuuselokuvat Itä- ja Kaakkois-Aasiasta Helsinkiin.",
                "sv": "Festivalen Helsinki Ciné Aasia tar årligen med sig de mest intressanta nyhetsfilmerna från Öst- och Sydostasien till Helsingfors.",
                "en": "The annual Helsinki Cine Aasia festival brings the most interesting new films from East and Southeast Asia to Helsinki."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D6A89A470D6E9D194936211F1A3A8F53/Helsinki_Cin_Aasia_Crocodile_Tears",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D6A89A470D6E9D194936211F1A3A8F53/Helsinki_Cin_Aasia_Crocodile_Tears",
                "en": "http://www.vuotalo.fi/en/events/event/D6A89A470D6E9D194936211F1A3A8F53/Helsinki_Cin_Aasia_Crocodile_Tears"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Helsinki Ciné Aasia: Crocodile Tears",
                "sv": "Helsinki Ciné Aasia: Crocodile Tears",
                "en": "Helsinki Ciné Aasia: Crocodile Tears"
            },
            "description": {
                "fi": "<p>Helsinki Cine Aasia -festivaali tuo vuosittain kiinnostavimmat uutuuselokuvat Itä- ja Kaakkois-Aasiasta Helsinkiin.</p><p>Vuotalon keskiviikkokinossa nähdään poiminta vuoden 2025 festivaaliohjelmistosta.</p><p>Crocodile Tears, Air Mata Buaya, 2024, Indonesia</p><p>Nuori Johan pitää äitinsä kanssa krokotiilifarmia Javalla. Äidin ja pojan yhteys näyttää tiiviiltä, kunnes Johan tapaa kaupungilla juuri paikkakunnalle muuttaneen Arumin. Nuoret rakastuvat, mutta äiti ei haluaisi päästää pojastaan irti.</p><p>Äiti saa yöllisiä unissakävelykohtauksia, joiden aikana hän kuvittelee yhden krokotiileista olevan edesmenneen miehensä reinkarnaatio. Arumin muuttaessa krokotiilifarmille tapahtumat alkavat kiristyä.</p><p>Crocodile Tears on taidokas kasvutarina erikoisen trillerin muodossa. Sanonta krokotiilin kyynelistä viittaa krokotiilien tapaan valuttaa kyyneleitä samalla kun ne syövät saalistaan. Samaa armottomuutta on Tumpal Tampubolonin elokuvan henkilösuhteissa.</p><p>Eija Niskanen</p><p>Ohjaus & käsikirjoitus: Tumpal Tampubolon. <br>Kuvaus: Teck Siang Lim. Pääosissa: Yusuf Mahardika, Zulfa Maharani, Marissa Anita. <br>Kieli: bahasa indonesia. Levitys: Cercamon.<br>Elokuvassa on englanninkielinen tekstitys.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Festivalen Helsinki Ciné Aasia tar årligen med sig de mest intressanta nyhetsfilmerna från Öst- och Sydostasien till Helsingfors.</p><p>Ett axplock ur festivalprogrammet 2025 visas på onsdagskino i Nordhuset. Filmen offentliggörs närmare festivalen.</p>",
                "en": "<p>The annual Helsinki Cine Aasia festival brings the most interesting new films from East and Southeast Asia to Helsinki.</p><p>Vuotalo’s Wednesday movie will show a selection of the festival programme for 2025. The film will be released closer to the festival.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65586/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64824",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:732/?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:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/vaippakansan-karnevaali-3857886/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/vaippakansan-karnevaali-3857886/",
                        "en": "https://www.lippu.fi/artist/malmitalo/vaippakansan-karnevaali-3857886/"
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152911,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-30T11:15:08.660727Z",
                    "last_modified_time": "2024-10-30T11:15:08.660741Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755422.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152911/?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-10-30T11:15:08.632836Z",
            "last_modified_time": "2025-04-02T14:13:32.115557Z",
            "date_published": null,
            "start_time": "2025-04-13T07:00:00Z",
            "end_time": "2025-04-13T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vaippakansan karnevaali eli Vaippis valtaa Malmitalon taas keväällä 2025!",
                "sv": "Blöjfolkets karneval, det vill säga Vaippis eller bebisarnas och småbarnens egen festival återkommer!",
                "en": "Vaippakansan karnevaalit, or Vaippis (Carnival for the Diaper People), the festival for babies and toddlers, is back!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6CED50606B0050295AC3836FCB189B00/Vaippakansan_karnevaali",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6CED50606B0050295AC3836FCB189B00/Blojfolkets_karneval",
                "en": "http://www.malmitalo.fi/en/events/event/6CED50606B0050295AC3836FCB189B00/Vaippakansan_karnevaali"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaippakansan karnevaali",
                "sv": "Blöjfolkets karneval",
                "en": "Vaippakansan karnevaali"
            },
            "description": {
                "fi": "<p>Vaippakansan karnevaali eli Vaippis valtaa Malmitalon taas keväällä 2025!</p><p>Vaippis on vauvojen ja taaperoiden oma festari, joka tarjoaa koko päivälle hauskaa ohjelmaa: esityksiä, työpajoja, musiikkia, tanssia ja taidetta perheen pienimmille. Sukella salaisille saarille, tanssi lastendiskossa, osallistu muskareihin, sirkustyöpajoihin ja värikylpyihin – ja paljon muuta!</p><p><b>Esitykset</b><br>Klo 10 ja 13 Recover Laboratory: Salainen saari<br>Klo 10 ja 11 Pallottelua -runoesitys<br>Klo 10:30, 12 ja 13 Auraco: Syli (5 € sis. lapsi+aikuinen)<br>Klo 11 ja 13.30 Sukkalukko –konsertti</p><p><b>Muu ohjelma ja työpajat</b><br>Klo 10–14 Lastendisko<br>Klo 10–14 Tuntupolku -näyttely ja elämystila<br>Klo 10–13 PilttiPunttis -leikkituokiot ja elämystila <br>Klo 10–14 Grafiikkapaja<br>Klo 10, 11 ja 13 Perhemuskari (5 € lapsi+aikuinen)<br>Klo 10:15, 11:30 ja 12:45 Vauvojen värikylpy (5 € sis. lapsi+aikuinen)<br>Klo 10:30, 11:30 ja 12:30 Vauvasirkustyöpaja (5 € sis. lapsi+aikuinen)<br> <br><b>Recover Laboratory: Salainen saari</b> <br>Malmisali<br>klo 10 ja 13<br>Yksinäinen hahmo salaperäisellä saarella löytää pullopostin, joka kutsuu seikkailuun. Kiehtova matka täynnä yllätyksiä odottaa! <br>Ikäsuositus: yli 2-vuotiaille<br> <br><b>Pallottelua -runoesitys taaperoille </b><br>Kirjaston monitoimitila<br>klo 10<br>Huristellaan pallottelumatkalle pienten maailmaan! Tutkitaan pyöreitä juttuja, pompitaan ja pyöritään yhdessä oman aikuisen kanssa. <br>Ikäsuositus: 1–3-vuotta<br>Maksuttomat pääsyliput paikan päältä<br> <br><b>Pallottelua -runoesitys vauvoille</b><br>Kirjaston monitoimitila<br>klo 11<br>Toiminnallinen esitys kuljettaa lapsen ja vanhemman yhteiselle aistihetkelle ja mukavalle loruretkelle.<br>Ikäsuositus: alle 1-vuotiaat.<br>Maksuttomat pääsyliput paikan päältä<br> <br><b>Auraco: Syli</b><br>Pieni Sali<br>klo 10.30, 12 ja 13<br>Syli on tanssia ja musiikkia, iloa ja väriä. Ihmetystä ja hymyä. Vähän ehkä kummastustakin. Syli on monta sylillistä yleisön ja taiteilijoiden yhteistä, sanatonta vuorovaikutusta. <br>Ikäsuositus: 2-8 kk<br>Liput: 5 € / lapsi + aikuinen –pari<br> <br><b>Sukkalukko -orkesteri esiintyy</b><br>Malmitalon aula<br>klo 11 ja 13.30<br>Sukkalukko on keväällä 2023 perustettu lastenmusiikkiyhtye. Yhtyeen muodostavat television lastenohjelmista tuttu Susanna Volanto ja The Bätmäns -yhtyeestä tuttu Tomi Rajala.</p><p><b>Lastendisko</b><br>Kokoushuone 2, 2 krs.<br>klo 10–14<br>DJ Elviksen Äiti soittaa lasten suosikkimusiikkia ja toiveita Malmitalon toisessa kerroksessa.</p><p><b>Tuntupolku – näyttely ja elämystila</b><br>Galleria<br>klo 10–14<br>Tuntupolku tarjoaa vauva- ja taaperoikäisille kokemuksia erilaisten pintojen, tuntujen, materiaalien ja värien parissa.</p><p><b>PilttiPunttis!</b><br>Kokoushuone 3, 2. krs.<br>klo 10–13<br>Riemukas pikkupilttien punttis! Punttiksen leikkipisteillä vauvat ja taaperot voivat kipittää, ryömiä, vipeltää ja leikkiä! <br>Leikkituokiot alkavat klo 10, 10.30, 11, 11.30, 12 ja 12.30.<br>Ikäsuositus: alle 3-vuotiaat yhdessä oman aikuisen kanssa<br>Leikkituokion kesto: n. 30 min<br>Varaa oma punttisvuoro kokoushuone 3 edustalta, 2.krs.</p><p><b>Grafiikkapaja</b><br>Parvi, 2. krs.<br>klo 10–14<br>Painetaan iloisia palloja paperille. Sopii kaikelle vaippakansalle!<br> <br><b>Vauvojen värikylpy</b><br>Taideluokka 3, 2 krs.<br>klo 10.15, 11.30 ja 12.45<br>Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi! Suosittelemme varaamaan liput ikäryhmittäin: klo 10 värikylpy 6–18 kk vauvoille, klo 11:30 ja 12:45 värikylvyt 18–24 kk taaperoille.<br>Liput: 5 € / lapsi + aikuinen –pari<br> <br><b>Perhemuskari</b><br>Musiikkiluokka 7, 2. krs.<br>klo 10, 11 ja 13<br>Tervetuloa laulamaan, soittamaan ja liikkumaan iloisiin perhemuskareihin. Suosittelemme varaamaan liput ikäryhmittäin: klo 10 muskariin 1–2-vuotiaille, klo 11 2–3-vuotiaille ja klo 13 0–1-vuotiaille.<br>Liput: 5 € / lapsi + aikuinen –pari<br> <br><b>Vauva- ja taaperosirkustyöpajat</b> <br>Tanssisali <br>klo 10.30, 11.30 ja 12.30<br>Vauvasirkuksessa vahvistamme vanhemman ja lapsen välistä suhdetta leikin ja ilon kautta.<br>Ikäsuositus: 6–18 kk<br>Liput: 5 € / lapsi + aikuinen –pari</p><p>Huom! Lastenvaunut ja rattaat tulee jättää Malmitalon edustalla sijaitsevaan vaunuparkkiin. Varaathan mukaasi kantovälineen tarvittaessa.</p>",
                "sv": "<p>Blöjfolkets karneval, det vill säga Vaippis eller bebisarnas och småbarnens egen festival återkommer!</p><p><b>Vaippis 2025 program</b></p><p><b>Uppträdanden</b><br>Kl. 10 och 13 Recover Laboratory: Salainen saari<br>Kl. 10 och 11 Pallottelua-diktföreställning<br>Kl. 10:30, 12 och 13 Auraco: Syli (5 € för barn+vuxen)<br>Kl. 11 och 13.30 Sukkalukko-konsert</p><p><b>Annat program och workshoppar</b><br>Kl. 10–14 Barndisko<br>Kl. 10–14 Tuntupolku-utställning och upplevelserum<br>Kl. 10–13 PilttiPunttis-lekstunder och uppelvelserum <br>Kl. 10–14 Grafikworkshop<br>Kl. 10, 11 och 13 Familjemusikskola (5 € för barn+vuxen)<br>Kl. 10:15, 11:30 och 12:45 Färgbad för bebisar (5 € för barn+vuxen)<br>Kl. 10:30, 11:30 och 12:30 Babycirkusworkshop (5 € för barn+vuxen)<br> <br> <br><b>Recover Laboratory: Salainen saari</b> <br>Malmsalen<br>kl. 10 och 13<br>En ensam figur på en mystisk ö hittar flaskpost som lockar ut på äventyr. En fascinerande resa full av överraskningar väntar! <br>Åldersrekommendation: barn över 2 år<br>Längd: 30 min<br>Fritt inträde<br> <br><b>Pallottelua-diktföreställning för småbarn </b><br>Bibliotekets allaktivitetsrum<br>kl. 10<br>Vi åker ut på en bollresa i småttingarnas värld! Vi undersöker runda ting, studsar och rullar dem tillsammans med vår vuxna person. <br>Åldersrekommendation: 1–3-år<br>Längd: ca 30 min.<br>Avgiftsfria inträdesbiljetter på plats<br> <br><b>Pallottelua-diktföreställning för bebisar</b><br>Bibliotekets allaktivitetsrum<br>kl. 11<br>Den funktionella föreställningen transporterar barnet och föräldern till en gemensam stund med sinnesupplevelser och trevliga ramsor.<br>Åldersrekommendation: under 1-åringar.<br>Längd: ca 30 min.<br>Avgiftsfria inträdesbiljetter på plats<br> <br><b>Auraco: Syli</b><br>Lilla Salen<br>kl. 10:30, 12 och 13<br>Syli, eller ”famnen”, är dans och musik, glädje och färg. Mirakel och leenden. Kanske lite förundran också. Famnen är många famnar fulla med gemensam ordlös dialog mellan publiken och konstnärerna. <br>Åldersrekommendation: 2–8 mån<br>Längd: ca 30 min.<br>Biljetter: 5 €/par, barn+vuxen<br> <br><b>Orkestern Sukkalukko uppträder</b><br>Scenen i foajén till Malms kulturhus<br>kl. 11 och 13:30<br>Sukkalukko är en barnmusikorkester som grundades våren 2023. Orkestern består av Susanna Volanto som är bekant från barnprogram och Tomi Rajala som är bekant från orkestern The Bätmäns. <br>Längd: ca 30 min.<br>Fritt inträde<br> <br><b>Barndisco</b><br>Mötesrum 2, 2:a vån.<br>kl. 10–14<br>DJ Elviksen Äiti spelar barnens favoritmusik och önskelåtar på andra våningen i Malms kulturhus. <br>En gång i timmen ordnas en gemensam dansstund: 10.30, 11.30, 12.30 & 13.30<br>Fritt inträde<br> <br><b>Tuntupolku-utställning och upplevelserum</b><br>Malms kulturhus galleri<br>kl. 10–14<br>Tuntupolku erbjuder bebisar och småbarn upplevelser med olika ytor, fingertoppskänslor, material och färger. <br>Fritt inträde<br> <br><b>PilttiPunttis!</b><br>Mötesrum 3, 2:a vån.<br>kl. 10–13<br>Glädjefyllt gym för småglin! På gymmets lekplats kan bebisar och småbarn springa, krypa, skutta och leka! <br>Lekstunderna börjar kl. 10, 10.30, 11, 11.30, 12 och 12.30.<br>Åldersrekommendation: under 3-åringar tillsammans med en egen vuxen<br>Lekstundens längd: ca 30 min<br>Boka en egen tid till gymmet framför mötesrum 3, 2:a våningen på Malms kulturhus</p><p><b>Grafikworkshop</b><br>Loftet 2:a vån.<br>kl. 10–14<br>Vi trycker glada bollar på papper. Passar för alla i blöjåldern!<br>Fritt inträde<br> <br><b>Färgbad för bebisar</b><br>Konstklass 3, 2:a vån.<br>kl. 10.15, 11.30 och 12.45<br>Kom med och bada i färger och lär ditt barn fler sätt att uttrycka sig kreativt och lekfullt! Vi rekommenderar bokning av biljetter enligt åldersgrupp: kl. 10 färgbad för 6–18 månaders bebisar, kl. 11:30 och 12:45 färgad för 18–24 månaders småbarn.<br>Biljetter: 5 €/par, barn+vuxen<br> <br><b>Familjemusikskola</b><br>Musikklass 7, 2:a vån.<br>kl. 10, 11 och 13<br>Välkommen att sjunga, ringa och röra på dig i den glada familjemusikskolan. Vi rekommenderar bokning av biljetter enligt åldersgrupp: kl. 10 för för 1–2-åringar, kl. 11 för 2–3-åringar och kl. 13 för 0–1-åringar.<br>Biljetter: 5 €/par, barn+vuxen<br> <br><b></b>Workshoppar med cirkus för bebisar och småbarn och småbarn <br>Danssalen <br>kl. 10.30, 11.30 och 12.30</p>",
                "en": "<p>Vaippakansan karnevaalit, or Vaippis (Carnival for the Diaper People), the festival for babies and toddlers, is back!</p><p><b>Vaippis 2025 programme</b></p><p><b>Shows and performances</b><br>At 10:00 and 13:00 Recover Laboratory: Salainen saari – Secret island<br>At 10:00 and 11:00 Pallottelua – Playing ball poetry performance<br>At 10:30, 12:00 and 13:00 Dance Theatre Auraco: Syli – Embrace (€5 per adult-child pair)<br>At 11:00 and 13:30 Concert by Sukkalukko</p><p><b>Other programme and workshops</b><br>10:00–14:00 Children’s disco<br>10:00–14:00 Tuntupolku – Sensation path exhibition and experience space<br>10:00–13:00 PilttiPunttis – Toddler gym play sessions and experience space<br>10:00–14:00 Graphics workshop<br>At 10:00, 11:00 and 13:00 Family music play school (€5 per adult-child pair)<br>At 10:15, 11:30 and 12:45 Baby colour bath (€5 per adult-child pair)<br>At 10:30, 11:30 and 12:30 Baby circus workshop (€5 per adult-child pair)<br> <br> <br><b>Recover Laboratory: Salainen saari – Secret island</b> <br>Malmi Hall<br>at 10:00 and 13:00<br>A lonely figure on a mysterious island finds a message in a bottle, inviting them on an adventure. An enchanting journey awaits, filled with surprises! <br>Recommended age: 2 and older<br>Duration: 30 min<br>Free entry<br> <br><b>Pallottelua (Playing ball) poetry performance for toddlers</b><br>Library’s multi-purpose room<br>at 10:00<br>Bounce your way into the world of ball games with toddlers!Explore round things and bounce and roll around together with your grown-up. <br>Recommended age: 1–3 years<br>Duration: approx. 30 min<br>Get your free-of-charge entrance tickets on site<br> <br><b>Pallottelua (Playing ball) poetry performance for babies</b><br>Library’s multi-purpose room<br>at 11:00<br>This active performance will take a parent and their child on a shared sensory journey with fun nursery rhymes.<br>Recommended age: under 12 months.<br>Duration: approx. 30 min<br>Get your free-of-charge entrance tickets on site<br> <br><b>Auraco: Syli (Embrace)</b><br>Small Auditorium<br>At 10:30, 12:00 and 13:00<br>Syli is a performance filled with dance, music, joy and colour. Wonder and smiles. Maybe a pinch of perplexion. Syli embraces the audience and the performers with their shared, wordless interactions. <br>Recommended age: 2-8 months<br>Duration: approx. 30 min<br>Tickets: €5 per adult-child pair<br> <br><b>Performance by Sukkalukko orchestra</b><br>Malmitalo hall stage<br>at 11:00 and 13:30<br>Sukkalukko is a children’s music group founded in spring 2023. The performers are Susanna Volanto, a familiar face from children’s television programmes, and Tomi Rajala, known from the band The Bätmäns. <br>Duration: approx. 30 min<br>Free entry<br> <br><b>Children’s disco</b><br>Meeting room 2, 2nd floor<br>10:00–14:00<br>DJ Elviksen Äiti plays children’s favourite records and requests on the second floor of Malmitalo. <br>The disco will also host a dance-along once an hour: at 10:30, 11:30, 12:30 & 13:30<br>Free entry<br> <br><b>Tuntupolku – Sensation path exhibition and experience space</b><br>Malmitalo gallery<br>10:00–14:00<br>Tuntupolku is a sensory path offering babies and toddlers experiences with different surfaces, textures, materials and colours. <br>Free entry<br> <br><b>PilttiPunttis! toddler gym</b><br>Meeting room 3, 2nd floor<br>10:00–13:00<br>A fun ‘gym’ for the youngest in the family! Babies and toddlers can run, crawl, zoom and play their way through the play areas of PilttiPunttis. <br>The play sessions start at 10:00, 10:30, 11:00, 11:30, 12:00 and 12:30.<br>Age recommendation: children under the age of 3 accompanied by an adult<br>Duration of a play session: approx. 30 min<br>Book your turn at the ‘gym’ in front of meeting room 3 on Malmitalo’s 2nd floor.</p><p><b>Graphics workshop</b><br>Balcony, 2nd floor<br>10:00–14:00<br>Print happy ball shapes on paper. Suitable for babies and toddlers of all ages!<br>Free entry<br> <br><b>Baby colour bath</b><br>Art class 3, 2nd floor<br>At 10:15, 11:30 and 12:45<br>Join us in bathing in colour and teach you baby new playful ways of expressing themselves creatively! We recommend booking your tickets by age group: at 10:00 colour bath for babies between 6 and 18 months; at 11:30 and 12:45 colour baths for toddlers be</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64824/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64903",
            "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:351/?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:51/?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:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/roofaerialclub/",
                        "sv": "https://www.lippu.fi/artist/roofaerialclub/",
                        "en": "https://www.lippu.fi/artist/roofaerialclub/"
                    },
                    "price": {
                        "fi": "15 € / 10 €",
                        "sv": "15 € / 10 €",
                        "en": "15 € / 10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 452353,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-02T11:13:46.390719Z",
                    "last_modified_time": "2025-04-02T11:13:46.390740Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761458.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/452353/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-02T11:13:46.360513Z",
            "last_modified_time": "2025-04-02T11:13:46.443638Z",
            "date_published": null,
            "start_time": "2025-05-16T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Roof Aerial Clubin kevätnäytöksessä nähdään eri ikäisten sirkusharrastajien esityksiä.",
                "sv": "På Roof Aerial Clubs våruppvisning får vi se uppvisningar av cirkusfantaster i olika åldrar.",
                "en": "The Roof Aerial Club Spring Show will feature performances by circus enthusiasts of all ages."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D5C38851C3C4E7B4DABE8442B14DFCDD/Roof_Aerial_Clubin_kevatnaytos",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D5C38851C3C4E7B4DABE8442B14DFCDD/Roof_Aerial_Clubs_varuppvisning",
                "en": "http://www.malmitalo.fi/en/events/event/D5C38851C3C4E7B4DABE8442B14DFCDD/Roof_Aerial_Club_Spring_Show"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Roof Aerial Clubin kevätnäytös",
                "sv": "Roof Aerial Clubs våruppvisning",
                "en": "Roof Aerial Club Spring Show"
            },
            "description": {
                "fi": "<p>Roof Aerial Clubin kevätnäytöksessä nähdään eri ikäisten sirkusharrastajien esityksiä.</p><p>Luvassa on akrobatiaa, pyramideja ja ilma-akrobatiaa useilla eri välineillä. Oppilaat ovat osallistuneet <br>esitysten ideointiin.</p><p>Lisäksi näytöksessä on Roofin esiintyvän ryhmän esitys, joka tullaan näkemään myös kesän 2025 Suomen Nuorisosirkusliiton Nurtsi Festivaaleilla.</p><p>Kesto: 1 tunti, 30 min</p>",
                "sv": "<p>På Roof Aerial Clubs våruppvisning får vi se uppvisningar av cirkusfantaster i olika åldrar.</p><p>Pyramider, akrobatik och luftakrobatik med olika typer av redskap utlovas. Eleverna har deltagit i utformningen av uppvisningen. <br> <br>Uppvisningen omfattar också ett framträdande av Roofs scenkonstgrupp, som vi även kommer att få se på Suomen Nuorisosirkusliittos Nurtsi-festival sommaren 2025.</p><p>Längd: 1 timme 30 min.</p>",
                "en": "<p>The Roof Aerial Club Spring Show will feature performances by circus enthusiasts of all ages.</p><p>You can expect acrobatics, pyramids and aerial acrobatics with a variety of equipment. Students helped brainstorm the content of the presentations.</p><p>The show will also feature a performance by the Roof Aerial Club’s performing group, which will also perform at the Nurtsi Festival of the Finnish Youth Circus Association in the summer of 2025.</p><p>Duration: 1 hour, 30 min</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64903/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65885",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 452352,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-02T11:13:41.372713Z",
                    "last_modified_time": "2025-04-02T11:13:41.372727Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767873.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/452352/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-02T11:13:41.342876Z",
            "last_modified_time": "2025-04-02T11:13:41.427811Z",
            "date_published": null,
            "start_time": "2025-04-10T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Neljättä kertaa järjestettävä Kuorofestarit kokoaa yhteen työväenopiston kuorot ja lauluyhtyeet."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9F3BF86A0CCA911D83A0D1CE25658C09/Entisten_nuorten_kuoro",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9F3BF86A0CCA911D83A0D1CE25658C09/Entisten_nuorten_kuoro",
                "en": "http://www.kanneltalo.fi/en/events/event/9F3BF86A0CCA911D83A0D1CE25658C09/Entisten_nuorten_kuoro"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Entisten nuorten kuoro",
                "sv": "Entisten nuorten kuoro",
                "en": "Entisten nuorten kuoro"
            },
            "description": {
                "fi": "<p>Neljättä kertaa järjestettävä Kuorofestarit kokoaa yhteen työväenopiston kuorot ja lauluyhtyeet.</p><p>Viikon aikana kuullaan monipuolinen kattaus kuoromusiikkia useammassa eri sijainnissa, myös Kanneltalossa!</p><p>Lisätietoa kuorofestareiden konserteista löydät<br><u><a href=\"https://ilmonet.fi/course/H251334\"> Kuorofestareiden sivuilta.</a></u></p><p>Katja Vepsäläinen, kuoronjohto<br>Markus Holthoer, piano</p><p>Paikka: Kanneltalon auditorio<br>Maksuton, vapaa pääsy</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65885/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65863",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/20038134"
                    },
                    "price": {
                        "fi": "39,90 €, VIP 79,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 452087,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-02T10:13:40.472859Z",
                    "last_modified_time": "2025-04-02T10:13:40.472875Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765974.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/452087/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-02T10:13:40.444906Z",
            "last_modified_time": "2025-04-02T10:13:40.519840Z",
            "date_published": null,
            "start_time": "2025-10-12T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ronn Moss kiertueelle Suomeen – Mahdollisuus kokea legendaarinen tähti livenä!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EB7648A698FBD377D931CE713CF12CF2/Evening_with_Ronn_Moss"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Evening with Ronn Moss"
            },
            "description": {
                "fi": "<p>Ronn Moss kiertueelle Suomeen – Mahdollisuus kokea legendaarinen tähti livenä!</p><p>Maailmantähti <b>Ronn Moss</b> saapuu Suomeen lokakuussa. Kiertue tarjoaa harvinaislaatuisen tilaisuuden nähdä Ronnin tunnelmallinen lavashow ja kokea hänen ikoninen karismansa livenä. <i>“An evening with Ronn Moss”</i> -show yhdistää musiikin ja tarinankerronnan, vieden yleisön Ronn Mossin elämän käännekohtiin ja uran huippuhetkiin.</p><p>Ronn Moss on yhdysvaltalainen näyttelijä ja muusikko, joka tunnetaan parhaiten roolistaan Ridge Forresterina suosituissa <i>The Bold and the Beautiful</i> -saippuasarjassa. Näyttelijäntyönsä lisäksi hän on Player-yhtyeen jäsen, jonka suurimpia hittejä ovat muun muassa <i>“Baby Come Back”</i> ja <i>“This Time I'm in It for Love”</i>.</p><p>Kovana Suomi-fanina Ronn Moss on vieraillut Suomessa useita kertoja. Huhtikuussa 2022 hän esiintyi MTV:n <i>Huomenta Suomi</i> -ohjelmassa ensimmäistä kertaa kymmeneen vuoteen, keskustellen terveellisistä elämäntavoistaan. Kesällä 2022 Moss vieraili Suomessa osallistuakseen <i>Vain elämää</i> -ohjelman kuvauksiin. Lisäksi hän yllätti suomalaiset lähettämällä videotervehdyksen <i>Huomenta Suomen</i> 35- vuotisjuhlalähetyksessä, jossa hän muisteli aikaisempia vierailujaan Suomessa ja kiitti fanejaan. Vuonna 2025 Ellen Jokikunnas vieraili <i>Talo Italiassa</i> -ohjelmassa Ronnin Italian kodissa.</p><p>Varmista paikkasi ja tule kokemaan tämä ainutlaatuinen ilta Ronn Mossin seurassa!</p><p><b>VIP-lippu</b> sisältää pääsylipun, fanituotelahjan ja tapaamisen artistin kanssa VIP-lipun lunastaneiden kesken.</p><p>Kesto n. 2 h, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "provider": {
                "fi": "Dex Viihde Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65863/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65838",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 415912,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-27T14:13:43.215395Z",
                    "last_modified_time": "2025-03-27T14:13:43.215413Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767594.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/415912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-27T14:13:43.188086Z",
            "last_modified_time": "2025-04-02T07:13:49.171637Z",
            "date_published": null,
            "start_time": "2025-04-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "CaisaKallion tiistaissa koetaan puheilmaisun lopputöitä sekä musiikin lukiodiplomiesitys."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4E285A1BDE8074B5219F83CD80AB07AA/CaisaKallio_esittaa_puhetaidetta_ja_musaa",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4E285A1BDE8074B5219F83CD80AB07AA/CaisaKallio_esittaa_puhetaidetta_ja_musaa",
                "en": "http://www.caisa.fi/en/events/event/4E285A1BDE8074B5219F83CD80AB07AA/CaisaKallio_esittaa_puhetaidetta_ja_musaa"
            },
            "location_extra_info": null,
            "name": {
                "fi": "CaisaKallio esittää: puhetaidetta ja musaa",
                "sv": "CaisaKallio esittää: puhetaidetta ja musaa",
                "en": "CaisaKallio esittää: puhetaidetta ja musaa"
            },
            "description": {
                "fi": "<p>CaisaKallion tiistaissa koetaan puheilmaisun lopputöitä sekä musiikin lukiodiplomiesitys.</p><p>Lopputyöt ja lukiodiplomit ovat opiskelijoille mahdollisuus näyttää osaamistaan ja kokeilla siipiensä kantavuutta taiteellisen produktion valmistamisessa.</p><p><b>Illan aikana nähdään seuraavat teokset:</p><p>Sumu Torkkel: Kadotettuja kasvukipuja (puheilmaisu)</b><br>Kadotettuja kasvukipuja kuvaa muutosta. Askelia lapsuuden kotien maisemista ja päättyneiden ihmissuhteiden kaipuusta kohti aikuistumista ja kylmiä lattialautoja. Oletko sinäkin joskus kokenut olevasi hukassa?</p><p><b>Aura Silventoinen: Saastunut meri (puheilmaisu)</b><br>Rehevöityvä meri velloo ja murehtii, rannalla simpukat kohisevat avunhuudoista. <br>Anteeksipyyntöjä, aaltoja.<br>Rakkolevää, rakkauskirjeitä.<br>11 034 metriä pinnan alla elää olio, joka vaihtaa asentoaan mannerlaattojen lailla.</p><p><b>Fanny-Matilda Kuusniemi: Tyhjä Taulu (musiikki)</b><br>Tyhjä Taulu on värikäs sekoitus progea, indietä, poppia ja hieman jazziakin. Yllättävät yhdistelmät saavat aikaan juuri oikeat sävyt. Kaiva ullakoltasi 70-luvun hippiasenteesi ja tule katsomaan Tyhjää Taulua!</p><p>Lavalla mukana Matilda Hakarinne, Pietari Kantonen, Elsi Kvest, Saimi Ollikainen, Dunja Saiyar, Roosa Tuutti ja Eero Vepsäläinen.</p><p>Kesto n. 1 tunti</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65838/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19056281",
            "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-3613405/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19056281/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19056281/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19056281/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235429,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.062378Z",
                    "last_modified_time": "2025-02-17T11:16:41.062398Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/veljeni-leijonamieli-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/235429/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:01.839465Z",
            "last_modified_time": "2025-04-01T22:15:50.106450Z",
            "date_published": null,
            "start_time": "2025-04-01T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Astrid Lindgren VELJENI LEIJONAMIELI ”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=en"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "name": {
                "fi": "Veljeni Leijonamieli"
            },
            "description": {
                "fi": "<p>”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä. Tämä tarina on niin kuin satu, ja vähän myös kummitusjuttu, mutta kaikki on kuitenkin totta.” Astrid Lindgrenin Veljeni Leijonamieli on rakastettu klassikkosatu, maaginen fantasia veljeksistä, jotka kantavat toisiaan vaikeuksien yli. Se on tarina rohkeudesta, veljeydestä ja rakkaudesta. Se on huikea seikkailu, jossa jokainen löytää rohkeutensa.</p><p>Veljeni Leijonamieli kertoo kahdesta veljeksestä, Korpusta (Alexander Wendelin) ja Joonatanista (Mikko Kauppila). Isoveli Joonatan kuolee pelastaessaan sairasta veljeään Korppua tulipalolta, ja pian menehtyy myös Korppu. Veljekset matkaavat lyhyen maanpäällisen elämänsä jälkeen kauniiseen maahan, Nangijalaan, jossa he taistelevat yhdessä pahan voimia vastaan. Matkasta tulee huima ja jännittävä seikkailu, jonka aikana pelokkaasta Korpusta kasvaa rohkea Leijonamieli.</p><p>Veljeni Leijonamieli kertoo surusta kauniisti ja kasvaa maagiseksi fantasiaseikkailuksi, joka on täynnä rohkeutta ja toivoa. Se kertoo valtavasta rakkaudesta, joka voittaa pelot ja jopa kuoleman.</p><p>Astrid Lindgrenin Veljeni Leijonamielen suurelle näyttämölle ohjaa Jakob Höglund. Esitys yhdistelee musiikkiteatteria, nukketeatteria ja koreografiaa fantastiseksi, visuaalisesti henkeäsalpaavaksi kokonaisuudeksi.</p><p>Rooleissa: Mikko Kauppila, Alexander Wendelin, Ulriikka Heikinheimo, Sofia Hilli, Tuukka Leppänen, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Sanna Majuri, Kari Mattila, Reetta Moilanen, Unto Nuora, Samuli Pajunen, Mikko Paloniemi, Tiina Peltonen, Elena Rekola, Inka Tiitinen, Riina Tikkanen</p><p>Muusikko: Senni Valtonen<br>Dramatisointi: Alexander Mørk-Eidem<br>Ohjaus: Jakob Höglund<br>Koreografia: Jakob Höglund &amp; työryhmä<br>Ohjaajan ja koreografin assistentti: Johanna Elovaara<br>Tekstin sovitus, käännös ja laulutekstit: Rasmus Arikka<br>Sävellys ja äänisuunnittelu: Stefan Johansson<br>Lavastus: Vilma Mattila<br>Pukusuunnittelu: Heidi Wikar<br>Valo- ja videosuunnittelu: Toni Haaranen ja William Iles<br>Naamioinnin suunnittelu: Milja Mensonen<br>Nukkien suunnittelu: Heini Maaranen<br>Dramaturgi: Ari-Pekka Lahti<br>Lauluvalmennus: Jukka Nylund<br>Apulaislavastaja: Riku Suvitie</p>",
                "sv": "<p>Astrid Lindgren<br><strong>VELJENI LEIJONAMIELI</strong></p>"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19056281/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65548",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 176704,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-29T11:15:20.594255Z",
                    "last_modified_time": "2025-01-29T11:15:20.594271Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/176704/?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-29T11:15:20.555350Z",
            "last_modified_time": "2025-04-01T15:13:30.245391Z",
            "date_published": null,
            "start_time": "2025-04-07T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).",
                "sv": "BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).",
                "en": "BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4)."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B01D5BF3F294EAE7C8813ADD677A18ED/TAYNNA_BUU-Klubben_LIVE",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/B01D5BF3F294EAE7C8813ADD677A18ED/FULLBOKAD_BUU-Klubben_LIVE",
                "en": "http://www.vuotalo.fi/en/events/event/B01D5BF3F294EAE7C8813ADD677A18ED/FULLYBOOKED_BUU-Klubben_LIVE"
            },
            "location_extra_info": null,
            "name": {
                "fi": "TÄYNNÄ! BUU-Klubben LIVE",
                "sv": "FULLBOKAD! BUU-Klubben LIVE",
                "en": "FULLYBOOKED! BUU-Klubben LIVE"
            },
            "description": {
                "fi": "<p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan - hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!<br> <br>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill. <br> <br>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat. <br> <br>Må 7.4  Helsingfors, Nordhuset<br>18.00 Nordhuset<br>Bokningslänk https://yle-lv.creamailer.fi/survey/htmrkfjfeuve6<br> <br>Tisdag 8.4 Helsingfors och Esbo<br>09.00 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/m9dnkenbxwxpq<br> <br>10.30 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4hehekvcugnb<br> <br>18.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/l3gaaiamtytsl<br> <br>Onsdag 9.4 Esbo och Grankulla<br>09.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/8vdoxfk1yk4ip<br> <br>10.30 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/yvgtbreeyiiym<br> <br>18.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/rjasdvmxlxjn6<br> <br>Torsdag 10.4 Grankulla och Vanda<br> 09.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/pqdpidwsuaw9h<br> <br>10.30 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/somrhs7eznmj4</p><p>18.00 Dickursby skola, Vanda <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4vyo4ds3cw5m<br> <br>Fredag 11.4 Vanda<br>09.00 Dickursby skola <br>Bokningslänk https://yle-lv.creamailer.fi/survey/coin2kj67nnov</p>",
                "sv": "<p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan - hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!<br> <br>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill. <br> <br>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat. <br> <br>Må 7.4  Helsingfors, Nordhuset<br>18.00 Nordhuset<br>Bokningslänk https://yle-lv.creamailer.fi/survey/htmrkfjfeuve6<br> <br>Tisdag 8.4 Helsingfors och Esbo<br>09.00 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/m9dnkenbxwxpq<br> <br>10.30 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4hehekvcugnb<br> <br>18.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/l3gaaiamtytsl<br> <br>Onsdag 9.4 Esbo och Grankulla<br>09.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/8vdoxfk1yk4ip<br> <br>10.30 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/yvgtbreeyiiym<br> <br>18.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/rjasdvmxlxjn6<br> <br>Torsdag 10.4 Grankulla och Vanda<br> 09.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/pqdpidwsuaw9h<br> <br>10.30 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/somrhs7eznmj4</p><p>18.00 Dickursby skola, Vanda <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4vyo4ds3cw5m<br> <br>Fredag 11.4 Vanda<br>09.00 Dickursby skola <br>Bokningslänk https://yle-lv.creamailer.fi/survey/coin2kj67nnov</p>",
                "en": "<p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 15 (7-11.4).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan - hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!<br> <br>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill. <br> <br>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat. <br> <br>Må 7.4  Helsingfors, Nordhuset<br>18.00 Nordhuset<br>Bokningslänk https://yle-lv.creamailer.fi/survey/htmrkfjfeuve6<br> <br>Tisdag 8.4 Helsingfors och Esbo<br>09.00 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/m9dnkenbxwxpq<br> <br>10.30 Nordhuset <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4hehekvcugnb<br> <br>18.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/l3gaaiamtytsl<br> <br>Onsdag 9.4 Esbo och Grankulla<br>09.00 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/8vdoxfk1yk4ip<br> <br>10.30 Louhisali Esbo Kulturcentrum <br>Bokningslänk https://yle-lv.creamailer.fi/survey/yvgtbreeyiiym<br> <br>18.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/rjasdvmxlxjn6<br> <br>Torsdag 10.4 Grankulla och Vanda<br> 09.00 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/pqdpidwsuaw9h<br> <br>10.30 Nya Paviljongen, Grankulla <br>Bokningslänk https://yle-lv.creamailer.fi/survey/somrhs7eznmj4</p><p>18.00 Dickursby skola, Vanda <br>Bokningslänk https://yle-lv.creamailer.fi/survey/h4vyo4ds3cw5m<br> <br>Fredag 11.4 Vanda<br>09.00 Dickursby skola <br>Bokningslänk https://yle-lv.creamailer.fi/survey/coin2kj67nnov</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65548/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64957",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153650,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-02T15:15:49.508568Z",
                    "last_modified_time": "2025-01-02T15:15:49.508591Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761938.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-02T15:15:49.473920Z",
            "last_modified_time": "2025-04-01T10:13:42.752113Z",
            "date_published": null,
            "start_time": "2025-04-06T10:00:00Z",
            "end_time": "2025-04-06T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Metsäliike kutsuu koolle Metsienpuolutus-symposiumin, joka tuo yhteen metsien suojelijoita keskustelemaan ja toimimaan luonnonmetsien puolesta.",
                "sv": "Under evenemanget som arrangeras av Metsäliike och Maan Puolustusvoimat utlovas föredrag om vetenskap och konst samt av influerare, för att inte glömma scenkonst!",
                "en": "At an event by Metsäliike and Earth Forces, you can expect contributions from science, art and influencers, not forgetting performance art."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C85B1D682B1413846AE3AEF512F7BDF7/Metsienpuolustus-symposium",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C85B1D682B1413846AE3AEF512F7BDF7/Symposium_om_forsvar_av_skogar",
                "en": "http://www.stoa.fi/en/events/event/C85B1D682B1413846AE3AEF512F7BDF7/Forest_Defence_Symposium"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Metsienpuolustus-symposium",
                "sv": "Symposium om försvar av skogar",
                "en": "Forest Defence Symposium"
            },
            "description": {
                "fi": "<p>Metsäliike kutsuu koolle Metsienpuolutus-symposiumin, joka tuo yhteen metsien suojelijoita keskustelemaan ja toimimaan luonnonmetsien puolesta.</p><p>Tapahtumassa on mukana tieteen tekijöitä, metsäasiantuntijoita, kansalaisaktivisteja, järjestöjä taiteilijoita sekä kaikkia niitä, jotka haluavat olla mukana puolustamassa vauhdilla hupenevia arvokkaita luonnonmetsiä.</p><p>Paneelikeskustelussa keskitytään erityisesti valtion luonnonmetsien tilanteeseen ja kysytään: kuinka puolustamme arvometsiämme, kun poliittinen vaikuttaminen tai tieteen vahvat viestit eivät tunnu purevan?</p><p>Puheohjelman lisäksi ohjelmaan katetaan musiikkiesityksiä, tanssia, lavarunoutta, sekä paljon muuta! Ohjelma tuo meidät kaikki yhteen metsän äärelle oppimaan, kokemaan, liikuttumaan, vaikuttumaan ja toimimaan!</p><p>Symposiumin lisäksi metsä valtaa Stoan koko huhtikuuksi, kun Metsäliike ja Maan puolustusvoimat -kollektiivi järjestävät karttojen ja metsiä asuttavien lajien kohtaamiseen keskittyvän Tukikohtaaminen-näyttelyn Stoan galleriassa. Näyttely esittelee niin merkittäviä metsäkartoitustuloksia kuin monitaiteellista ja kokeellista lähestymistapaa kartoitukseen. Esillä on myös muita maan ja metsien puolustamisen muotoja.</p><p>Näyttelyn avajaiset järjestetään symposiumia edeltävänä päivänä lauantaina 5.4. klo 17-20. Avajaistilaisuus Stoan teatterisalissa alkaa klo 17 Hiljaa..-tanssiryhmän esityksellä.</p><p><u><a href=\"https://www.stoa.fi/fi/tapahtumat/event/2B5212FF21D654B8A1B8AA9C33464D44/Maan_Puolustusvoimat_ja_Mets_liike__T_u_k_i_k_o_h_t_a_a_m_i_n_e_n_\">Lue lisää näyttelystä</a></u></p><p>Tapahtumiin on vapaa pääsy ja se on yleisölle avoin.</p><p>@stoahelsinki @metsanpuolella @koneensaatio @metsaryhma @climatemove #METSÄLIIKE</p><p>Metsäliike on ketterä kansanliike, joka puolustaa luonnonmetsiä pyrkien kohtuullistamaan hakkuumääriä ja palauttamaan laajojen yhtenäisten metsäekosysteemien eheyden. Työskentelemme pelastaaksemme akuutisti uhatut luonnonmetsät ja turvataksemme ekologisia käytäviä ja ekologista jälleenrakentamista.</p>",
                "sv": "<p>Under evenemanget som arrangeras av Metsäliike och Maan Puolustusvoimat utlovas föredrag om vetenskap och konst samt av influerare, för att inte glömma scenkonst!</p><p>På programmet står bland annat Metsäliikes utbildning och dansföreställningen ”Hiljaa...” som framförs av ett kollektiv från Jyväskylä och förkroppsligar ekologin i en gammal skog. Det blir också körframträdande, dans, estradpoesi och andra godsaker. Vi ses på evenemanget i förändringskraftens tecken.</p><p><u><a href=\"https://www.stoa.fi/sv/evenemangen/event/2B5212FF21D654B8A1B8AA9C33464D44/Maan_Puolustusvoimat_ja_Mets_liike__T_u_k_i_k_o_h_t_a_a_m_i_n_e_n_\">Evenemanget är en del av utställningsserien Stödträffar på Stoas galleri.</a></u></p><p><b>Maan Puolustusvoimat</b> är en organism, en idé och ett kollektiv bestående av många arter som bygger på antimilitarism, undviker hierarkier och väver samman konst och aktivism på ett multidisciplinärt sätt.</p><p><b>Metsäliike</b> är en folkrörelse som försvarar skogsnaturen i Finland och det samiska området och som omfattar alla typer av människor. Metsäliike bevakar bland annat värdefulla skogsnaturobjekt, driver kampanjer, påverkar och agerar för deras räkning på många olika sätt.</p>",
                "en": "<p>At an event by Metsäliike and Earth Forces, you can expect contributions from science, art and influencers, not forgetting performance art.</p><p>The programme includes training from Metsäliike, as well as the Silent... dance piece of a Jyväskylä-based collective, in which the ecology of the old forest is embodied. There will also be a choir performance, dancing, poetry slams and other things to nibble on. We will meet at the event, by dynamic forces.</p><p><u><a href=\"https://www.stoa.fi/en/events/event/2B5212FF21D654B8A1B8AA9C33464D44/Maan_Puolustusvoimat_ja_Mets_liike__T_u_k_i_k_o_h_t_a_a_m_i_n_e_n_\">The event is part of Stoa Gallery’s Tukikohtaaminen exhibition series.</a></u></p><p><b>Earth Forces</b> is a multidisciplinary and multi-sectoral antimilitaristic organism, thought and collective dodging hierarchies and intertwining art and activism.</p><p><b>Metsäliike</b> is a social movement defending the forest nature of Finland and the Sámi areas. All kinds of people participate in its activities. Among other things, Metsäliike watches over valuable forest nature sites as well as campaigns, influences and acts on their behalf in various ways.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64957/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:ca30933b-54bd-4ccc-8ddb-71b0b0f00edb",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/62d2554f-3602-ef11-9f89-000d3adbeb68?readableEventId=MKtest_28032025_Release_Wave_1_-testi_to_LE1420857703"
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 445741,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-04-01T09:44:50.644547Z",
                    "last_modified_time": "2025-04-01T09:44:50.644563Z",
                    "name": "Happy Bear 2 kuvateksti",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e0c54b7e-c6f9-ef11-bae2-000d3ab0beb8",
                    "cropping": "",
                    "photographer_name": "Happy Bear 2 kuvaaja",
                    "alt_text": "Happy Bear 2",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/445741/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                }
            ],
            "created_time": "2025-03-31T05:39:37.292905Z",
            "last_modified_time": "2025-04-01T09:44:51.714083Z",
            "date_published": "2025-03-31T05:35:33Z",
            "start_time": "2025-04-04T11:00:00Z",
            "end_time": "2025-04-04T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 10,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-03-01T08:00:00+02:00",
            "enrolment_end_time": "2025-04-04T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "MKtest 28032025 Release Wave 1 -testi 2 to LE SHORT DESC"
            },
            "info_url": null,
            "location_extra_info": null,
            "name": {
                "fi": "Koulutusaineisto suunnittelutapahtuma"
            },
            "description": {
                "fi": "<div><p>MKtest 28032025 Release Wave 1 -testi 2 to LE LONG DESC</p></div>"
            },
            "provider": {
                "fi": "Business Helsinki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:ca30933b-54bd-4ccc-8ddb-71b0b0f00edb/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23cygy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150372,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-06T12:56:37.370704Z",
                    "last_modified_time": "2024-03-06T12:56:37.370735Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Seniorit tuolijumpassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?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-31T14:25:13.131916Z",
            "last_modified_time": "2025-03-31T14:25:13.131949Z",
            "date_published": null,
            "start_time": "2025-06-16T06:30:00Z",
            "end_time": "2025-06-16T07:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "jumpataan tuolia apuna käyttäen",
                "sv": "gymnastik med stol",
                "en": "gymnastics with a chair"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "name": {
                "fi": "Tuolijumppa",
                "sv": "Stolgymnastik",
                "en": "Chair gymnastics"
            },
            "description": {
                "fi": "<p>jumpataan tuolia apuna käyttäen</p>",
                "sv": "<p>gymnastik med stol</p>",
                "en": "<p>gymnastics with a chair</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23cygy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23cyta",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150372,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-06T12:56:37.370704Z",
                    "last_modified_time": "2024-03-06T12:56:37.370735Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Seniorit tuolijumpassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?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-31T14:25:12.251251Z",
            "last_modified_time": "2025-03-31T14:25:12.251275Z",
            "date_published": null,
            "start_time": "2025-06-09T06:30:00Z",
            "end_time": "2025-06-09T07:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "jumpataan tuolia apuna käyttäen",
                "sv": "gymnastik med stol",
                "en": "gymnastics with a chair"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "name": {
                "fi": "Tuolijumppa",
                "sv": "Stolgymnastik",
                "en": "Chair gymnastics"
            },
            "description": {
                "fi": "<p>jumpataan tuolia apuna käyttäen</p>",
                "sv": "<p>gymnastik med stol</p>",
                "en": "<p>gymnastics with a chair</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23cyta/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23cy64",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150372,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-06T12:56:37.370704Z",
                    "last_modified_time": "2024-03-06T12:56:37.370735Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Seniorit tuolijumpassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?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-31T14:25:11.370029Z",
            "last_modified_time": "2025-03-31T14:25:11.370053Z",
            "date_published": null,
            "start_time": "2025-06-02T06:30:00Z",
            "end_time": "2025-06-02T07:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "jumpataan tuolia apuna käyttäen",
                "sv": "gymnastik med stol",
                "en": "gymnastics with a chair"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "name": {
                "fi": "Tuolijumppa",
                "sv": "Stolgymnastik",
                "en": "Chair gymnastics"
            },
            "description": {
                "fi": "<p>jumpataan tuolia apuna käyttäen</p>",
                "sv": "<p>gymnastik med stol</p>",
                "en": "<p>gymnastics with a chair</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23cy64/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23czkm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150372,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-06T12:56:37.370704Z",
                    "last_modified_time": "2024-03-06T12:56:37.370735Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Seniorit tuolijumpassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?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-31T14:25:10.465351Z",
            "last_modified_time": "2025-03-31T14:25:10.465375Z",
            "date_published": null,
            "start_time": "2025-05-26T06:30:00Z",
            "end_time": "2025-05-26T07:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "jumpataan tuolia apuna käyttäen",
                "sv": "gymnastik med stol",
                "en": "gymnastics with a chair"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "name": {
                "fi": "Tuolijumppa",
                "sv": "Stolgymnastik",
                "en": "Chair gymnastics"
            },
            "description": {
                "fi": "<p>jumpataan tuolia apuna käyttäen</p>",
                "sv": "<p>gymnastik med stol</p>",
                "en": "<p>gymnastics with a chair</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23czkm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23czwq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23c2dq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150372,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-06T12:56:37.370704Z",
                    "last_modified_time": "2024-03-06T12:56:37.370735Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Seniorit tuolijumpassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?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-31T14:25:09.646085Z",
            "last_modified_time": "2025-03-31T14:25:09.646110Z",
            "date_published": null,
            "start_time": "2025-05-19T06:30:00Z",
            "end_time": "2025-05-19T07:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "jumpataan tuolia apuna käyttäen",
                "sv": "gymnastik med stol",
                "en": "gymnastics with a chair"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "name": {
                "fi": "Tuolijumppa",
                "sv": "Stolgymnastik",
                "en": "Chair gymnastics"
            },
            "description": {
                "fi": "<p>jumpataan tuolia apuna käyttäen</p>",
                "sv": "<p>gymnastik med stol</p>",
                "en": "<p>gymnastics with a chair</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23czwq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}