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

{
    "meta": {
        "count": 26802,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=206&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=204&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:64836",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "39,90 € / 33,90 €",
                        "sv": "39,90 € / 33,90 €",
                        "en": "39,90 € / 33,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jerron-paxton-usa-malmitalo-19384382/",
                        "sv": "https://www.lippu.fi/event/jerron-paxton-usa-malmitalo-19384382/",
                        "en": "https://www.lippu.fi/event/jerron-paxton-usa-malmitalo-19384382/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153597,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T12:15:39.856902Z",
                    "last_modified_time": "2024-12-31T12:15:39.856920Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760452.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153597/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T12:15:39.826637Z",
            "last_modified_time": "2025-04-04T10:13:48.899385Z",
            "date_published": null,
            "start_time": "2025-04-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "name": {
                "fi": "Jerron Paxton (USA)",
                "sv": "Jerron Paxton (USA)",
                "en": "Jerron Paxton (USA)"
            },
            "description": {
                "fi": "<p>Moderni, tarkkasilmäinen tarinankertoja vie sinut takaisin 1920-luvulle ja saa sinut toivomaan, että voisit jäädä sinne ikiajoiksi!</p><p>Maineikasta blueslaulaja-lauluntekijää, multi-instrumentalisti Jerron ” Blind Boy ” Paxtonia on kuvailtu käytännössä sukupolvensa ainoaksi musiikintekijäksi, joka soittaa muun muassa kitaraa, banjoa, pianoa ja viulua ja on täysin omaksunut 1920- ja 30-lukujen bluesin luonteen.</p><p>35-vuotiasta Paxtonia on verrattu muun muassa Robert Johnsonin, Lead Bellyn ja Mississippi John Hurtin kaltaisiin blues-legendoihin, mutta hänellä on kuitenkin täysin oma, tunnistettava tyylinsä.</p><p>Paxton on lokakuussa 2024 julkaissut uuden albuminsa “Things Done Changed “(Smithsonian Folkways). “Things Done Changed” on Paxtonin ensimmäinen pelkästään alkuperäisiä kappaleita sisältävä äänite.</p><p>Paxtonin juuret ovat Louisianassa, hän on syntynyt ja kasvanut Los Angelesissa ja asunut New Yorkissa vuodesta 2007. “Things Done Changed” on Paxtonin mukaan hänen kunnianosoituksensa kulttuurille, josta hän on lähtöisin.</p><p>”Kasvoin soittamalla viimeiselle sukupolvelle ihmisiä, jotka kasvoivat kuunnellen mustia banjonsoittajia”, hän kertoo.</p><p>Varhaisia vaikutteita Paxton on saanut muun muassa DeFord Baileylta, Sippie Wallacelta ja Stephen Fosterilta. Esiintyessään hän käyttää perinteisiä melodioita ja soittotyylejä, kuten 12-tahtista blues-rakennetta ja hyppivää näppäilysoittoa.</p><p>Paxtonin ääni ja tyyli nousevat lähes sata vuotta sitten syntyneestä bluesin, ragtimen, folkin ja vanhan ajan mustan musiikin tyylien keitoksesta. Hänen musiikkiaan kuvailtu näinkin: ”Jerron Paxtonin äänessä voi kuulla tuulen, tuntea keskipäivän auringon kuuman pistelyn ja haistaa viimeisiä kilometrejään kulkevan auton pakokaasun.”</p><p>“Things Done Changed” -albumilla Paxton säilyttää ja elvyttää nuo historialliset äänet. Hän kertoo syviä, henkilökohtaisia tarinoita, jotka heijastelevat mustan väestön jokapäiväisiä kokemuksia Amerikassa.</p><p>Kesto: 1 tunti, 15 min</p>",
                "sv": "<p>Den moderna, skarpsynta historieberättaren tar dig tillbaka till 1920-talet och får dig att önska att du kunde stanna där för evigt!</p><p>Den berömde bluessångaren, låtskrivaren och multiinstrumentalisten Jerron “Blind Boy” Paxton har beskrivits som praktiskt taget den enda musikmakaren av sin generation som spelar bland annat gitarr, banjo, piano och fiol, och som helt och hållet har tagit till sig karaktären hos blues under 1920- och 1930-talen.</p><p>Den 35-årige Paxton har bland annat jämförts med blueslegender såsom Robert Johnson, Lead belly och Mississippi John Hurt, men han har ändå en helt egen, kännspak stil.</p><p>Paxton har i oktober 2024 släppt sitt nya album “Things Done Changed” (Smithsonian Folkways). “Things Done Changed” är Paxtons första inspelning som innehåller uteslutande originallåtar.</p><p>Paxtons rötter finns i Lousiana, han är född och uppvuxen i Los Angeles, och har bott i New York sedan år 2007. Enligt Paxton är “Things Done Changed” hans hyllning till den kultur han kommer från.</p><p>“Jag växte upp genom att spela för den sista generationen av människor som lyssnade till svarta banjospelare under sin uppväxt”, berättar han.</p><p>Paxtons tidiga inspirationskällor inkluderar bland annat DeFord Bailey, Sippie Wallace och Stephen Foster. Han använder traditionella melodier och spelstilar, såsom 12-takts bluessturktur och hoppande fingersättningar.</p><p>Paxtons röst och stil reser sig ur en stilsoppa av blues, ragtime, folk och gammaldags svart musik som uppkom för nästan hundra år sedan. Hans musik har även beskrivits så här: “Jerron Paxtons röst återspeglar vinden, middagssolens heta sting och avgasen från en bil som kör sina sista kilometrar.”</p><p>På albumet “Things Done Change” bevarar och återupplivar Paxton dessa historiska ljud. Han berättar djupa, personliga historier som återspeglar den svarta befolkningens vardagliga erfarenheter i Amerika.</p><p>Längd: 1 timme 15 min.</p>",
                "en": "<p>The modern, perceptive storyteller takes you back to the 1920s and leaves you wishing you could stay there forever!</p><p>Renowned blues singer-songwriter and multi-instrumentalist Jerron “Blind Boy” Paxton has been described as virtually the only musician of his generation to play guitar, banjo, piano, and violin, among other instruments, who has fully embraced the character of 1920s and ‘30s blues.</p><p>The 35-year-old Paxton has been compared to blues legends, such as Robert Johnson, Lead Belly and Mississippi John Hurt, but he has a style all his own.</p><p>Paxton released his new album Things Done Changed (Smithsonian Folkways) in October 2024. Things Done Changed is Paxton’s first recording of all-original songs.</p><p>Paxton was born and raised in Los Angeles and has lived in New York since 2007, but his roots are in Louisiana. According to Paxton, Things Done Changed is his tribute to the culture he comes from.</p><p>“I grew up playing for the last generation of people who grew up listening to black banjo players,” he says.</p><p>Paxton's early influences include DeFord Bailey, Sippie Wallace and Stephen Foster. He uses traditional melodies and playing styles, such as a 12-bar blues structure and a skipping picking technique.</p><p>Paxton’s sound and style emerge from a mix of blues, ragtime, folk and old-time Black music styles that originated nearly a century ago. His music has even been described as follows: “Etched within Jerron Paxton’s voice you can hear the wind, feel the hot prickle of the high-noon sun, [and] smell the exhaust from an automobile on its last-gasp miles.”</p><p>With Things Done Changed, Paxton preserves and revives those historical sounds. He tells deep, personal stories that reflect the everyday experiences of Black people in America.</p><p>Duration: 1 hour, 15 min</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Moderni, tarkkasilmäinen tarinankertoja vie sinut takaisin 1920-luvulle ja saa sinut toivomaan, että voisit jäädä sinne ikiajoiksi!",
                "sv": "Den moderna, skarpsynta historieberättaren tar dig tillbaka till 1920-talet och får dig att önska att du kunde stanna där för evigt!",
                "en": "The modern, perceptive storyteller takes you back to the 1920s and leaves you wishing you could stay there forever!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D2B68740022C4058D6894396182AB604/Jerron_Paxton_USA_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D2B68740022C4058D6894396182AB604/Jerron_Paxton_USA_",
                "en": "http://www.malmitalo.fi/en/events/event/D2B68740022C4058D6894396182AB604/Jerron_Paxton_USA_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64836/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:eaf5ea9f-aba8-442a-9021-4842e68e2321",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:52729/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?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:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?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:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?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:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?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:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?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:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "13"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kutasu_retro_443766934049"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?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:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?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:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?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:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?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:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?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:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "created_time": "2025-04-04T07:31:03.206209Z",
            "last_modified_time": "2025-04-04T07:31:03.206225Z",
            "date_published": "2025-04-04T07:30:16Z",
            "start_time": "2025-04-04T07:37:00Z",
            "end_time": "2025-04-11T09:37:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 9,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-04-04T05:00:00+03:00",
            "enrolment_end_time": "2025-04-11T05:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "name": {
                "fi": "Kutasu retro 4.4"
            },
            "description": {
                "fi": "<div><p>Kuvaus</p></div>"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Järjestäjä"
            },
            "short_description": {
                "fi": "Kuvaus"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:eaf5ea9f-aba8-442a-9021-4842e68e2321/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:bc97f063-e5b1-4d74-b709-fed31762aba4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:23512/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?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:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p143/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?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:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?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:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?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:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?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:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "13"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Eventti_testi_34_HW755704583"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 464162,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-04-04T07:15:36.038074Z",
                    "last_modified_time": "2025-04-04T07:15:36.038089Z",
                    "name": "Cap",
                    "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/acc35d45-a3f2-ef11-be21-7c1e5237520e",
                    "cropping": "",
                    "photographer_name": "Name",
                    "alt_text": "Alttext",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/464162/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?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:p12650/?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:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p143/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?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:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?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:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?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:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?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:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "created_time": "2025-04-03T11:23:26.966936Z",
            "last_modified_time": "2025-04-04T07:15:38.186233Z",
            "date_published": "2025-04-03T10:11:57Z",
            "start_time": "2025-04-03T10:17:00Z",
            "end_time": "2025-04-10T12:17:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 16,
            "audience_max_age": 30,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-04-04T05:00:00+03:00",
            "enrolment_end_time": "2025-04-05T05:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "location_extra_info": null,
            "name": {
                "fi": "Testaus 3.4 HW",
                "sv": "Swedish"
            },
            "description": {
                "fi": "<div><p>Pit</p></div>",
                "sv": "<div><p>Swe</p></div>"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Julkkis",
                "sv": "Swe"
            },
            "short_description": {
                "fi": "Lyh",
                "sv": "Swedish"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:bc97f063-e5b1-4d74-b709-fed31762aba4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350709",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748848/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350709/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350709/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350709/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:43.685563Z",
                    "last_modified_time": "2025-02-17T11:16:43.685581Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/uusi-eden_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/235437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:03.401363Z",
            "last_modified_time": "2025-04-03T23:15:42.597279Z",
            "date_published": null,
            "start_time": "2025-04-03T15: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,
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "name": {
                "fi": "Uusi Eden"
            },
            "description": {
                "fi": "Henri Lyysaari<br><strong>Uusi Eden</strong></p><p>Uusi Eden on karnevalistinen musikaalikomedia maailmanlopun jälkeisestä Pasilasta. Hillittömän hauskassa show’ssa Juho Mantereen groteski ote kohtaa Disney-musikaalin hengen.</p><p>Globaali ydinsota on pyyhkinyt planeetan yli, mutta sattuman oikusta eräs teatteri Pasilassa henkilökuntineen on säästynyt tuholta. Kun teatterilaisten vanhat ammatit osoittautuvat hyödyttömiksi post-apokalyptisessä todellisuudessa, he aloittavat neuvokkaan talkkarin johdolla uuden elämän rakennusprojektin.</p><p>Vanhan teatterin raunioille syntyy yhteisö, jota he kutsuvat Uudeksi Edeniksi. Yhdessä he vannovat, etteivät koskaan toista menneisyyden virheitä — mutta pian käy ilmi, ettei paratiisissakaan kaikki ole täydellistä.</p><p>Entinen näyttelijäopiskelija Sonja haaveilee edelleen roolista, jota ei koskaan saanut, ja ex-pizzakuski Petteri unelmoi saavuttamattomasta rakkaudesta. Samaan aikaan Edenin johtajaksi nousseella talkkarilla on salaisuus, joka uhkaa murentaa koko yhteisön.</p><p>Teatterissa ja rakkaudessa kaikki keinot ovat sallittuja, mutta missä kulkee raja, kun kyseessä on oma selviytyminen ja usko parempaan tulevaisuuteen?</p><p>Uusi Eden on Helsingin Kaupunginteatterin ja Q-teatterin yhteistuotanto, joka yhdistää mustan huumorin, ajankohtaiset teemat ja sykähdyttävän musiikin tavalla, jota et ole ennen kokenut. Se on hengästyttävän hauska ja sydäntäsärkevän kaunis tarina toivosta ja rakkaudesta — sekä siitä, miten pitkälle olemme valmiita menemään kamppailussa paremman maailman puolesta.</p><p>Musikaalin on kirjoittanut ja ohjannut Juho Mantere, jonka edellinen teos ”Uuteen nousuun – Laman lasten elämä ja teot” kohosi teatteritapaukseksi Q-teatterissa. Musiikin on säveltänyt Henri Lyysaari, yksi nuoren polven lupaavimmista säveltäjistä.</p><p>Rooleissa: Miiko Toiviainen, Anna-Sofia Tuominen, Tiina Peltonen, Niki Rautén, Ushma Olava, Leenamari Unho, Unto Nuora, Mikko Vihma</p><p>Kapellimestari: Henri Lyysaari<br>Muusikot: Ossi Maristo, Juhana Kiiski, Maria Lamminen</p><p>Käsikirjoitus, ohjaus sekä laulujen sanat: Juho Mantere<br>Sävellys: Henri Lyysaari<br>Lavastus ja valosuunnittelu: William Iles<br>Pukusuunnittelu Riina Leea Nieminen<br>Äänisuunnittelu: Jaakko Virmavirta<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Vastuudramaturgi: Ari-Pekka Lahti</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy</p>",
                "en": "<p>Juho Mantere"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Henri Lyysaari Uusi Eden Uusi Eden on karnevalistinen musikaalikomedia maailmanlopun jälkeisestä Pasilasta.",
                "en": "Juho Mantere"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=en"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350709/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350664",
            "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": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350664/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350664/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350664/?affiliate=ADV&language=en"
                    }
                }
            ],
            "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:03.270095Z",
            "last_modified_time": "2025-04-03T23:15:42.534207Z",
            "date_published": null,
            "start_time": "2025-04-03T15: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,
            "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_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "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"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350664/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350611",
            "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-3748847/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-jenny-hill-helsingin-kaupunginteatteri-19350611/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-jenny-hill-helsingin-kaupunginteatteri-19350611/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-jenny-hill-helsingin-kaupunginteatteri-19350611/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235430,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.192055Z",
                    "last_modified_time": "2025-02-17T11:16:41.192070Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/jenny-hill_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/235430/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:03.150531Z",
            "last_modified_time": "2025-04-03T23:15:42.485431Z",
            "date_published": null,
            "start_time": "2025-04-03T15: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,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "name": {
                "fi": "Jenny Hill"
            },
            "description": {
                "fi": "<p>Minna Rytisalo - Henna Piirto<br><strong>Jenny Hill </strong></p><p>Mäen Jenni eroaa miehestään Jussista ja muuttaa pois espoolaisesta merenrantatalosta yksiöön kantakaupungissa. Lapset ovat jo aikuisia, ja nyt on Jennin aika nähdä, kuka hän on kaikkien odotusten alla. Jenni Mäestä tulee Jenny Hill, nainen, joka alkaa löytää oman äänensä ja oman tapansa elää.</p><p>Jenny Hill on draamakomedia, keski-ikäisen naisen kasvutarina, hillitön ja herkkä. Jenny Hill on silkkaa riemua, se voimaannuttaa, inspiroi, naurattaa ja antaa sylikaupalla oivalluksia ja samastumispintaa.</p><p>Minna Rytisalon sävykäs ja maaginen romaani (2023) kasvaa timanttiseksi näytelmäksi dramaturgi Henna Piirron käsissä. Liisa Mustosen ohjaama esitys yhdistelee sirkustaiteen elementtejä ja tanssia, tarjoilee mahtavia sooloja virtuoosimaisille näyttelijöille ja iskee flamencokengän rytmiikalla.</p><p>Rooleissa: Sari Haapamäki, Aino Seppo, Merja Larivaara, Rauno Ahonen, Vappu Nalbantoglu, Sauli Suonpää, Ursula Salo, Sanna Saarijärvi Elina Hietala</p><p>Kirjailija: Minna Rytisalo<br>Dramatisointi: Henna Piirto<br>Ohjaus: Liisa Mustonen<br>Koreografi: Matleena Laine<br>Lavastus ja pukusuunnittelu: Annina Nevantaus<br>Valosuunnittelu: Kari Leppälä<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Dramaturgi: Sanna Niemeläinen</p><p><br></p>"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Minna Rytisalo - Henna Piirto Jenny Hill Mäen Jenni eroaa miehestään Jussista ja muuttaa pois espoolaisesta merenrantatalosta yksiöön kantakaupungissa."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/jenny-hill-3748847/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/jenny-hill-3748847/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/jenny-hill-3748847/?affiliate=ADV&language=en"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350611/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19036792",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036792/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036792/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036792/?affiliate=ADV&language=en"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:03.034411Z",
            "last_modified_time": "2025-04-03T23:15:42.422453Z",
            "date_published": null,
            "start_time": "2025-04-03T15: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,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Jyrki Kasper, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036792/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64725",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "43,10-79 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-2714053"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152831,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-16T13:17:17.328272Z",
                    "last_modified_time": "2024-10-16T13:17:17.328293Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759355.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152831/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-16T13:17:17.299944Z",
            "last_modified_time": "2025-04-03T15:13:18.846134Z",
            "date_published": null,
            "start_time": "2025-04-09T13: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,
            "location_extra_info": null,
            "name": {
                "fi": "The Lord of the Rings, The Hobbit, and The Rings of Power – in Concert – Loppuunmyyty! / Sold out!"
            },
            "description": {
                "fi": "<p>Taru Sormusten Herrasta, Hobitti, ja Mahtisormukset – konsertti</p><p>Konsertti on omistettu J.R.R. Tolkienin musiikilliselle universumille. Ainutlaatuisen konsertin tunnelmat vievät yleisön kohti Keski-Maata. Legendaarisen Sir Christopher Leen, unohtumattoman Sarumanin, ääntä kuullaan sopusoinnussa Konnun orkesterin, solistien ja kuoron kanssa. Hobittien, haltioiden ja örkkien ihmeellinen maailma herää henkiin luoden vertaansa vailla olevan elämyksen. Tähti alkuperäisestä elokuvasta esittelee konsertin!</p><p>Tässä konsertissa pääset kokemaan tunnelmia Mordorin synkistä uhkista Mustien ratsastajien räikeisiin hyökkäyksiin, unohtamatta haltioiden upeita, lyyrisiä melodioita. Jokainen ilmoille nouseva sävel on kutsu kohti Taru sormusten herrasta, Hobitti sekä Mahtisormukset- eeppisiä tarinoita. Konsertti tarjoaa puhtaan ja syvällisen musiikillisen kokemuksen, jossa juhlitaan Tolkienin teoksiin liittyvien sävellysten kerronnallista voimaa. Tervetuloa Keski-Maahan!</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Star Entertainment Europe by Lancelot Productions"
            },
            "short_description": {
                "fi": "Taru Sormusten Herrasta, Hobitti, ja Mahtisormukset – konsertti"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0453CA219B7346B308426FBADFFC91D3/The_Lord_of_the_Rings_The_Hobbit_and_The_Rings_of_Power_in_Concert_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64725/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65898",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "45-48 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3863637"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 459072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-03T12:13:32.035385Z",
                    "last_modified_time": "2025-04-03T12:13:32.035400Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767709.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/459072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-03T12:13:31.995840Z",
            "last_modified_time": "2025-04-03T12:13:32.078136Z",
            "date_published": null,
            "start_time": "2025-10-28T16: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,
            "location_extra_info": null,
            "name": {
                "fi": "Fabio Frizzi – ”Frizzi 2 Fulci” (IT)"
            },
            "description": {
                "fi": "<p>Pitkän ja ansiokkaan uran elokuvamusiikin parissa tehnyt italialainen säveltäjä Fabio Frizzi saapuu lokakuussa konsertoimaan Suomeen. Viimeksi vuonna 2014 Suomessa esiintynyt Frizzi nähdään yhtyeensä kera Helsingin Savoy-teatterissa tiistaina 28. lokakuuta.</p><p>Bolognassa vuonna 1951 syntynyt Frizzi tunnetaan erityisesti 70-luvun tuotannostaan sekä yhteistyöstään muun muassa Sergio Martinon, Lamberto Bavan ja Bruno Corbuccin kaltaisten maineikkaiden italialaisten elokuvaohjaajien kanssa. Erityisasemassa Frizzin tuotannossa on kuitenkin jo pitkään ollut niin kutsutun gorekauhun kummisedän Lucio Fulcin elokuviin säveltämä musiikki. Frizzin tunnetuimpiin teoksiin lukeutuvatkin <i>Seven Notes In Black-, Zombi 2-, City of the Living Dead-, Cat In The Brain-, The Beyond-</i> ja <i>Manhattan Baby </i>-elokuvien tunnussävelmät. Frizzi on urallaan ansainnut suitsutusta myös esimerkiksi Quentin Tarantinolta, tämän sisällytettyä <i>Seven Notes In Blackin</i> teemaa <i>Kill Bill</i> -elokuvaansa.</p><p>Vuodesta 2013 lähtien Frizzi on kiertänyt maailmaa nyt Suomeenkin palaavan ”Frizzi 2 Fulci” -kiertuekonseptinsa tiimoilta. Tällä kertaa illan aikana kuullaan Zombie-elokuvan musiikin lisäksi kattava läpileikkaus Frizzin ja Fulcin yhteistyöaikojen tuotannosta.</p><p>Fabio Frizzi – ”Frizzi 2 Fulci” (IT)<br>Zombie Composer’s Cut -live</p><p>Ovet klo 18:00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Fullsteam Agency Oy"
            },
            "short_description": {
                "fi": "Pitkän ja ansiokkaan uran elokuvamusiikin parissa tehnyt italialainen säveltäjä Fabio Frizzi saapuu lokakuussa konsertoimaan Suomeen. Viimeksi vuonna 2014 Suomessa esiintynyt Frizzi nähdään yhtyeensä kera Helsingin Savoy-teatterissa tiistaina 28. lokakuuta."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9D5B8A275E7CAAF80BBB2666374036EA/Fabio_Frizzi_Frizzi_2_Fulci_IT_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65898/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65912",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 457980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-03T08:13:29.373751Z",
                    "last_modified_time": "2025-04-03T08:13:29.373767Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768276.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/457980/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-03T08:13:29.332835Z",
            "last_modified_time": "2025-04-03T08:13:29.426080Z",
            "date_published": null,
            "start_time": "2025-04-11",
            "end_time": "2025-04-26",
            "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,
            "location_extra_info": null,
            "name": {
                "fi": "Sinua ei ole, sanon silti",
                "sv": "Sinua ei ole, sanon silti",
                "en": "Sinua ei ole, sanon silti"
            },
            "description": {
                "fi": "<p>Näyttely kuvaa runojen ja maalausten avulla elämän jatkumista menetyksen jälkeen.</p><p>Anneli Tarpila on eteläpohjalainen, farmakologiasta väitellyt biologi, jolle leskeksi jääminen toi kokonaan uuden ulottuvuuden elämään ja kuolemaan. Esikoisrunoteos Sinua ei ole, sanon silti (Momentum Kirjat, 2025) tiivistää runoihin tunteet elämän jatkumisesta menetyksen jälkeen.</p><p>Taideteosten kautta tekstit syvenevät ja lohduttavat. Kirsti Makkosen, Pessi Parviaisen ja Sinikka Rasinperän maalaukset muodostavat visuaalisen peilin Anneli Tarpilan runoille kuolemasta ja menetyksestä. Maalaukset on valokuvattu runokirjaan ja nyt esitetään näyttelyssä alkuperäisinä yhdessä runojen kanssa.</p><p><i>Jos murheen määrää voi mitata<br>mikä valtava murheen massa<br>raskas taivaan täyttävä pilvi<br>murhe-energiaa<br>kun ihmisten murheet pääsevät irti.<br> <br>Yhden ihmisen yksi murhe<br>voi olla yhtä suuri<br>täyttää koko maailman<br>kunnes murhe muuttuu<br>pilvi sataa alas<br>kirkastuu.</i><br>Anneli Tarpila</p><p>Näyttelytila sijaitsee Vuotalon 2. kerroksessa, jonne pääsee portaita pitkin ja hissillä. Näyttelyyn on vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Näyttely kuvaa runojen ja maalausten avulla elämän jatkumista menetyksen jälkeen."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/65D267BA220419B4C0A416DE756F2671/Sinua_ei_ole_sanon_silti",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/65D267BA220419B4C0A416DE756F2671/Sinua_ei_ole_sanon_silti",
                "en": "http://www.vuotalo.fi/en/events/event/65D267BA220419B4C0A416DE756F2671/Sinua_ei_ole_sanon_silti"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65912/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64953",
            "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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 166733,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-24T15:15:34.704925Z",
                    "last_modified_time": "2025-01-24T15:15:34.704943Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761913.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166733/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-24T15:15:34.677899Z",
            "last_modified_time": "2025-04-03T06:13:36.134719Z",
            "date_published": null,
            "start_time": "2025-06-06",
            "end_time": "2025-06-27",
            "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,
            "location_extra_info": null,
            "name": {
                "fi": "Kholod Hawash: Veil",
                "sv": "Kholod Hawash: Veil",
                "en": "Kholod Hawash: Veil"
            },
            "description": {
                "fi": "<p>Näyttely keskittyy naisten vapauteen idässä ja yleisesti koko maailmassa.</p><p>Veil-näyttely taistelee sortoa ja vainoa vastaan pehmeillä keinoilla, käyttäen sosiaalisia viittauksia ja symboleja. Idässä esimerkiksi hunnun riisuminen, hiusten paljastaminen tai hiusten leikkaaminen ovat vahvoja, mutta samalla pehmeitä protesteja erityisesti miesten ja uskonnon vallan auktoriteettia vastaan. Tämä ei kuitenkaan tapahdu helposti, sillä papiston väkivaltainen ja verinen sortovalta perustuu heidän vallanpyhyyteensä.</p><p>”Haluan puhua taiteessani naisten asemasta sekä Irakissa että Suomessa.” <br>- Kholod Hawash <br>(Suomen Kuvalehti 8.5.2024)</p><p>Vapaa pääsy</p>",
                "sv": "<p>Utställningen fokuserar på kvinnans frigörelse i öst och i världen i allmänhet.</p><p>Utställningen Veil bekämpar förtryck och förföljelse med mjuka medel, genom att utnyttja sociala referenser och symboler. I öst är till exempel att ta av sig slöjan, blotta eller klippa håret starka men samtidigt mjuka protester, särskilt mot auktoriteten hos män och religionen. Detta är dock inte lätt, eftersom prästerskapets våldsamma och blodiga förtryck grundar sig på heligheten för deras makt.</p><p>“I min konst vill jag tala om kvinnans roll både i Irak och i Finland.” <br>- Kholod Hawash <br>(Suomen Kuvalehti 8.5.2024)</p>",
                "en": "<p>This exhibition focuses on women’s freedom in the East and the world in general.</p><p>The Veil exhibition fights against oppression and persecution through gentle means, using social references and symbols. In the East, for example, taking off your veil, exposing your hair or cutting your hair are powerful but simultaneously gentle protests – especially against the authority of men and religion. However, this is not easy, as the violent and bloody oppressive power of the clergy is rooted in the sanctity of their rule.</p><p>“In my art, I want to talk about the role of women both in Iraq and in Finland.” <br>– Kholod Hawash <br>(Suomen Kuvalehti, 8 May 2024)</p>"
            },
            "provider_contact_info": null,
            "provider": null,
            "short_description": {
                "fi": "Näyttely keskittyy naisten vapauteen idässä ja yleisesti koko maailmassa.",
                "sv": "Utställningen fokuserar på kvinnans frigörelse i öst och i världen i allmänhet.",
                "en": "This exhibition focuses on women’s freedom in the East and the world in general."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/0F1BA10C3AEC97304587ABB6F6F8DF6C/Kholod_Hawash_Veil",
                "sv": "http://www.caisa.fi/sv/evenemang/event/0F1BA10C3AEC97304587ABB6F6F8DF6C/Kholod_Hawash_Veil",
                "en": "http://www.caisa.fi/en/events/event/0F1BA10C3AEC97304587ABB6F6F8DF6C/Kholod_Hawash_Veil"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64953/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "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": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "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"
                    }
                }
            ],
            "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,
            "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_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "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"
            },
            "@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": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "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"
                    }
                }
            ],
            "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,
            "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_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "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"
            },
            "@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": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "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"
                    }
                }
            ],
            "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,
            "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_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "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"
            },
            "@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": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null,
                    "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"
                    }
                }
            ],
            "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,
            "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_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "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"
            },
            "@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": [],
                    "description": null,
                    "price": {
                        "fi": "10 € / 8 €",
                        "sv": "10 € / 8 €",
                        "en": "10 € / 8 €"
                    },
                    "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/"
                    }
                }
            ],
            "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,
            "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_contact_info": null,
            "provider": 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_"
            },
            "@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": [],
                    "description": null,
                    "price": null,
                    "info_url": 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,
            "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_contact_info": null,
            "provider": 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"
            },
            "@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": [],
                    "description": null,
                    "price": null,
                    "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/"
                    }
                }
            ],
            "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,
            "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_contact_info": null,
            "provider": 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"
            },
            "@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": [],
                    "description": null,
                    "price": {
                        "fi": "15 € / 10 €",
                        "sv": "15 € / 10 €",
                        "en": "15 € / 10 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/roofaerialclub/",
                        "sv": "https://www.lippu.fi/artist/roofaerialclub/",
                        "en": "https://www.lippu.fi/artist/roofaerialclub/"
                    }
                }
            ],
            "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,
            "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_contact_info": null,
            "provider": 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"
            },
            "@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": [],
                    "description": null,
                    "price": null,
                    "info_url": 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,
            "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_contact_info": null,
            "provider": 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"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65885/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}