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=189&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": 26801,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=190&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=188&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:66078",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/",
                        "sv": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/",
                        "en": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / 11 €",
                        "sv": "17 € / 11 €",
                        "en": "17 € / 11 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 666198,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-02T08:13:52.181373Z",
                    "last_modified_time": "2025-05-02T08:13:52.181393Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771430.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666198/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-02T08:13:52.107984Z",
            "last_modified_time": "2025-05-02T08:13:52.256225Z",
            "date_published": null,
            "start_time": "2025-05-22T14: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,
            "name": {
                "fi": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys",
                "sv": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys",
                "en": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1ADC7DFF3734F999AA28CABDB6464C2C/Avaruus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1ADC7DFF3734F999AA28CABDB6464C2C/Avaruus",
                "en": "http://www.malmitalo.fi/en/events/event/1ADC7DFF3734F999AA28CABDB6464C2C/Avaruus"
            },
            "description": {
                "fi": "<p>Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!</p><p>Pukinmäen sirkus- ja teatterikoulun esitykset vievät sinut painottomuuden, planeettojen, tähtisumujen ja toisten ulottovuuksien maailmaan taituruuden ja mielikuvituksen siivittämänä. Luvassa on teatteria, akrobatiaa, ilma-akrobatiaa ja henkeäsalpaavia temppuja galaktisessa tunnelmassa. Älä jää maan pinnalle – tule mukaan matkalle!</p><p>Lisätietoa: <a>https://www.taidekoulut.fi</a></p><p>Kesto: 1 tunti</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66078/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66077",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/",
                        "sv": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/",
                        "en": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / 11 €",
                        "sv": "17 € / 11 €",
                        "en": "17 € / 11 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 666197,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-02T08:13:51.916392Z",
                    "last_modified_time": "2025-05-02T08:13:51.916408Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771429.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666197/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-02T08:13:51.867255Z",
            "last_modified_time": "2025-05-02T08:13:51.999470Z",
            "date_published": null,
            "start_time": "2025-05-21T16: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,
            "name": {
                "fi": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys",
                "sv": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys",
                "en": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/739DED39BA9F312109D382C1EDE7B7A9/Avaruus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/739DED39BA9F312109D382C1EDE7B7A9/Avaruus",
                "en": "http://www.malmitalo.fi/en/events/event/739DED39BA9F312109D382C1EDE7B7A9/Avaruus"
            },
            "description": {
                "fi": "<p>Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!</p><p>Pukinmäen sirkus- ja teatterikoulun esitykset vievät sinut painottomuuden, planeettojen, tähtisumujen ja toisten ulottovuuksien maailmaan taituruuden ja mielikuvituksen siivittämänä. Luvassa on teatteria, akrobatiaa, ilma-akrobatiaa ja henkeäsalpaavia temppuja galaktisessa tunnelmassa. Älä jää maan pinnalle – tule mukaan matkalle!</p><p>Lisätietoa: <a>https://www.taidekoulut.fi</a></p><p>Kesto: 1 tunti</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66077/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66076",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/",
                        "sv": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/",
                        "en": "https://www.lippu.fi/artist/pukinmaeen-taidekoulut/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / 11 €",
                        "sv": "17 € / 11 €",
                        "en": "17 € / 11 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 666196,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-02T08:13:51.612508Z",
                    "last_modified_time": "2025-05-02T08:13:51.612525Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771428.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/666196/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-02T08:13:51.530585Z",
            "last_modified_time": "2025-05-02T08:13:51.714675Z",
            "date_published": null,
            "start_time": "2025-05-21T14: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,
            "name": {
                "fi": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys",
                "sv": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys",
                "en": "Avaruus – Pukinmäen sirkus- ja teatterikoulun kevätesitys"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/28E2583931C28F285465246D12050A9E/Avaruus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/28E2583931C28F285465246D12050A9E/Avaruus",
                "en": "http://www.malmitalo.fi/en/events/event/28E2583931C28F285465246D12050A9E/Avaruus"
            },
            "description": {
                "fi": "<p>Tervetuloa kokemaan Puksun sirkuksen ja teatterikoulun oppilaiden jännittävä avaruusseikkailu!</p><p>Pukinmäen sirkus- ja teatterikoulun esitykset vievät sinut painottomuuden, planeettojen, tähtisumujen ja toisten ulottovuuksien maailmaan taituruuden ja mielikuvituksen siivittämänä. Luvassa on teatteria, akrobatiaa, ilma-akrobatiaa ja henkeäsalpaavia temppuja galaktisessa tunnelmassa. Älä jää maan pinnalle – tule mukaan matkalle!</p><p>Lisätietoa: <a>https://www.taidekoulut.fi</a></p><p>Kesto: 1 tunti</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66076/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65891",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / 20 €",
                        "sv": "17 € / 20 €",
                        "en": "17 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 446801,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-01T14:13:36.959803Z",
                    "last_modified_time": "2025-04-01T14:13:36.959826Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767900.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446801/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-01T14:13:36.906425Z",
            "last_modified_time": "2025-05-02T08:13:49.849752Z",
            "date_published": null,
            "start_time": "2025-05-10T15: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,
            "name": {
                "fi": "Teatteri Nirvana: HATKAT – ENSI-ILTA",
                "sv": "Teatteri Nirvana: HATKAT – PREMIÄR",
                "en": "Teatteri Nirvana: HATKAT – PREMIERE"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.",
                "sv": "Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.",
                "en": "Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C14512634CC6E4D1F26A606044334910/Teatteri_Nirvana_HATKAT_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C14512634CC6E4D1F26A606044334910/Teatteri_Nirvana_HATKAT_",
                "en": "http://www.stoa.fi/en/events/event/C14512634CC6E4D1F26A606044334910/Teatteri_Nirvana_HATKAT_"
            },
            "description": {
                "fi": "<p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754493/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754493/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754493/?affiliate=FSF\">HERE</a></u></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65891/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65890",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / 20 €",
                        "sv": "17 € / 20 €",
                        "en": "17 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 446800,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-01T14:13:36.558279Z",
                    "last_modified_time": "2025-04-01T14:13:36.558296Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767898.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446800/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-01T14:13:36.538276Z",
            "last_modified_time": "2025-05-02T08:13:49.450072Z",
            "date_published": null,
            "start_time": "2025-05-09T15: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,
            "name": {
                "fi": "PERUTTU Teatteri Nirvana: HATKAT",
                "sv": "INSTÄLLT Teatteri Nirvana: HATKAT",
                "en": "CANCELLED Teatteri Nirvana: HATKAT"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.",
                "sv": "Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.",
                "en": "Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/11ECD297F7C6A0F84C73DCE8152AE8CD/PERUTTU_Teatteri_Nirvana_HATKAT_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/11ECD297F7C6A0F84C73DCE8152AE8CD/INSTALLT_Teatteri_Nirvana_HATKAT_",
                "en": "http://www.stoa.fi/en/events/event/11ECD297F7C6A0F84C73DCE8152AE8CD/CANCELLED_Teatteri_Nirvana_HATKAT_"
            },
            "description": {
                "fi": "<p>Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.</p><p>Hatkat-esityksen ensi-ilta 3.5.2025 ja sitä seuraavat esitykset 7., 8. ja 9.5.2025 ovat valitettavasti peruttu. Uusi ensi-iltapäivä on lauantai 10.5.2025 klo 18.</p><p>Voit halutessasi vaihtaa lippusi toiseen esityspäivään olemalla yhteydessä lippu.fi-asiakaspalveluun: p. 030 514 214. Palvelu avoinna arkisin klo 10-16.</p><p>Vaihtoehtoisesti voit hakea lippurahojenne palautusta alla olevasta linkistä 9.5.2025 mennessä.<br>https://web.lippu.fi/palautus/</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>Pahoittelemme aiheutunutta vaivaa!</p><p>-</p><p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.</p><p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience.</p><p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HERE</a></u></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65890/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65889",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / 20 €",
                        "sv": "17 € / 20 €",
                        "en": "17 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 446799,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-01T14:13:36.349362Z",
                    "last_modified_time": "2025-04-01T14:13:36.349420Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767896.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446799/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-01T14:13:36.333693Z",
            "last_modified_time": "2025-05-02T08:13:49.198710Z",
            "date_published": null,
            "start_time": "2025-05-08T15: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,
            "name": {
                "fi": "PERUTTU Teatteri Nirvana: HATKAT",
                "sv": "INSTÄLLT Teatteri Nirvana: HATKAT",
                "en": "CANCELLED Teatteri Nirvana: HATKAT"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.",
                "sv": "Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.",
                "en": "Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/748954BDC69F26D4E625B4E579705361/PERUTTU_Teatteri_Nirvana_HATKAT_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/748954BDC69F26D4E625B4E579705361/INSTALLT_Teatteri_Nirvana_HATKAT_",
                "en": "http://www.stoa.fi/en/events/event/748954BDC69F26D4E625B4E579705361/CANCELLED_Teatteri_Nirvana_HATKAT_"
            },
            "description": {
                "fi": "<p>Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.</p><p>Hatkat-esityksen ensi-ilta 3.5.2025 ja sitä seuraavat esitykset 7., 8. ja 9.5.2025 ovat valitettavasti peruttu. Uusi ensi-iltapäivä on lauantai 10.5.2025 klo 18.</p><p>Voit halutessasi vaihtaa lippusi toiseen esityspäivään olemalla yhteydessä lippu.fi-asiakaspalveluun: p. 030 514 214. Palvelu avoinna arkisin klo 10-16.</p><p>Vaihtoehtoisesti voit hakea lippurahojenne palautusta alla olevasta linkistä 9.5.2025 mennessä.<br>https://web.lippu.fi/palautus/</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>Pahoittelemme aiheutunutta vaivaa!</p><p>-</p><p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.</p><p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience.</p><p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HERE</a></u></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65889/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65897",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / 20 €",
                        "sv": "17 € / 20 €",
                        "en": "17 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 446798,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-01T14:13:36.076008Z",
                    "last_modified_time": "2025-04-01T14:13:36.076027Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767894.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446798/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-01T14:13:36.035555Z",
            "last_modified_time": "2025-05-02T08:13:48.889084Z",
            "date_published": null,
            "start_time": "2025-05-07T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "PERUTTU Teatteri Nirvana: HATKAT",
                "sv": "INSTÄLLT Teatteri Nirvana: HATKAT",
                "en": "CANCELLED Teatteri Nirvana: HATKAT"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.",
                "sv": "Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.",
                "en": "Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C3125D34A10F3ED03E721CD7B4D33D16/PERUTTU_Teatteri_Nirvana_HATKAT_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C3125D34A10F3ED03E721CD7B4D33D16/INSTALLT_Teatteri_Nirvana_HATKAT_",
                "en": "http://www.stoa.fi/en/events/event/C3125D34A10F3ED03E721CD7B4D33D16/CANCELLED_Teatteri_Nirvana_HATKAT_"
            },
            "description": {
                "fi": "<p>Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.</p><p>Hatkat-esityksen ensi-ilta 3.5.2025 ja sitä seuraavat esitykset 7., 8. ja 9.5.2025 ovat valitettavasti peruttu. Uusi ensi-iltapäivä on lauantai 10.5.2025 klo 18.</p><p>Voit halutessasi vaihtaa lippusi toiseen esityspäivään olemalla yhteydessä lippu.fi-asiakaspalveluun: p. 030 514 214. Palvelu avoinna arkisin klo 10-16.</p><p>Vaihtoehtoisesti voit hakea lippurahojenne palautusta alla olevasta linkistä 9.5.2025 mennessä.<br>https://web.lippu.fi/palautus/</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>Pahoittelemme aiheutunutta vaivaa!</p><p>-</p><p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.</p><p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience.</p><p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HERE</a></u></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65897/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65886",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / 20 €",
                        "sv": "17 € / 20 €",
                        "en": "17 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 446797,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-01T14:13:35.409565Z",
                    "last_modified_time": "2025-04-01T14:13:35.409584Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767892.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446797/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-01T14:13:35.366809Z",
            "last_modified_time": "2025-05-02T08:13:48.240938Z",
            "date_published": null,
            "start_time": "2025-05-03T15: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,
            "name": {
                "fi": "PERUTTU Teatteri Nirvana: HATKAT",
                "sv": "INSTÄLLT Teatteri Nirvana: HATKAT",
                "en": "CANCELLED Teatteri Nirvana: HATKAT"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.",
                "sv": "Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.",
                "en": "Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F8D708A6C679342F1F5F103106B16B42/PERUTTU_Teatteri_Nirvana_HATKAT_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F8D708A6C679342F1F5F103106B16B42/INSTALLT_Teatteri_Nirvana_HATKAT_",
                "en": "http://www.stoa.fi/en/events/event/F8D708A6C679342F1F5F103106B16B42/CANCELLED_Teatteri_Nirvana_HATKAT_"
            },
            "description": {
                "fi": "<p>Esitys on valitettavasti peruuntunut sairaustapauksen vuoksi. Pahoittelemme tilannetta.</p><p>Hatkat-esityksen ensi-ilta 3.5.2025 ja sitä seuraavat esitykset 7., 8. ja 9.5.2025 ovat valitettavasti peruttu. Uusi ensi-iltapäivä on lauantai 10.5.2025 klo 18.</p><p>Voit halutessasi vaihtaa lippusi toiseen esityspäivään olemalla yhteydessä lippu.fi-asiakaspalveluun: p. 030 514 214. Palvelu avoinna arkisin klo 10-16.</p><p>Vaihtoehtoisesti voit hakea lippurahojenne palautusta alla olevasta linkistä 9.5.2025 mennessä.<br>https://web.lippu.fi/palautus/</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).</p><p>Pahoittelemme aiheutunutta vaivaa!</p><p>-</p><p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 75 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Föreställningen har tyvärr ställts in på grund av sjukdomsfall. Vi beklagar situationen.</p><p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Långd: 75 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Unfortunately, the performance has been cancelled due to illness. We apologize for the inconvenience.</p><p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 75 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754496/?affiliate=FSF\">HERE</a></u></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65886/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23bcpq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ddci/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-22T08:34:11.247871Z",
            "last_modified_time": "2025-05-02T08:01:08.201809Z",
            "date_published": null,
            "start_time": "2025-05-18T12:00:00Z",
            "end_time": "2025-05-18T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Maaginen viikko: Another Castle-kuoron esitys Lippulaivan kirjastossa"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Salonki"
            },
            "short_description": {
                "fi": "Maaginen viikko huipentuu kuoroesitykseen, jossa pääset kuulemaan tuttuja säveliä kirjojen maailmoista! Esitys sopii kaikenikäisille!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Maaginen viikko huipentuu kuoroesitykseen, jossa pääset kuulemaan tuttuja säveliä kirjojen maailmoista!</p><p>Kokemus on kokonaisvaltainen elämys, sillä voit tilaisuuden jälkeen myös lainata kappaleisiin liittyviä kirjoja. Esitys sopii kaikenikäisille!</p><p>Another Castle on vuonna 2014 perustettu Helsingin nörtein enimmäkseen naiskuoro. 50-henkisen kuoron ohjelmistoon kuuluu laaja kirjo musiikillisia matkoja erilaisten fandomien maailmoihin. Kuoro inspiroituu scifistä, fantasiasta, animaatioista, sarjakuvista, peleistä, kirjallisuudesta, elokuvista ja tv-sarjoista. Kuorosovitukset kappaleista he tuottavat itse.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bcpq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23bc6e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ddci/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/85cTYqwc4",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/tapiolankirjasto/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-04-29T10:31:41.467502Z",
            "last_modified_time": "2025-05-02T08:00:42.257507Z",
            "date_published": "2025-04-29T10:18:00Z",
            "start_time": "2025-05-17T10:00:00Z",
            "end_time": "2025-05-17T13: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,
            "name": {
                "fi": "Therian miitti Tapiolan kirjastossa",
                "sv": "Therian möte",
                "en": "Therian meeting"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Tapiolan kirjasto",
                "sv": "Tapiolan kirjasto",
                "en": "Tapiolan kirjasto"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Oletko kiinnostunut Therian-kulttuurista? Tule mukaan rentoon ja luovaan tapahtumaan, jossa voit tavata muita samasta aiheesta kiinnostuneita!",
                "sv": "Är du intresserad av therian-kulturen? Kom med på ett avslappnat och kreativt evenemang där du kan träffa andra med samma intresse!",
                "en": "Are you interested in Therian culture? Join us for a relaxed and creative event where you can meet others who share the same interest! "
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Oletko kiinnostunut Therian-kulttuurista? Tule mukaan rentoon ja luovaan tapahtumaan, jossa voit tavata muita samasta aiheesta kiinnostuneita! Tapahtuma on suunnattu peruskouluikäisille.</strong></p><p>Tapahtumassa on myös erilaisia aktiviteetteja:</p><ul><li><strong>Luovuuspiste</strong>: Sanataidetta, tarinoiden kirjoittamista, piirtämistä ja maalaamista</li><li><strong>Hengailupiste</strong>: Rentoa olemista, juttelua, säkkituoleja ja tyynyjä</li><li><strong>Open Stage</strong>: Tule pitämään oma ohjelmasi – tietovisa, infotuokio, työpaja... Ilmoittaudu tekstarilla tai sähköpostilla, yhteistiedot löydät alta</li><li><strong>Vanhempien kohtaamispaikka</strong>: Tule keskustelemaan muiden vanhempien kanssa Therian-kulttuurista</li></ul><p>Tule sellaisena kuin olet – nähdään!</p><p>Noudatamme tapahtumassa Espoon kaupungin turvallisemman tilan periaatteita, löydät ne täältä: <a href=\"https://www.espoo.fi/fi/kulttuuriespoon-turvallisemman-tilan-periaatteet\">KulttuuriEspoon turvallisemman tilan periaatteet.</a></p><p>Lisätietoja tapahtumasta, ja ilmoittautumiset Open Sgatelle:</p><ul><li><strong>Laura </strong>(040 6343827 / laura.hakomaa [at] espoo.fi)</li><li><strong>Emilia </strong>(040 6344438 / emilia.linnimaki [at] espoo.fi)</li></ul>",
                "sv": "<p><strong>Är du intresserad av therian-kulturen? Kom med på ett avslappnat och kreativt evenemang där du kan träffa andra med samma intresse! Evenemanget riktar sig till grundskoleelever.</strong></p><p>Det finns också olika aktiviteter på plats:</p><ul><li><strong>Kreativ hörna:</strong> Ordkonst, skrivande av berättelser, teckning och målning</li><li><strong>Chillhörna:</strong> Avslappnat häng, samtal, sittsäckar och kuddar</li><li><strong>Open Stage</strong>: Håll ditt eget program – quiz, infotillfälle, verkstad... Anmäl dig via sms eller e-post, kontaktuppgifterna finns nedan</li><li><strong>Föräldraträffpunkt: </strong>Kom och diskutera therian-kulturen med andra föräldrar</li></ul><p>Kom som du är – vi ses!</p><p>Vi följer Esbo stads principer för tryggare rum. Du hittar dem här: <a href=\"https://www.espoo.fi/sv/kulturesbo/kulturesbos-principer-tryggare-rum\">KulturEsbos principer för tryggare rum</a></p><p>Mer information om evenemanget och anmälan till Open Stage:</p><ul><li><strong>Laura </strong>(040 6343827 / laura.hakomaa [at] espoo.fi)</li><li><strong>Emilia </strong>(040 6344438 / emilia.linnimaki [at] espoo.fi)</li></ul>",
                "en": "<p>Are you interested in Therian culture? Join us for a relaxed and creative event where you can meet others who share the same interest! This event is aimed at school-aged children.</p><p>There will be a variety of activities:</p><ul><li><strong>Creativity Spot:</strong> Creative writing, storytelling, drawing, and painting</li><li><strong>Chill Zone:</strong> Casual hanging out, chatting, bean bags and pillows</li><li><strong>Open Stage: </strong>Host your own segment – quiz, info session, workshop... Sign up by text or email, contact info below</li><li><strong>Parent Meeting Point:</strong> Connect with other parents to discuss Therian culture</li></ul><p>Come as you are – see you there!</p><p>We follow the City of Espoo’s safer space guidelines. You can find them here: <a href=\"https://www.espoo.fi/en/cultureespoo/cultureespoos-principles-safer-space\">CultureEspoo's principles for safer space</a></p><p>More information about the event and registration on Open Stage:</p><ul><li><strong>Laura </strong>(040 6343827 / laura.hakomaa [at] espoo.fi)</li><li><strong>Emilia </strong>(040 6344438 / emilia.linnimaki [at] espoo.fi)</li></ul>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bc6e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:28f7d800-1c27-f011-8c4e-000d3ab33a80",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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: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: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: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: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: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: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: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: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: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:p2698/?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: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: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: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: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:p5164/?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: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: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:p9778/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_youtube",
                    "link": "https://www.Youtube.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.Instagram.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_whatsapp",
                    "link": "https://www.Whatsapp.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_facebook",
                    "link": "https://www.Facebook.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_snapchat",
                    "link": "https://www.Snapchat.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_reddit",
                    "link": "https://www.Reddit.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_tumblr",
                    "link": "https://www.Tumblr.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://www.X.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_tiktok",
                    "link": "https://www.Tiktok.com",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=KuTaSu_-_sprint_9_review_retro_252025495020873"
                    },
                    "description": {
                        "fi": "Peruslippu"
                    },
                    "price": {
                        "fi": "12"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 665859,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-02T07:25:59.587778Z",
                    "last_modified_time": "2025-05-02T07:25:59.587796Z",
                    "name": "Retro",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9",
                    "cropping": "",
                    "photographer_name": "Kuvaaja",
                    "alt_text": "Retro",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/665859/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [
                {
                    "name": "Retro",
                    "url": "https://www.youtube.com",
                    "alt_text": "Retro"
                }
            ],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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: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: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: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: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: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: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: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: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:p2698/?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: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: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: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: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:p5164/?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: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: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:p9778/?format=api"
                }
            ],
            "created_time": "2025-05-02T06:11:03.602209Z",
            "last_modified_time": "2025-05-02T07:26:00.775226Z",
            "date_published": "2025-05-02T06:09:30Z",
            "start_time": "2025-05-02T07:00:00Z",
            "end_time": "2025-05-02T08:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 12,
            "audience_max_age": 55,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 2,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2025-05-02T05:00:00+03:00",
            "enrolment_end_time": "2025-05-02T07:30:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "KuTaSu - sprint 9 review & retro 2.5.2025 Muutettu Päätapahtuma"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Jiiri"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "sprint 9 review & retro 2.5.2025"
            },
            "info_url": {
                "fi": "https://tapahtumat.hel.fi"
            },
            "description": {
                "fi": "Retro - Demo sprint 9 review &amp; retro 2.5.2025 Muutettu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:28f7d800-1c27-f011-8c4e-000d3ab33a80/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23bduy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/5qtLqSvG6",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490361,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-02T06:57:25.997422Z",
                    "last_modified_time": "2025-05-02T06:57:25.997446Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/adc653f7-9249-404b-ba7d-98f95c63b3ca.jpg",
                    "cropping": "262,0,938,675",
                    "photographer_name": "Espoon kirjailijat ry",
                    "alt_text": "Yhdeksän kirjan kansikuva kesäistä maisemaa vasten.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490361/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-02T07:00:58.631642Z",
            "last_modified_time": "2025-05-02T07:00:58.631658Z",
            "date_published": "2025-05-02T06:43:00Z",
            "start_time": "2025-06-04T14:00:00Z",
            "end_time": "2025-06-04T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Uusien kirjojen ilta",
                "sv": "Kväll med nya böcker",
                "en": "Evening of new books"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Espoon kirjailijat ry",
                "sv": "Espoon kirjailijat ry",
                "en": "Espoon kirjailijat ry"
            },
            "location_extra_info": {
                "fi": "Kaija",
                "sv": "Kaija",
                "en": "Kaija"
            },
            "short_description": {
                "fi": "Tervetuloa kuulemaan, kun yksitoista Espoon kirjailijat ry:n kirjailijaa esittelee tuoreimman kirjansa. Tilaisuuden juontaa kirjailija Leena Sainio.",
                "sv": "Välkommen att höra elva författare från Espoon kirjailijat ry presentera sin senaste bok. Författaren Leena Sainio är värd för evenemanget.",
                "en": "Welcome to hear eleven authors from the Espoon kirjailijat ry present their latest book. The event will be hosted by author Leena Sainio."
            },
            "info_url": {
                "fi": "https://espoonkirjailijat.fi/",
                "sv": "https://espoonkirjailijat.fi/",
                "en": "https://espoonkirjailijat.fi/"
            },
            "description": {
                "fi": "<p>Tervetuloa kuulemaan, kun yksitoista Espoon kirjailijat ry:n kirjailijaa esittelee tuoreimman kirjansa. Tilaisuuden juontaa kirjailija Leena Sainio.</p><p>Kirjastaan ovat kertomassa seuraavat kirjailijat:</p><ul><li>Ilpo Salonen ja Miia Salonen</li><li>Henna Karppinen-Kummunmäki</li><li>Mari Frisk</li><li>Soile Lautamies</li><li>Karissa Kettu</li><li>Tarja Kaltiomaa</li><li>Juha Rautio</li><li>Sinikka Paavilainen</li><li>Tuija Kuha ja Marc Helfer</li><li>Tarita Ikonen</li><li>Iikka Tahvanainen</li></ul>",
                "sv": "<p>Välkommen att höra elva författare från Espoon kirjailijat ry presentera sin senaste bok. Författaren Leena Sainio är värd för evenemanget.</p><p>Följande författare kommer att tala om sina böcker:</p><ul><li>Ilpo Salonen och Miia Salonen</li><li>Henna Karppinen-Kummunmäki</li><li>Mari Frisk</li><li>Soile Lautamies</li><li>Karissa Kettu</li><li>Tarja Kaltiomaa</li><li>Juha Rautio</li><li>Sinikka Paavilainen</li><li>Tuija Kuha och Marc Helfer</li><li>Tarita Ikonen</li><li>Iikka Tahvanainen</li></ul>",
                "en": "<p>Welcome to hear eleven authors from the Espoon kirjailijat ry present their latest book. The event will be hosted by author Leena Sainio.</p><p>The following authors will talk about their books:</p><ul><li>Ilpo Salonen and Miia Salonen</li><li>Henna Karppinen-Kummunmäki</li><li>Mari Frisk</li><li>Soile Lautamies</li><li>Karissa Kettu</li><li>Tarja Kaltiomaa</li><li>Juha Rautio</li><li>Sinikka Paavilainen</li><li>Tuija Kuha and Marc Helfer</li><li>Tarita Ikonen</li><li>Iikka Tahvanainen</li></ul>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23bduy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:f2744d89-9538-42b6-8e3e-15a92005d574",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:59331/?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": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Henrik_testaus_252347888286"
                    },
                    "description": null,
                    "price": {
                        "fi": "13"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 665847,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-02T06:43:31.682773Z",
                    "last_modified_time": "2025-05-02T06:43:31.682791Z",
                    "name": "Cap",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/d69d7115-06d3-ef11-8eea-000d3adf4af4",
                    "cropping": "",
                    "photographer_name": "Pho",
                    "alt_text": "Alt",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/665847/?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: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-05-02T06:06:24.604365Z",
            "last_modified_time": "2025-05-02T06:43:33.331008Z",
            "date_published": "2025-05-02T06:01:18Z",
            "start_time": "2025-05-02T06:07:00Z",
            "end_time": "2025-05-09T08:07:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 16,
            "audience_max_age": 22,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-05-02T08:00:00+03:00",
            "enrolment_end_time": "2025-05-04T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Henrik testaus 2.5"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Henrik"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Testi"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Testi</p></div>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:f2744d89-9538-42b6-8e3e-15a92005d574/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64942",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 198645,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-06T14:13:21.744578Z",
                    "last_modified_time": "2025-02-06T14:13:21.744591Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761689.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/198645/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-02-06T14:13:21.729119Z",
            "last_modified_time": "2025-05-02T06:13:40.852384Z",
            "date_published": null,
            "start_time": "2025-05-13",
            "end_time": "2025-05-18",
            "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,
            "name": {
                "fi": "Lapset ja nuoret näyttämöllä – Lastenkulttuurin juhlaviikon esitykset – Lastenkulttuurin juhlaviikolla kuuluvat lasten ja nuorten äänet.",
                "sv": "Barn och ungdomar på scen - föreställningar under Barnkulturveckan – Barnkulturveckan är en hyllning till barns och ungdomars röster.",
                "en": "Children and young people on stage - Children's Culture Week performances – Children's Culture Week is a celebration of the voices of children and young people."
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Viikon aikana nähdään teatteri- ja tanssiesityksiä, joita Annantalon esittävien taiteiden kurssit ovat valmistaneet lukuvuoden aikana. Esitykset saavat ensi-iltansa juhlaviikolla.",
                "sv": "Under veckan visas teater- och dansföreställningar som producerats av Annegårdens scenkonstkurser under läsåret. Föreställningarna har premiär under festspelsveckan.",
                "en": "The week will feature theatre and dance performances produced by Annantalo's performing arts courses during the academic year. The performances will be premiered during the Festival Week."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/28BFC99C83EE6B7BFD816C79857D99B4/Lapset_ja_nuoret_nayttamolla_Lastenkulttuurin_juhlaviikon_esitykset_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/28BFC99C83EE6B7BFD816C79857D99B4/Barn_och_ungdomar_pa_scen_-_forestallningar_under_Barnkulturveckan",
                "en": "http://www.annantalo.fi/en/events/event/28BFC99C83EE6B7BFD816C79857D99B4/Children_and_young_people_on_stage_-_Children_s_Culture_Week_performances"
            },
            "description": {
                "fi": "<p>Viikon aikana nähdään teatteri- ja tanssiesityksiä, joita Annantalon esittävien taiteiden kurssit ovat valmistaneet lukuvuoden aikana. Esitykset saavat ensi-iltansa juhlaviikolla.</p><p><strong>Linnunrata-teatterikurssi (7-9-vuotiaat): Metsäkone</strong></p><p>Metsäkone -esitys on syntynyt lasten idean pohjalta. Aihe on helsinkiläislapsille tuttu, lähimetsiä kaadetaan rakentamisen tieltä ja uutisissa metsäkoneet ajelevat raakkujen päältä.</p><p>Esitykset ti 13.5. klo 17.30 ja la 17.5. klo 12</p><p>Ohjaaja: Sari Tupamäki</p><p><strong>Dancehearts-tanssikurssi (7-17-vuotiaat): Aikatasku</strong></p><p>Valo kulkee kykloopin silmän kautta ja antiikin Kreikan mytologinen aika vyöryy nykyajan yli kuin meren aalto rantahiekkaan. Onko jokin muuttunut, kun ajan aalto vetäytyy?</p><p>Tutkimme antiikin Kreikan mytologiaa ja nykyajan nuorten tunnelmia. Teoksessa on mukana nykyajan kulkijoita, antiikin jumalia, seireenejä ja muita tarunomaisia hahmoja.</p><p>Esitykset ti 13.5. klo 18.30 ja la 17.5. klo 13</p><p>Ohjaajat: Sanna Kuusisto ja Annika Sarvela</p><p><strong>Värisevät varpaat-tanssikurssi (7-17-vuotiaat): Kulkijat</strong></p><p>Koko vuoden kuljimme eri paikoissa, kuljimme ajassa. Nyt kuljemme näyttämöllä. Ja kohta kuljemme taas eteenpäin. Näyttämöteoksen rinnalla syntyi kuvateos ”Kaiut ja kulkijat”. Se on nähtävissä Annantalon Gallerian näyttelyssä ”Huudetaanko?”.</p><p>Esitykset ke 14.5. klo 17.30 ja su 18.5. klo 13</p><p>Ohjaajat: Sanna Kuusisto ja Miila Vainio</p><p><strong>Otava-teatterikurssi (13-15-vuotiaat): Ääntä kohti</strong></p><p>Miltä tuntuu, kun kadottaa kyvyn kuunnella itseään? Mitä tapahtuu, jos päätökset perustuvat toisten mielipiteisiin? Entä miten löytää oma äänensä uudelleen? Ääntä kohti on ryhmälähtöisesti työstetty esitys itsensä kadottamisesta, ystävyydestä ja uusista aluista.</p><p>Esitykset ke 14.5. klo 18.30 ja su 18.5. klo 14</p><p>Ohjaaja: Karoliina Helminen</p><p><strong> Andromeda-teatterikurssi (10-12-vuotiaat): Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta</strong></p><p>Mikä on lempiäänesi? Entä millainen ääni ärsyttää sinua? Millaisia ääneen liittyviä muistoja sinulla on? Esitys on syntynyt ääneen liittyvistä ajatuksista, muistoista ja keksityistä tilanteista.</p><p>Esitykset to 15.5. klo 17.30 ja su 18.5. klo 12</p><p>Ohjaaja: Karoliina Helminen</p><p><strong> Komeetta-teatterikurssi (16-18-vuotiaat): Meistä, kärpäsistä</strong></p><p>Komeetan tulkinnassa näytelmä Meistä kärpäsistä on kertomus nuoresta potilaasta, joka muistojensa ja uniensa kautta löytää luottamuksen elämään. Näytelmä saa pohtimaan, mistä saamme voimaa nousta silloin, kun muutokset elämäntilanteissa lyövät meidät maahan.</p><p>Esitykset to 15.5. klo 18.30 ja la 17.5. klo 14</p><p>Ohjaus ja sovitus: Sari Tupamäki <br>Näytelmän kirjoittaja: Arda Salaniemi<br>Näytelmän oikeuksia valvoo Nordic Drama Corner</p><p>**</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p><p>Koululaisryhmille on myös erikseen päivänäytöksiä 13.-16.5. Näytökset ja ilmoittautuminen kultus.hel.fi -palvelun kautta.</p><p>Lauantain 17.5. esitysten ensimmäisellä väliajalla klo 12:30 Annantalon galleriassa järjestetään Huudetaanko? -oppilastyönäyttelyn opastettu kierros. Tervetuloa mukaan!</p>",
                "sv": "<p>Under veckan visas teater- och dansföreställningar som producerats av Annegårdens scenkonstkurser under läsåret. Föreställningarna har premiär under festspelsveckan.</p><p><strong>Linnunrata teaterkurs (7-9 år): Metsäkone - Skogsmaskinen</strong></p><p>Föreställningen Skogsmaskinen bygger på en idé av barn. Ämnet är bekant för barn i Helsingfors, eftersom närliggande skogar huggs ner för att ge plats för byggnation och skogsmaskiner kör över kadavren i nyheterna.</p><p>Föreställningar tis 13.5 kl. 17.30 och lör 17.5 kl. 12 <br>Regi: Sari Tupamäki</p><p><strong>Dancehearts danskurs (7-17 år): Aikatasku -Tidsficka</strong></p><p>Ljuset passerar genom cyklopens öga och den antika grekiska mytologiska tiden rullar över den moderna tiden som en våg på strandens sand. Har något förändrats när tidens våg drar sig tillbaka?</p><p>Vi utforskar mytologin i det antika Grekland och stämningen bland dagens unga. I verket möter vi nutida resenärer, antika gudar, sirener och andra mytiska figurer.</p><p>Föreställningar tis 13.5. kl. 18.30 och lör 17.5. kl. 13.00 <br>Regi: Sanna Kuusisto och Annika Sarvela</p><p><strong>Värisevät varpaat danskurs (7-17 år): Kulkijat - Resenärer</strong></p><p>Nu går vi på scenen. Och snart kommer vi att röra oss framåt igen. Parallellt med scenarbetet skapades det illustrerade verket ”Kaiut ja kulkijat”. Det kan ses i Annegårdens galleris utställning ”Huudetaanko?”.</p><p>Föreställningar ons 14.5 kl. 17.30 och sön 18.5 kl. 13.00 <br>Regi: Sanna Kuusisto och Miila Vainio</p><p><strong>Otava teaterkurs (13-15 år): Ääntä kohti - Mot rösten</strong></p><p>Hur känns det att förlora förmågan att lyssna på sig själv? Vad händer när dina beslut baseras på andras åsikter? Och hur hittar man sin röst igen? Towards a voice är en gruppbaserad föreställning om att förlora sig själv, vänskap och nystart.</p><p>Föreställningar ons 14.5. kl. 18.30 och sön 18.5. kl. 14.00</p><p>Regi: Karoliina Helminen</p><p><strong>Andromeda teaterkurs (10-12 år): Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta </strong> <br>Vilken typ av ljud irriterar dig? Vad har du för ljudrelaterade minnen? Föreställningen föds ur tankar, minnen och fiktiva situationer som har med ljud att göra.</p><p>Föreställningar tors 15.5. kl. 17.30 och sön 18.5. kl. 12.00</p><p>Regi: Karoliina Helminen</p><p><strong>Komeetta teaterkurs (16-18-åringar): Meistä, kärpäsistä - Om oss, om flugor</strong></p><p>Enligt Komets tolkning är pjäsen Om oss, om flugor berättelsen om en ung patient som hittar självförtroende i livet genom sina minnen och drömmar. Pjäsen får oss att reflektera över var vi hittar styrkan att resa oss när förändringar i våra liv slår ner oss.</p><p>Föreställningar tors 15.5. kl. 18.30 och lör 17.5. kl. 14.00</p><p>Regi och bearbetning av Sari Tupamäki <br>Manus av Arda Salaniemi<br>Rättigheterna till pjäsen kontrolleras av Nordic Drama Corner</p><p>**<br>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310.</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p><p>Det finns också separata endagsföreställningar för skolgrupper den 13-16 maj. Mer information: kultus.hel.fi</p><p>Lördagen den 17 maj, under den första pausen kl. 12.30, ordnas en guidad visning av elevutställningen ”Huudetaanko?” i Annegårdens galleri. Välkommen att följa med oss!</p>",
                "en": "<p>The week will feature theatre and dance performances produced by Annantalo's performing arts courses during the academic year. The performances will be premiered during the Festival Week.</p><p><strong>Linnunrata theatre course (7-9 years old): Metsäkone - Forest machine</strong></p><p>The Forest Machine performance is based on an idea by children. The topic is familiar to children in Helsinki, with nearby forests being cut down to make way for construction and forestry machines driving over the carcasses in the news.</p><p>Performances Tue 13.5. at 17.30 and Sat 17.5. at 12 <br>Directed by Sari Tupamäki</p><p><strong>Dancehearts dance class (7-17 year olds): Aikatasku - Time pocket</strong></p><p>Light passes through the eye of the cyclops and ancient Greek mythological time rolls over modern times like a wave on the sand of the beach. Has something changed as the wave of time recedes?</p><p>We explore the mythology of ancient Greece and the mood of young people today. The work features modern-day travellers, ancient gods, sirens and other mythical characters.</p><p>Performances Tue 13.5. at 18.30 and Sat 17.5. at 13.00 <br>Directed by Sanna Kuusisto and Annika Sarvela</p><p><strong>Värisevät varpaat Dance Class (7-17 years old): Kulkijat: Travellers </strong> <br>Now we walk on stage. And soon we'll be moving forward again. Alongside the stage work, the illustrated work ‘Echoes and Travellers’ was created. It can be seen in the Annantalo Gallery's exhibition ‘Huudetaanko?’.</p><p>Performances Wed 14.5. at 17.30 and Sun 18.5. at 13 <br>Directed by Sanna Kuusisto and Miila Vainio</p><p><strong>Otava Theatre Course (13-15 years old): Ääntä kohti - Towards the voice</strong></p><p>How does it feel to lose the ability to listen to yourself? What happens when your decisions are based on the opinions of others? And how do you find your voice again? Towards a voice is a group-based presentation about losing yourself, friendship and new beginnings.</p><p>Performances on Wed 14.5. at 18.30 and Sun 18.5. at 14.00 <br>Directed by Karoliina Helminen</p><p><strong>Andromeda Theatre Course (10-12 year olds): Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta</strong><br> What kind of sound annoys you? What kind of sound-related memories do you have? The performance is born out of thoughts, memories and fictional situations related to sound.</p><p>Performances on Thu 15.5. at 17.30 and Sun 18.5. at 12.<br>Directed by Karoliina Helminen</p><p><strong>Comet Theatre Course (16-18 year olds): Meistä, kärpäsistä - About us, about flies</strong></p><p>In Comet's interpretation, the play About us, about flies is the story of a young patient who finds confidence in life through his memories and dreams. The play makes us reflect on where we find the strength to rise up when changes in our lives knock us down.</p><p>Performances Thu 15.5. at 18.30 and Sat 17.5. at 14 <br>Directed and adapted by Sari Tupamäki <br>Written by Arda Salaniemi<br>The rights to the play are controlled by Nordic Drama Corner</p><p>**</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310.</p><p>You can book seats for more than one performance and for more than one person at a time.</p><p>There are also separate performances for school groups on 13-16 May. Performances and registration via kultus.hel.fi.</p><p>On Saturday 17 May, during the first intermission at 12:30, a guided tour of the student work exhibition Huudetaanko? will take place in the Annantalo Gallery. Welcome to join us!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64942/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65637",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/petrus-schroderus/"
                    },
                    "description": null,
                    "price": {
                        "fi": "38,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 243534,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-19T14:15:05.903007Z",
                    "last_modified_time": "2025-02-19T14:15:05.903030Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765800.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/243534/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-19T14:15:05.863735Z",
            "last_modified_time": "2025-05-01T13:13:43.880695Z",
            "date_published": null,
            "start_time": "2025-05-10T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Maailma laulaa äideille - Petrus Schroderus ja RNO Ensemble"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Elorytmi Oy"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Petrus Schroderus ja Riku Niemen johtama 13-henkinen RNO Ensemble esittävät äitienpäivän kunniaksi lauluja meiltä ja muualta. Ohjelmisto koostuu rakastetuista sävelmistä, Suomesta ja maailmalta. Aivan erityisesti muistetaan ukrainalaisia äitejä."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3E80AE6CAC8BFC0AFF8438191F4BD163/Maailma_laulaa_aideille_-_Petrus_Schroderus_ja_RNO_Ensemble"
            },
            "description": {
                "fi": "<p>Petrus Schroderus ja Riku Niemen johtama 13-henkinen RNO Ensemble esittävät äitienpäivän kunniaksi lauluja meiltä ja muualta. Ohjelmisto koostuu rakastetuista sävelmistä, Suomesta ja maailmalta. Aivan erityisesti muistetaan ukrainalaisia äitejä.</p><p>Kesto n. 2 h, sisältää väliajan.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65637/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64993",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3773344",
                        "sv": "https://www.lippu.fi/eventseries/name-3773344",
                        "en": "https://www.lippu.fi/eventseries/name-3773344"
                    },
                    "description": null,
                    "price": {
                        "fi": "48,90-105,60 €",
                        "sv": "48,90-105,60 €",
                        "en": "48,90-105,60 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153025,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-14T15:14:52.572380Z",
                    "last_modified_time": "2024-11-14T15:14:52.572398Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763344.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153025/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-14T15:14:52.537018Z",
            "last_modified_time": "2025-05-01T13:13:42.442785Z",
            "date_published": null,
            "start_time": "2025-05-03T16: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,
            "name": {
                "fi": "Cem Adrıan concert – Loppuunmyyty! / Sold out!",
                "sv": "Cem Adrıan concert – Slutsålt!",
                "en": "Cem Adrıan concert – Sold out!"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "CES & CA GmbH",
                "sv": "CES & CA GmbH",
                "en": "CES & CA GmbH"
            },
            "location_extra_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2470BD2C4AE9BE34074D6B3EB9AFFDB9/Cem_Adr_an_concert",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/2470BD2C4AE9BE34074D6B3EB9AFFDB9/Cem_Adr_an_concert",
                "en": "http://www.savoyteatteri.fi/en/events/event/2470BD2C4AE9BE34074D6B3EB9AFFDB9/Cem_Adr_an_concert"
            },
            "description": {
                "fi": "<p>Cem Adrian (30.11.1980) on turkkilainen laulaja-lauluntekijä, kirjailija, tuottaja ja ohjaaja. Hän on tunnettu kyvystään laulaa bassosta sopraanoon, sillä hänen äänijänteensä ovat kolme kertaa keskimääräistä pidemmät.<br>Hän ei välitä musiikissaan rajoista, tyyleistä tai säännöistä, vaan määrittelee itsensä vapaaksi muusikoksi.</p><p>Yksi Adrianin musiikin erityisimmistä piirteistä on hänen kykynsä yhdistää saumattomasti musiikin eri tyylejä ja luoda jotain täysin uutta. Monet hänen kappaleistaan ovat sekoitus perinteistä turkkilaista musiikkia ja moderneja tyylejä, joita hän yhdistelee innovatiivisin tavoin luodakseen musiikkia, joka kuulostaa sekä tutulta että uudelta.</p><p>Vuosien aikana Adrian on julkaissut monta albumia, joista jokaisella on ainutlaatuinen tyyli. Hänen suosituimpiin albumeihinsa kuuluvat Essentials, Seni Düşünmek Güzel Şey ja Emir ovat tuoneet hänelle kehuja kriitikoilta ja luoneet uskollisen fanikunnan.</p><p>Cem Adrianin musiikki heijastelee hänen taiteellista visiotaan ja sitoutumistaan uusien musiikillisten alueiden tutkimiseen. Adrianin musiikki juhlii kulttuurista moninaisuutta ja vahvistaa musiikin kykyä ylittää rajoja ja yhdistää ihmisiä ympäri maailmaa.</p><p>Kesto noin 1,5 tuntia, ei väliaikaa</p>",
                "sv": "<p>Cem Adrian (född 30 november 1980) är en turkisk sångare, låtskrivare, författare, producent och regissör. Han är känd för sin förmåga att sjunga från bas till sopran, eftersom hans stämband är tre gånger så långa som en genomsnittlig människas.<br>I sin musik utesluter han gränser, stilar och regler och definierar sig själv som en ”fri musiker”.</p><p>En av de mest utmärkande egenskaperna i Adrians musik är hans förmåga att sömlöst blanda olika musikstilar och skapa något alldeles nytt och fräscht. Hans låtar är ofta en blandning av traditionell turkisk musik och moderna västerländska stilar, som han kombinerar på innovativa sätt för att skapa ett sound som är både bekant och nytt.</p><p>Adrian har släppt många album genom åren, vart och ett med sin egen unika smak och stil. Några av hans mest populära album är ”Essentials”, ”Seni Düşünmek Güzel Şey” och ”Emir”, som har gett honom kritikerros och hängivna fans.</p><p>Sammantaget återspeglar Cem Adrians musik hans konstnärliga vision och hans engagemang för att utforska nya musikaliska territorier. Hans musik är en hyllning till kulturell mångfald och en bekräftelse på musikens förmåga att överskrida gränser och förena människor över hela världen.</p><p>Längd ungefär 1 tim. och 30 min., utan paus</p>",
                "en": "<p><b>Cem Adrian</b> (born 30 November 1980.) is a Turkish singer-songwriter, author, producer and director. He is known for his ability to sing from bass to soprano, as his vocal cords are three times the length of an average person's.<br>He excludes borders, styles and rules in his music and defines himself as a ''free musician''.</p><p>One of the most distinctive features of Adrian's music is his ability to seamlessly blend different musical styles and create something entirely new and fresh. His songs are often a fusion of traditional Turkish music and contemporary Western styles, which he combines in innovative ways to create a sound that is both familiar and new.</p><p>Adrian has released many albums over the years, each with its own unique flavor and style. Some of his most popular albums include \"Essentials,\" \"Seni Düşünmek Güzel Şey,\" and \"Emir,\" which have earned him critical acclaim and a devoted fan base.</p><p>Overall, Cem Adrian's music reflects his artistic vision and his commitment to exploring new musical territories. His music is a celebration of cultural diversity and an affirmation of the power of music to transcend boundaries and connect people across the world.</p><p>Duration approx. 1 h 30 min, no intermission</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64993/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19667086",
            "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-3802086/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667086/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667086/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667086/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:17:07.867833Z",
                    "last_modified_time": "2025-02-17T11:17:07.867850Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/dc/10/hkt-kaunotarja-hirviot222-tickets_342444_2945406_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/235446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:14.164784Z",
            "last_modified_time": "2025-04-30T23:17:04.561512Z",
            "date_published": null,
            "start_time": "2025-04-30T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kaunotar Ja Hirviöt"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "short_description": {
                "fi": "Sinna Virtanen KAUNOTAR JA HIRVIÖT Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vink"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaunotar-ja-hirvioet-3802086/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Sinna Virtanen<br><strong>KAUNOTAR JA HIRVIÖT</strong></p><p>Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vinksahtaneeseen fantasiakylään.</p><p>Näytelmä purkaa ja kertoo uudestaan kertomusta Kaunottaresta ja Hirviöstä, jonka ensimmäinen julkaistu versio on Gabrielle-Suzanne Barbot de Villeneuven vuodelta 1740.</p><p>Teos lainaa, varastaa ja väärentää eri versioita saduista yhdistellen söpöä ja makaaberia, kinkyä ja pikkusievää, pahaa ja enkelimäistä. Sadun eri versioiden alle piiloutuu tosimaailmassa tapahtunut erästä italialaista kyläyhteisöä vuonna 2012 järkyttänyt nuoren naisen raaka murhatapaus.</p><p>Teos tarkastelee draamanjanoamme sekä saduissa ja uutisissa toistuvia myrkyllisiä asetelmia.</p><p>Kaunotar ja hirviöt on eeppinen tutkielma surusta ja sen myymisestä. Esitys kysyy, voiko sadusta paeta menettämättä henkeään tai ainakin itseään.</p><p>Kaunotar ja hirviöt on palkitun näytelmäkirjailijan Sinna Virtasen (s.1987) kevyesti päivitetty kandidaatin näytelmä Teatterikorkeakoulusta vuodelta 2012.</p><p>Teoksen ohjaa Linda Wallgren (s.1988) yksi nuoren polven kiinnostavimmista ohjaajista, jonka edelliset työt on palkittu Tiedonjulkistamisen valtionpalkinnolla (2022) sekä Eino Kalima- ohjaajapalkinnolla (2024). Näyttämöllä Teatterikorkeakoulun näyttelijäntaiteen 3. vuosikurssi.</p><p>Rooleissa: Sonja Arffman, Heidi Finnberg, Elina Kanerva, Mikael Karvia, Väinö Lehtinen, Miriam Mekhane, Yosef Nousiainen, Rebecca Nugent, Iina Nyländen, Pablo Ounaskari, Milla Palin, Janika Suopanki Kirjailija: Sinna Virtanen</p><p>Ohjaaja: Linda Wallgren Lavastus: Sanna Levo<br>Pukusuunnittelu: Kaisa Savolainen (Aalto ARTS)<br>Valosuunnittelu: Aku Lahti<br>Äänisuunnittelu: Juri Jänis (TeaK, taiteellinen opinnäyte, TeM)<br>Naamioinnin suunnittelu: Henri Karjalainen</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667086/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19569261",
            "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-3790487/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569261/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569261/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/agora-kaksi-merenneitoa-tyhjaessae-altaassa-helsingin-kaupunginteatteri-19569261/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235448,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:17:13.489586Z",
                    "last_modified_time": "2025-02-17T11:17:13.489604Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/agora_hkt_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/235448/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:14.044462Z",
            "last_modified_time": "2025-04-30T23:17:04.425416Z",
            "date_published": null,
            "start_time": "2025-04-30T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Agora - Kaksi Merenneitoa Tyhjässä Altaassa"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "short_description": {
                "fi": "Minna Lund & työryhmä AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun pats"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/agora-kaksi-merenneitoa-tyhjaessae-altaassa-3790487/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p> Minna Lund &amp; työryhmä<br><strong>AGORA - KAKSI MERENNEITOA TYHJÄSSÄ ALTAASSA</strong></p><p> <br> Agora – kaksi merenneitoa tyhjässä altaassa on kuriton esitys, jossa lahjoituksena saadun patsaan julkistustilaisuus eskaloituu yleisön mukaansa tempaavaksi kyltymättömäksi vesileikiksi.</p><p> <br> Helsingin Kaupunginteatterin eteen on ilmestynyt tuntemattoman taiteilijan arvoituksellinen taidelahjoitus. Lahjoituksen myötä teatteriin on perustettu kiireen vilkkaa patsastoimikunta, jonka jäsenet ovat päättäneet pitää veistoksen ja pystyttää sen väliaikaisesti studio Pasilan näyttämölle. Veistoksen mielleyhtymät radikaalista ystävyydestä ovat kuitenkin uineet toimikunnan sydämiin, ja nyt toimikunta haluaa omistaa veistoksen Helsingin Kaupunginteatterin uskolliselle yleisölle</p><p> <br> <br> Kutsu: Lämpimästi tervetuloa Agora – kaksi merenneitoa tyhjässä altaassa -patsaan julkistustilaisuuteen</p><p> Pyydämme kunnioittaen Teitä, Helsingin Kaupunginteatterin arvovaltainen katsoja, läsnä olemaan julkistustilaisuudessa studio Pasilassa keväällä 2025. Luvassa on puheita, musiikkia, ja muita juhlallisuuksia.</p><p> Astukaa Agoralle ja tulkaa kohottamaan kanssamme taiteen ylitsevuotava malja!</p><p> Kyltymättöminä odotamme Teitä,</p><p> Patsastoimikunta:<br>Kari Arffman (teatterinjohtaja),<br>Leenamari Unho (kiinnitetty näyttelijä),<br>Riikka Thitz (Nykyesityksen näyttämön kuraattori)</p><p>*Agora (m.kreik. ἀγορά)<br>subst. kauppa-aukio tai kokoontumispaikka vars. kaupungeissa tm. asutuskeskuksissa; yl. aukio.</p><p> </p><p> Esiintyjät: Emelie Zilliacus, Salla Loper, Leenamari Unho</p><p> Ohjaaja: Minna Lund<br>Lavastaja: Riku Suvitie<br>Pukusuunnittelija: Ella Snellman<br>Valosuunnittelija: Tuomas Honkanen<br>Äänisuunnittelija: Axel Ridberg<br>Naamioinnin suunnittelu: Noora Laukkanen<br>Dramaturgi: Martta Jylhä</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19569261/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350670",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748841/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350670/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350670/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350670/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "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:13.810480Z",
            "last_modified_time": "2025-04-30T23:17:04.267632Z",
            "date_published": null,
            "start_time": "2025-04-30T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Eikä Yksikään Pelastunut"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "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"
            },
            "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>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350670/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19036798",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036798/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036798/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036798/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "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:13.694706Z",
            "last_modified_time": "2025-04-30T23:17:04.137673Z",
            "date_published": null,
            "start_time": "2025-04-30T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "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"
            },
            "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, Wilhelm Blomberg, 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>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036798/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}