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&include=location%2Ckeywords&page=212
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 27052,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=213",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=211"
    },
    "data": [
        {
            "id": "kulke:65336",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8740",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:54.264692Z",
                "last_modified_time": "2025-03-27T09:09:27.443498Z",
                "custom_data": null,
                "email": "malmitalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 984,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.malmitalo.fi/",
                    "sv": "https://www.malmitalo.fi/sv/framsidan",
                    "en": "https://www.malmitalo.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "description": {
                    "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.",
                    "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.",
                    "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1681,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 990,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Malmitalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:755",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2024-05-30T11:10:09.697444Z",
                    "last_modified_time": "2024-05-30T11:10:09.697496Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 684,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunkiuudistusalueet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1129,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/tuomo-rannankari-malmitalo-19384925/",
                        "sv": "https://www.lippu.fi/event/tuomo-rannankari-malmitalo-19384925/",
                        "en": "https://www.lippu.fi/event/tuomo-rannankari-malmitalo-19384925/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153614,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:18.336711Z",
                    "last_modified_time": "2024-12-31T13:14:18.336724Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760547.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153614/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:18.310465Z",
            "last_modified_time": "2025-04-11T08:13:30.553949Z",
            "date_published": null,
            "start_time": "2025-05-03T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tuomo Rannankari esittää Malmitalossa tunnetuimpia lastenlaulujaan yhdessä muusikko Anssi Salmisen kanssa.",
                "sv": "Tuomo Rannankari framför sina mest kända barnsånger på Malms kulturhus tillsammans med musikern Anssi Salminen.",
                "en": "Tuomo Rannankari will perform his best-known children’s songs in Malmitalo together with musician Anssi Salminen."
            },
            "name": {
                "fi": "LOPPUUNMYYTY Tuomo Rannankari",
                "sv": "SLUTSÅLD Tuomo Rannankari",
                "en": "SOLD OUT Tuomo Rannankari"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A5C0E5398AD75310DE1CE200D92665E6/LOPPUUNMYYTY_Tuomo_Rannankari",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A5C0E5398AD75310DE1CE200D92665E6/SLUTSALD_Tuomo_Rannankari",
                "en": "http://www.malmitalo.fi/en/events/event/A5C0E5398AD75310DE1CE200D92665E6/SOLD_OUT_Tuomo_Rannankari"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tuomo Rannankari esittää Malmitalossa tunnetuimpia lastenlaulujaan yhdessä muusikko Anssi Salmisen kanssa.</p><p>Tuomo Rannankari on TV:stä tuttu muusikko, lauluntekijä ja juontaja. Tuomon lastenlaulut ovat monille suomalaislapsille tuttuja esi- ja alkuopetuksen oppimateriaaleista, TV:n lastenohjelmista sekä muista lasten konserteista. Hänet palkittiin työstään Vuoden lastenmusiikintekijä -palkinnolla vuonna 2019. Tuomo on levyttänyt kolme lastenlevyä sekä Sininen pallo -levyn yhdessä Oulu Sinfonian kanssa. Lisäksi hän on vieraillut myös Muumi-levyn solistina.</p><p>Malmitalon konsertissa Tuomo esiintyy duona yhdessä muusikko Anssi Salmisen kanssa.  Konsertissa kuullaan Tuomon tunnetuimpia kappaleita, kuten ”Hiekkakakkuorkesteri”, ”Pomppimaan”, ”Seikkailulaulu” ja ”Sininen pallo”.</p><p>Kesto: noin 45 min</p>",
                "sv": "<p>Tuomo Rannankari framför sina mest kända barnsånger på Malms kulturhus tillsammans med musikern Anssi Salminen.</p><p>Tuomo Rannankari är en musiker, låtskrivare och programledare som är välkänd från TV. Tuomos barnsånger är kända för många finländska barn från för- och elementarundervisningens läromaterial, barnprogram på TV samt konserter. År 2019 belönades han för sitt arbete med priset Vuoden lastenmusiikintekijä. Tuomo har spelat in tre barnalbum samt albumet Sininen pallo tillsammans med Oulu Sinfonia. Han har också gästat som solist på Mumin-albumet.</p><p>På konserten i Malms kulturhus framträder Tuomo som duo tillsammans med musikern Anssi Salminen.  På konserten får vi höra Tuomos mest kända låtar, såsom “Hiekkakakkuorkesteri”, “Pomppimaan”, “Seikkailulaulu” och “Sininen pallo”.</p><p>Längd: ca 45 min.</p>",
                "en": "<p>Tuomo Rannankari will perform his best-known children’s songs in Malmitalo together with musician Anssi Salminen.</p><p>Tuomo Rannankari is a well-known musician, songwriter and TV host. Tuomo’s children’s songs are familiar to many Finnish children from pre-school and early childhood education materials, children’s TV programmes and concerts. He received the 2019 Children’s Music Writer of the Year award for his work. Tuomo has recorded three children’s albums and the Sininen pallo album with the Oulu Symphony Orchestra. He has also appeared as a guest vocalist on the Moomin album.</p><p>At the Malmitalo concert, Tuomo will perform in a duo with musician Anssi Salminen.  The concert will feature some of Tuomo’s best-known songs, such as “Hiekkakakkuorkesteri”, “Pomppimaan”, “Seikkailulaulu” and “Sininen pallo”.</p><p>Duration: approx. 45 min</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65336/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65905",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2025-03-27T09:09:26.759128Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 513,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.960548,
                        60.182697
                    ]
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:205",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.162709Z",
                    "last_modified_time": "2024-02-06T13:19:14.678169Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 509,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuva ja media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 858,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 534,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:758",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-01-16T11:10:18.586374Z",
                    "last_modified_time": "2025-01-16T11:10:18.586416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 135,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "valtuusto150"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1403,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16919",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "road movies",
                        "tie-elokuvat"
                    ],
                    "created_time": "2023-08-16T05:05:45.968615Z",
                    "last_modified_time": "2023-08-16T05:05:45.968632Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 508,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "road moviet",
                        "sv": "roadmovies",
                        "en": "road films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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/search/?affiliate=ADV&searchterm=kino+caisa",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 510960,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-11T08:13:30.029909Z",
                    "last_modified_time": "2025-04-11T08:13:30.029921Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760446.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/510960/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-11T08:13:30.017352Z",
            "last_modified_time": "2025-04-11T08:13:30.065550Z",
            "date_published": null,
            "start_time": "2025-04-29T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan."
            },
            "name": {
                "fi": "KINO CAISA: Crossing (7)",
                "sv": "KINO CAISA: Crossing (7)",
                "en": "KINO CAISA: Crossing (7)"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1F462B04CB68267D7F41834EE1EC49D3/KINO_CAISA_Crossing_7_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1F462B04CB68267D7F41834EE1EC49D3/KINO_CAISA_Crossing_7_",
                "en": "http://www.caisa.fi/en/events/event/1F462B04CB68267D7F41834EE1EC49D3/KINO_CAISA_Crossing_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan.</p><p>Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa. Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.<br>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.<br> <br>★★★★★ \"Puhdasta elokuvan taikaa... Crossing on yksinkertaisesti moninaisuutta ymmärtävä, läpeensä humanistinen ja italialaisesta neorealismista inspiraatiota hakenut matkakertomus. Se ei osoittele. Ja kuten aina, tärkein matka tehdään sisäisesti.\" -HS<br> <br>Genre: Draama <br>Ohjaus: Levan Akin<br>Kesto: 106 minuuttia <br>Kieli: georgia, turkki, englanti<br>Tekstitys: suomi<br>Ikäraja: 7</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65905/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65904",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2025-03-27T09:09:26.759128Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 513,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.960548,
                        60.182697
                    ]
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:205",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.162709Z",
                    "last_modified_time": "2024-02-06T13:19:14.678169Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 509,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuva ja media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 858,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 534,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:758",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-01-16T11:10:18.586374Z",
                    "last_modified_time": "2025-01-16T11:10:18.586416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 135,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "valtuusto150"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1403,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16919",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "road movies",
                        "tie-elokuvat"
                    ],
                    "created_time": "2023-08-16T05:05:45.968615Z",
                    "last_modified_time": "2023-08-16T05:05:45.968632Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 508,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "road moviet",
                        "sv": "roadmovies",
                        "en": "road films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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/search/?affiliate=ADV&searchterm=kino+caisa",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+caisa"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 510959,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-11T08:13:29.952876Z",
                    "last_modified_time": "2025-04-11T08:13:29.952887Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760445.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/510959/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-11T08:13:29.940326Z",
            "last_modified_time": "2025-04-11T08:13:29.989748Z",
            "date_published": null,
            "start_time": "2025-04-29T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan."
            },
            "name": {
                "fi": "KINO CAISA: Crossing (7)",
                "sv": "KINO CAISA: Crossing (7)",
                "en": "KINO CAISA: Crossing (7)"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1337485952215464A0206E816FAC6A21/KINO_CAISA_Crossing_7_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1337485952215464A0206E816FAC6A21/KINO_CAISA_Crossing_7_",
                "en": "http://www.caisa.fi/en/events/event/1337485952215464A0206E816FAC6A21/KINO_CAISA_Crossing_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan.</p><p>Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa. Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.<br>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.<br> <br>★★★★★ \"Puhdasta elokuvan taikaa... Crossing on yksinkertaisesti moninaisuutta ymmärtävä, läpeensä humanistinen ja italialaisesta neorealismista inspiraatiota hakenut matkakertomus. Se ei osoittele. Ja kuten aina, tärkein matka tehdään sisäisesti.\" -HS<br> <br>Genre: Draama <br>Ohjaus: Levan Akin<br>Kesto: 106 minuuttia <br>Kieli: georgia, turkki, englanti<br>Tekstitys: suomi<br>Ikäraja: 7</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65904/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65903",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2025-03-27T09:09:26.759128Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 513,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.960548,
                        60.182697
                    ]
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:205",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.162709Z",
                    "last_modified_time": "2024-02-06T13:19:14.678169Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 509,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuva ja media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 858,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 534,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:758",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-01-16T11:10:18.586374Z",
                    "last_modified_time": "2025-01-16T11:10:18.586416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 135,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "valtuusto150"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1403,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16919",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "road movies",
                        "tie-elokuvat"
                    ],
                    "created_time": "2023-08-16T05:05:45.968615Z",
                    "last_modified_time": "2023-08-16T05:05:45.968632Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 508,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "road moviet",
                        "sv": "roadmovies",
                        "en": "road films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-caisa/",
                        "sv": "https://www.lippu.fi/artist/kino-caisa/",
                        "en": "https://www.lippu.fi/artist/kino-caisa/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 505536,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-10T13:14:28.471278Z",
                    "last_modified_time": "2025-04-10T13:14:28.471297Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760443.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/505536/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-10T13:14:28.450898Z",
            "last_modified_time": "2025-04-11T08:13:28.615719Z",
            "date_published": null,
            "start_time": "2025-04-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian."
            },
            "name": {
                "fi": "KINO CAISA: Kovia totuuksia (7)",
                "sv": "KINO CAISA: Kovia totuuksia (7)",
                "en": "KINO CAISA: Kovia totuuksia (7)"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/89477A68BE412E46E9573DFD4BF337FE/KINO_CAISA_Kovia_totuuksia_7_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/89477A68BE412E46E9573DFD4BF337FE/KINO_CAISA_Kovia_totuuksia_7_",
                "en": "http://www.caisa.fi/en/events/event/89477A68BE412E46E9573DFD4BF337FE/KINO_CAISA_Kovia_totuuksia_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian.</p><p>Lontoon laidalle sijoittuva Kovia totuuksia kertoo kahdesta kovin erilaisesta siskoksesta. Pääosassa nähdään Marianne Jean-Baptiste (tuttu Salaisuuksia ja valheita –elokuvasta). Särmikäs Pansy kokee koko maailman olevan häntä vastaan. Päätä särkee, kaikenlaiset paikat tuntuvat uhkaavilta ja mikä tahansa aiheuttaa ainakin allergisia reaktioita. Pansyn rakastava puoliso Curtley ja heidän poikansa Moses elävät Pansyn alituisten moitteiden ristitulessa.</p><p>Pansyn nauravainen vastakohta, pikkusisko Chantelle (Michelle Austin) pitää suosittua kampaamoa ja iloitsee perhe-elämästä aikuisten tyttäriensä kanssa. Äitienpäivä lähenee, perhe haluaa järjestää yhteiset juhlat – mutta siskosten erilaisuus aiheuttaa melkoista hankausta.</p><p>Genre: Draama <br>Ohjaus: Mike Leigh<br>Kesto: 96 minuuttia <br>Kieli: englanti <br>Tekstitys: suomi<br>Ikäraja: 7</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65903/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65902",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2025-03-27T09:09:26.759128Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 513,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.960548,
                        60.182697
                    ]
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:205",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.162709Z",
                    "last_modified_time": "2024-02-06T13:19:14.678169Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 509,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuva ja media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 858,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 534,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:758",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-01-16T11:10:18.586374Z",
                    "last_modified_time": "2025-01-16T11:10:18.586416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 135,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "valtuusto150"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1403,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16919",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "road movies",
                        "tie-elokuvat"
                    ],
                    "created_time": "2023-08-16T05:05:45.968615Z",
                    "last_modified_time": "2023-08-16T05:05:45.968632Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 508,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "road moviet",
                        "sv": "roadmovies",
                        "en": "road films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-caisa/",
                        "sv": "https://www.lippu.fi/artist/kino-caisa/",
                        "en": "https://www.lippu.fi/artist/kino-caisa/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 510958,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-11T08:13:28.473965Z",
                    "last_modified_time": "2025-04-11T08:13:28.473980Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760442.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/510958/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-11T08:13:28.453374Z",
            "last_modified_time": "2025-04-11T08:13:28.526767Z",
            "date_published": null,
            "start_time": "2025-04-22T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan."
            },
            "name": {
                "fi": "KINO CAISA: Crossing (7)",
                "sv": "KINO CAISA: Crossing (7)",
                "en": "KINO CAISA: Crossing (7)"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/674B157667A161A19AE06DA85B75864B/KINO_CAISA_Crossing_7_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/674B157667A161A19AE06DA85B75864B/KINO_CAISA_Crossing_7_",
                "en": "http://www.caisa.fi/en/events/event/674B157667A161A19AE06DA85B75864B/KINO_CAISA_Crossing_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan.</p><p>Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa. Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.<br>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.<br> <br>★★★★★ \"Puhdasta elokuvan taikaa... Crossing on yksinkertaisesti moninaisuutta ymmärtävä, läpeensä humanistinen ja italialaisesta neorealismista inspiraatiota hakenut matkakertomus. Se ei osoittele. Ja kuten aina, tärkein matka tehdään sisäisesti.\" -HS<br> <br>Genre: Draama <br>Ohjaus: Levan Akin<br>Kesto: 106 minuuttia <br>Kieli: georgia, turkki, englanti<br>Tekstitys: suomi<br>Ikäraja: 7</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65902/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65901",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2025-03-27T09:09:26.759128Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 513,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.960548,
                        60.182697
                    ]
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:205",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.162709Z",
                    "last_modified_time": "2024-02-06T13:19:14.678169Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 509,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuva ja media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 858,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 534,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:758",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-01-16T11:10:18.586374Z",
                    "last_modified_time": "2025-01-16T11:10:18.586416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 135,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "valtuusto150"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1403,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16919",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "road movies",
                        "tie-elokuvat"
                    ],
                    "created_time": "2023-08-16T05:05:45.968615Z",
                    "last_modified_time": "2023-08-16T05:05:45.968632Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 508,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "road moviet",
                        "sv": "roadmovies",
                        "en": "road films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-caisa/",
                        "sv": "https://www.lippu.fi/artist/kino-caisa/",
                        "en": "https://www.lippu.fi/artist/kino-caisa/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 505535,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-10T13:14:27.502978Z",
                    "last_modified_time": "2025-04-10T13:14:27.502996Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760440.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/505535/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-10T13:14:27.484505Z",
            "last_modified_time": "2025-04-11T08:13:27.767766Z",
            "date_published": null,
            "start_time": "2025-04-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian."
            },
            "name": {
                "fi": "KINO CAISA: Kovia totuuksia (7)",
                "sv": "KINO CAISA: Kovia totuuksia (7)",
                "en": "KINO CAISA: Kovia totuuksia (7)"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/9999FFE25836D278CF38A20E9490BEBB/KINO_CAISA_Kovia_totuuksia_7_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/9999FFE25836D278CF38A20E9490BEBB/KINO_CAISA_Kovia_totuuksia_7_",
                "en": "http://www.caisa.fi/en/events/event/9999FFE25836D278CF38A20E9490BEBB/KINO_CAISA_Kovia_totuuksia_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian.</p><p>Lontoon laidalle sijoittuva Kovia totuuksia kertoo kahdesta kovin erilaisesta siskoksesta. Pääosassa nähdään Marianne Jean-Baptiste (tuttu Salaisuuksia ja valheita –elokuvasta). Särmikäs Pansy kokee koko maailman olevan häntä vastaan. Päätä särkee, kaikenlaiset paikat tuntuvat uhkaavilta ja mikä tahansa aiheuttaa ainakin allergisia reaktioita. Pansyn rakastava puoliso Curtley ja heidän poikansa Moses elävät Pansyn alituisten moitteiden ristitulessa.</p><p>Pansyn nauravainen vastakohta, pikkusisko Chantelle (Michelle Austin) pitää suosittua kampaamoa ja iloitsee perhe-elämästä aikuisten tyttäriensä kanssa. Äitienpäivä lähenee, perhe haluaa järjestää yhteiset juhlat – mutta siskosten erilaisuus aiheuttaa melkoista hankausta.</p><p>Genre: Draama <br>Ohjaus: Mike Leigh<br>Kesto: 96 minuuttia <br>Kieli: englanti <br>Tekstitys: suomi<br>Ikäraja: 7</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65901/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65900",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2025-03-27T09:09:26.759128Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 513,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.960548,
                        60.182697
                    ]
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:205",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.162709Z",
                    "last_modified_time": "2024-02-06T13:19:14.678169Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 509,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuva ja media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 858,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 534,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:758",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-01-16T11:10:18.586374Z",
                    "last_modified_time": "2025-01-16T11:10:18.586416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 135,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "valtuusto150"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1403,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16919",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "road movies",
                        "tie-elokuvat"
                    ],
                    "created_time": "2023-08-16T05:05:45.968615Z",
                    "last_modified_time": "2023-08-16T05:05:45.968632Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 508,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "road moviet",
                        "sv": "roadmovies",
                        "en": "road films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-caisa/",
                        "sv": "https://www.lippu.fi/artist/kino-caisa/",
                        "en": "https://www.lippu.fi/artist/kino-caisa/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 505534,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-10T13:14:27.293048Z",
                    "last_modified_time": "2025-04-10T13:14:27.293075Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760439.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/505534/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-10T13:14:27.245334Z",
            "last_modified_time": "2025-04-11T08:13:27.640520Z",
            "date_published": null,
            "start_time": "2025-04-15T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian."
            },
            "name": {
                "fi": "KINO CAISA: Kovia totuuksia (7)",
                "sv": "KINO CAISA: Kovia totuuksia (7)",
                "en": "KINO CAISA: Kovia totuuksia (7)"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/6B4879477537F2FEF7506E0827F8E500/KINO_CAISA_Kovia_totuuksia_7_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/6B4879477537F2FEF7506E0827F8E500/KINO_CAISA_Kovia_totuuksia_7_",
                "en": "http://www.caisa.fi/en/events/event/6B4879477537F2FEF7506E0827F8E500/KINO_CAISA_Kovia_totuuksia_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian.</p><p>Lontoon laidalle sijoittuva Kovia totuuksia kertoo kahdesta kovin erilaisesta siskoksesta. Pääosassa nähdään Marianne Jean-Baptiste (tuttu Salaisuuksia ja valheita –elokuvasta). Särmikäs Pansy kokee koko maailman olevan häntä vastaan. Päätä särkee, kaikenlaiset paikat tuntuvat uhkaavilta ja mikä tahansa aiheuttaa ainakin allergisia reaktioita. Pansyn rakastava puoliso Curtley ja heidän poikansa Moses elävät Pansyn alituisten moitteiden ristitulessa.</p><p>Pansyn nauravainen vastakohta, pikkusisko Chantelle (Michelle Austin) pitää suosittua kampaamoa ja iloitsee perhe-elämästä aikuisten tyttäriensä kanssa. Äitienpäivä lähenee, perhe haluaa järjestää yhteiset juhlat – mutta siskosten erilaisuus aiheuttaa melkoista hankausta.</p><p>Genre: Draama <br>Ohjaus: Mike Leigh<br>Kesto: 96 minuuttia <br>Kieli: englanti <br>Tekstitys: suomi<br>Ikäraja: 7</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65900/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65544",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8740",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:54.264692Z",
                "last_modified_time": "2025-03-27T09:09:27.443498Z",
                "custom_data": null,
                "email": "malmitalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 984,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.malmitalo.fi/",
                    "sv": "https://www.malmitalo.fi/sv/framsidan",
                    "en": "https://www.malmitalo.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "description": {
                    "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.",
                    "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.",
                    "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1681,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:348",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.541371Z",
                    "last_modified_time": "2024-02-06T13:19:15.204233Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 929,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 990,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Malmitalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:755",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2024-05-30T11:10:09.697444Z",
                    "last_modified_time": "2024-05-30T11:10:09.697496Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 684,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunkiuudistusalueet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1129,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19810601/",
                        "sv": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19810601/",
                        "en": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19810601/"
                    },
                    "price": {
                        "fi": "48,90 €",
                        "sv": "48,90 €",
                        "en": "48,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 201801,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-07T14:15:21.366962Z",
                    "last_modified_time": "2025-02-07T14:15:21.366980Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765121.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201801/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-07T14:15:21.314870Z",
            "last_modified_time": "2025-04-11T08:13:27.464666Z",
            "date_published": null,
            "start_time": "2025-04-14T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suuren kysynnän vuoksi The Animalsin lisäkonsertti nyt myynnissä!",
                "sv": "Legendariska The Animals återkommer till Malms kulturhus!",
                "en": "The legendary The Animals are coming back to Malmitalo!"
            },
            "name": {
                "fi": "LOPPUUNMYYTY The Animals (UK) – Jäähyväiskiertue",
                "sv": "SLUTSÅLD The Animals (UK) – Avskedsturné",
                "en": "SOLD OUT The Animals (UK) – Farewell tour"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E30C1D189C161D42764F4F8F4CE1722/LOPPUUNMYYTY_The_Animals_UK_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E30C1D189C161D42764F4F8F4CE1722/SLUTSALD_The_Animals_UK_",
                "en": "http://www.malmitalo.fi/en/events/event/8E30C1D189C161D42764F4F8F4CE1722/SOLD_OUT_The_Animals_UK_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Suuren kysynnän vuoksi The Animalsin lisäkonsertti nyt myynnissä!</p><p>\"House of the Rising Sun\", \"We Gotta Get Out of This Place\", \"Dont Let Me Be Understood\", \"It´s My Life\", \"I Put A Spell On You\", \"Boom Boom\" och \"Bring It On Home To Me”… Tällä hittilistalla The Animalsista (UK) on kiistatta yksi maailman vaikutusvaltaisimmista yhtyeistä. Sen nimekkäiden fanien joukkoon lukeutuu muun muassa Bruce Springsteen.</p><p>Vuonna 1964 energisen rock and rollin aalto pyyhkäisi maailman nuorison yli ja sen harjalla ratsastivat The Beatles, The Rolling Stones - ja tietysti John Steelin ja Eric Burdonin perustama The Animals. Nimensä yhtye sai villistä lavaesiintymisestään.</p><p>Vaikka The Animalsin meno lavalla on sittemmin rauhoittunut, pian kuusikymppisiään juhlivan bändin musiikki on vähintäänkin voimissaan ja legenda vain kasvaa. Hiljattain Classic Rock magazine nosti yhtyeen debyyttialbumin ”50 Albums That Built Blues Rock” -listalleen.</p><p>Alkuperäisestä kokoonpanosta mukana on toinen perustajajäsen John Steel. Lisäksi yhtyeessä soittavat Danny Handley, Barney Williams ja Norman Helm.</p><p>Kesto: 1 h 15 min<br>Ikäsuositus: 7</p>",
                "sv": "<p>Legendariska The Animals återkommer till Malms kulturhus!</p><p>“House of the Rising Sun”, “We Gotta Get Out of This Place”, “Dont Let Me Be Understood”, “It´s My Life”, “I Put A Spell On You”, “Boom Boom” och “Bring It On Home To Me”… Med denna hitlista är The Animals (UK) otvivelaktigt ett av världens med inflytelserika band. Bland annat Bruce Springsteen räknas bland dess berömda fans.</p><p>År 1964 svepte en våg av energisk rock and roll över världens ungdom och på dess krön red The Beatles, The Rolling Stones – och naturligtvis The Animals, som grundades av John Steel och Eric Burdon. Bandet fick sitt namn av det vilda framträdandet på scenen.</p><p>Även om The Animals fart på scenen har lugnat ner sig sedan dess, är det snart sextioåriga bandets musik i minst lika god form och legenden bara växer. Classic Rock Magazine tog nyligen upp bandets debutalbum på sin lista “50 Albums That Built Blues Rock”.</p><p>Av den ursprungliga ensemblen kvarstår en av de grundande medlemmarna, John Steel. Dessutom spelar Danny Handley, Barney Williams och Norman Helm i bandet.</p><p>Längd: 1 h 15 min.</p>",
                "en": "<p>The legendary The Animals are coming back to Malmitalo!</p><p>“House of the Rising Sun”, “We Gotta Get Out of This Place”, “Don’t Let Me Be Misunderstood”, “It’s My Life”, “I Put A Spell On You”, “Boom Boom” and “Bring It On Home To Me”... With this hit list, The Animals (UK) are arguably one of the most influential bands in the world. Bruce Springsteen is one of their most prominent fans.</p><p>In 1964, a wave of energetic rock and roll swept the world’s youth, led by The Beatles, The Rolling Stones – and of course The Animals, founded by John Steel and Eric Burdon. The band’s name comes from their wild stage presence.</p><p>Although The Animals have since slowed down on stage, the music of a band about to celebrate their sixtieth anniversary is at least as powerful as ever, and their legend is only growing. Recently, Classic Rock magazine included the band’s debut album in its “50 Albums That Built Blues Rock” list.</p><p>John Steel is one of the two founding members of the original band, who is joined in the current line-up by musicians Danny Handley, Barney Williams and Norman Helm.</p><p>Duration: 1 h 15 min</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65544/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19667079",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:9302",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Linjat",
                            "sv": "Linjerna"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:13:24.017069Z",
                "last_modified_time": "2024-02-06T13:10:05.015052Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 539,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.942722,
                        60.181675
                    ]
                },
                "name": {
                    "fi": "Helsingin Kaupunginteatteri",
                    "sv": "Helsingfors Stadsteater",
                    "en": "Helsinki City Theatre"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://hkt.fi/",
                    "sv": "https://hkt.fi/",
                    "en": "https://hkt.fi/"
                },
                "telephone": {
                    "fi": "+358 9 394 022"
                },
                "street_address": {
                    "fi": "Eläintarhantie 5",
                    "sv": "Djurgårdsvägen 5",
                    "en": "Eläintarhantie 5"
                },
                "description": null,
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1255,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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-19667079/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667079/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kaunotar-ja-hirvioet-helsingin-kaupunginteatteri-19667079/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "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:07.841372Z",
            "last_modified_time": "2025-04-10T23:16:50.943348Z",
            "date_published": null,
            "start_time": "2025-04-10T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sinna Virtanen KAUNOTAR JA HIRVIÖT Kaunotar ja hirviöt on true crimesta ja mysteerinäytelmästä ammentava teos, joka sijoittuu piirrossatuelokuvista tuttuun vink"
            },
            "name": {
                "fi": "Kaunotar Ja Hirviöt Ensi-Ilta"
            },
            "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"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "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>"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667079/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350711",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:9340",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:pasila",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Pasila",
                            "sv": "Böle"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itä-pasila",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itä-Pasila",
                            "sv": "Östra Böle"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:pasila",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Pasila",
                            "sv": "Böle"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:13:25.079554Z",
                "last_modified_time": "2024-02-06T13:10:05.246698Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00520",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 188,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.940313,
                        60.199146
                    ]
                },
                "name": {
                    "fi": "Studio Pasila",
                    "sv": "Teaterstudio Pasila",
                    "en": "Theatre Studio Pasila"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://hkt.fi/nayttamot/studio-pasila/",
                    "sv": "https://hkt.fi/nayttamot/studio-pasila/",
                    "en": "https://hkt.fi/nayttamot/studio-pasila/"
                },
                "telephone": {
                    "fi": "+358 9 394 01"
                },
                "street_address": {
                    "fi": "Ratamestarinkatu 5",
                    "sv": "Banmästargatan 5"
                },
                "description": null,
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748848/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350711/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350711/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-uusi-eden-helsingin-kaupunginteatteri-19350711/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:43.685563Z",
                    "last_modified_time": "2025-02-17T11:16:43.685581Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/uusi-eden_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:07.714737Z",
            "last_modified_time": "2025-04-10T23:16:50.890021Z",
            "date_published": null,
            "start_time": "2025-04-10T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Henri Lyysaari Uusi Eden Uusi Eden on karnevalistinen musikaalikomedia maailmanlopun jälkeisestä Pasilasta.",
                "en": "Juho Mantere"
            },
            "name": {
                "fi": "Uusi Eden"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/uusi-eden-3748848/?affiliate=ADV&language=en"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "Henri Lyysaari<br><strong>Uusi Eden</strong></p><p>Uusi Eden on karnevalistinen musikaalikomedia maailmanlopun jälkeisestä Pasilasta. Hillittömän hauskassa show’ssa Juho Mantereen groteski ote kohtaa Disney-musikaalin hengen.</p><p>Globaali ydinsota on pyyhkinyt planeetan yli, mutta sattuman oikusta eräs teatteri Pasilassa henkilökuntineen on säästynyt tuholta. Kun teatterilaisten vanhat ammatit osoittautuvat hyödyttömiksi post-apokalyptisessä todellisuudessa, he aloittavat neuvokkaan talkkarin johdolla uuden elämän rakennusprojektin.</p><p>Vanhan teatterin raunioille syntyy yhteisö, jota he kutsuvat Uudeksi Edeniksi. Yhdessä he vannovat, etteivät koskaan toista menneisyyden virheitä — mutta pian käy ilmi, ettei paratiisissakaan kaikki ole täydellistä.</p><p>Entinen näyttelijäopiskelija Sonja haaveilee edelleen roolista, jota ei koskaan saanut, ja ex-pizzakuski Petteri unelmoi saavuttamattomasta rakkaudesta. Samaan aikaan Edenin johtajaksi nousseella talkkarilla on salaisuus, joka uhkaa murentaa koko yhteisön.</p><p>Teatterissa ja rakkaudessa kaikki keinot ovat sallittuja, mutta missä kulkee raja, kun kyseessä on oma selviytyminen ja usko parempaan tulevaisuuteen?</p><p>Uusi Eden on Helsingin Kaupunginteatterin ja Q-teatterin yhteistuotanto, joka yhdistää mustan huumorin, ajankohtaiset teemat ja sykähdyttävän musiikin tavalla, jota et ole ennen kokenut. Se on hengästyttävän hauska ja sydäntäsärkevän kaunis tarina toivosta ja rakkaudesta — sekä siitä, miten pitkälle olemme valmiita menemään kamppailussa paremman maailman puolesta.</p><p>Musikaalin on kirjoittanut ja ohjannut Juho Mantere, jonka edellinen teos ”Uuteen nousuun – Laman lasten elämä ja teot” kohosi teatteritapaukseksi Q-teatterissa. Musiikin on säveltänyt Henri Lyysaari, yksi nuoren polven lupaavimmista säveltäjistä.</p><p>Rooleissa: Miiko Toiviainen, Anna-Sofia Tuominen, Tiina Peltonen, Niki Rautén, Ushma Olava, Leenamari Unho, Unto Nuora, Mikko Vihma</p><p>Kapellimestari: Henri Lyysaari<br>Muusikot: Ossi Maristo, Juhana Kiiski, Maria Lamminen</p><p>Käsikirjoitus, ohjaus sekä laulujen sanat: Juho Mantere<br>Sävellys: Henri Lyysaari<br>Lavastus ja valosuunnittelu: William Iles<br>Pukusuunnittelu Riina Leea Nieminen<br>Äänisuunnittelu: Jaakko Virmavirta<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Vastuudramaturgi: Ari-Pekka Lahti</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy</p>",
                "en": "<p>Juho Mantere"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350711/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350666",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:46367",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:siltasaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Siltasaari",
                            "sv": "Broholmen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    }
                ],
                "created_time": "2023-08-15T11:16:03.694168Z",
                "last_modified_time": "2025-02-01T06:09:58.729347Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 244,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.950369,
                        60.18024
                    ]
                },
                "name": {
                    "fi": "Arena-näyttämö - Helsingin kaupunginteatteri",
                    "sv": "Arena-scenen - Helsingfors stadsteater",
                    "en": "Arena Theatre - Helsinki City Theatre"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://hkt.fi/nayttamot/arena-nayttamo/",
                    "sv": "https://hkt.fi/nayttamot/arena-nayttamo/",
                    "en": "https://hkt.fi/nayttamot/arena-nayttamo/"
                },
                "telephone": {
                    "fi": "+358 9 394 022"
                },
                "street_address": {
                    "fi": "Hämeentie 2",
                    "sv": "Tavastvägen 2",
                    "en": "Hämeentie 2"
                },
                "description": {
                    "fi": "Arena-näyttämöllä on nähty Helsingin Kaupunginteatterin vauhdikkaita ja viihdyttäviä esityksiä syksystä 2010 alkaen. Ohjelmistossa on ollut komediaa ja musikaaleja, niin Broadwaylta kuin Suomestakin, stand upia, kotimaisia kantaesityksiä ja musiikintäyteisiä konsertti-iltoja.",
                    "sv": "Arenascenen har varit värd för Helsingfors stadsteaters fartfyllda och underhållande föreställningar sedan hösten 2010. Programmet har innehållit komedi och musikaler, stand-up, inhemska premiärer och musikfyllda konsertkvällar.",
                    "en": "The Arena stage has hosted the Helsinki City Theatre's fast-paced and entertaining performances since autumn 2010. The program has included comedy and musicals, stand-up comedy, domestic premieres and music-filled concert evenings."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1255,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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-19350666/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350666/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-eikae-yksikaeaen-pelastunut-helsinki-helsingin-kaupunginteatteri-19350666/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235431,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.456387Z",
                    "last_modified_time": "2025-02-17T11:16:41.456408Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/eyp-lp-222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235431/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:07.585753Z",
            "last_modified_time": "2025-04-10T23:16:50.833227Z",
            "date_published": null,
            "start_time": "2025-04-10T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Agatha Christie Eikä yksikään pelastunut Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri."
            },
            "name": {
                "fi": "Eikä Yksikään Pelastunut"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/eikae-yksikaeaen-pelastunut-helsinki-3748841/?affiliate=ADV&language=en"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Agatha Christie<br><strong>Eikä yksikään pelastunut</strong></p><p>Eikä yksikään pelastunut on hyytävä suljetun tilan mysteeri. Tehokas, hyvin rakennettu ja perinteinen jännitysnäytelmä on Agatha Christietä parhaimmillaan.</p><p>Agatha Christien klassikkodekkari Eikä yksikään pelastunut vie Devonin rannikolle Soldier Islandille, jonne kymmenen ihmistä on saanut kutsun. Kun seurue saapuu paikalle, ilmenee, että isäntäpari ei ole vielä saapunut. Takan reunalta löytyy vanha loru kymmenestä sotilaspojasta sekä kymmenen sotilaspatsasta.</p><p>Lorussa jokainen sotilaspoika kuolee, yksi kerrallaan. Pian käynnistyy äänilevy, jossa jokaista vierasta ja talon palvelijoita syytetään murhista.</p><p>Sitten seurueen jäseniä alkaa kuolla.</p><p>Jokaisen kuolemantapauksen yhteydessä häviää yksi kymmenestä posliinisesta sotilaspoikapatsaasta.</p><p>Kunnes jäljellä ei ole yhtäkään.</p><p>Karmivan kiehtova dekkari tarjoaa intensiivisen parituntisen Arena-näyttämöllä, joka on todistanut paikkansa jännitysnäytelmien ykkösnäyttämönä. Arena-näyttämön intiimissä tunnelmassa nautittiin supersuosittu Agatha Christien Hiirenloukku syksyllä 2023.</p><p>Rooleissa: Anna Ackerman, Jesse Gyllenbögel, Heidi Herala, Arttu Kapulainen, Juha Jokela, Santeri Kinnunen, Jouko Klemettilä, Pertti Koivula, Jari Pehkonen Kaisa Torkkel, Mikko Virtanen</p><p>Kirjailija: Agatha Christie<br>Suomentaja: Aino Piirola<br>Ohjaus: Sakari Hokkanen<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Jaana Nykänen<br>Dramaturgi: Sanna Niemeläinen</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br>Lipunvälittäjä: Lippupiste Oy<br></p>"
            },
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350666/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19350581",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:9353",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:13:26.380591Z",
                "last_modified_time": "2024-02-06T13:10:05.559954Z",
                "custom_data": null,
                "email": "info@hkt.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 199,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.937542,
                        60.167675
                    ]
                },
                "name": {
                    "fi": "Lilla Teatern",
                    "sv": "Lilla Teatern",
                    "en": "Lilla Teatern"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.hkt.fi/lillateatern/",
                    "sv": "http://www.hkt.fi/lillateatern/",
                    "en": "http://www.hkt.fi/lillateatern/"
                },
                "telephone": {
                    "fi": "+358 9 394 0373"
                },
                "street_address": {
                    "fi": "Yrjönkatu 30",
                    "sv": "Georgsgatan 30"
                },
                "description": null,
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1255,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748845/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350581/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350581/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-skymning-41-beraettelsen-om-molly-och-henry-helsingin-kaupunginteatteri-19350581/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235435,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.389566Z",
                    "last_modified_time": "2025-02-17T11:16:42.389583Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/skymning_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235435/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:07.463841Z",
            "last_modified_time": "2025-04-10T23:16:50.776488Z",
            "date_published": null,
            "start_time": "2025-04-10T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Kjell Westö - Annina Enckell Skymning 41 – berättelsen om Molly och Henry Året är 1939 då nyförälskade Molly och Henry förstår att deras lilla nation kommer att"
            },
            "name": {
                "sv": "Skymning 41 - Berättelsen Om Molly Och Henry"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/skymning-41-beraettelsen-om-molly-och-henry-3748845/?affiliate=ADV&language=en"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>***<br>Vuonna 1939 vastarakastuneet Molly ja Henry kohtaavat sodan, joka muuttaa heidän elämänsä. Näyttelijä Molly lähtee Ruotsiin keräämään rahaa Suomen puolesta, kun Henry taas raportoi rintaman kauhuista, mutta hänen rehelliset tekstinsä jäävät julkaisematta. Esitys, joka perustuu Kjell Westön romaaniin, kertoo sodan vaikutuksista siviileihin sekä rakkaudesta ja moraalista kriisiaikana.</p><p>Lipunmyyjä: Helsingin Kaupunginteatteri<br> Lipunvälittäjä: Lippupiste Oy<br></p>",
                "sv": "<p>Kjell Westö - Annina Enckell<br><strong>Skymning 41 – berättelsen om Molly och Henry</strong></p><p>Året är 1939 då nyförälskade Molly och Henry förstår att deras lilla nation kommer att hamna i krig. Henry skickas inte till fronten, han är för gammal för att bli inkallad. Ändå förändrar kriget allt. Skådespelerskan Molly åker på turné till Sverige för att samla in pengar för Finlands sak, medan Henry reser till fronten för att skriva reportage om krigets fasor. Henrys texter blir inte publicerade, hans förmän tycker språket är för rått och ärligt. De saknar patriotiska berättelser om den finska soldaten – en hjälte som stålt dör för fosterlandet. Samtidigt måste Molly spela triviala roller i lättsamma komedier då hon egentligen skulle vilja “stå på scenen och gestalta mänskans villkor här i världen”. Molly och Henry försöker hitta tillbaka till livet som det var, men kriget är en gapande käft som slukar åt sig människornas glädje och hopp.</p><p>Föreställningen baserar sig på Kjell Westös roman och den handlar om en nation i krig, om hur retoriken i samhället militariseras och om hur kriget påverkar den civila befolkningen. Det är även en berättelse om kärlek och moral i kristid och om att kämpa för det man tror på.</p><p>Aktörer: Saga Sarkola, Elmer Bäck, Pia Runnakko, Alexander Wendelin, Joachim Wigelius, Antti Timonen</p><p>Regi: David Sandqvist<br>Dramatisering: Annina Enckell<br>Scenografi: Peter Ahlqvist<br>Dräktdesign: Sari Suominen<br>Ljusdesign: Pekka Pitkänen<br>Ljuddesign: Niklas Lundström<br>Maskdesign: Jutta Kainulainen<br>Dramaturgi: Henna Piirto</p>"
            },
            "location_extra_info": {
                "fi": "Lilla Teatern"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19350581/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19036795",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:9302",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Linjat",
                            "sv": "Linjerna"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:13:24.017069Z",
                "last_modified_time": "2024-02-06T13:10:05.015052Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 539,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.942722,
                        60.181675
                    ]
                },
                "name": {
                    "fi": "Helsingin Kaupunginteatteri",
                    "sv": "Helsingfors Stadsteater",
                    "en": "Helsinki City Theatre"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://hkt.fi/",
                    "sv": "https://hkt.fi/",
                    "en": "https://hkt.fi/"
                },
                "telephone": {
                    "fi": "+358 9 394 022"
                },
                "street_address": {
                    "fi": "Eläintarhantie 5",
                    "sv": "Djurgårdsvägen 5",
                    "en": "Eläintarhantie 5"
                },
                "description": null,
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "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-19036795/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036795/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19036795/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:07.334185Z",
            "last_modified_time": "2025-04-10T23:16:50.709621Z",
            "date_published": null,
            "start_time": "2025-04-10T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Jyrki Kasper, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19036795/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19790131",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:9302",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Linjat",
                            "sv": "Linjerna"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:13:24.017069Z",
                "last_modified_time": "2024-02-06T13:10:05.015052Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 539,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.942722,
                        60.181675
                    ]
                },
                "name": {
                    "fi": "Helsingin Kaupunginteatteri",
                    "sv": "Helsingfors Stadsteater",
                    "en": "Helsinki City Theatre"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://hkt.fi/",
                    "sv": "https://hkt.fi/",
                    "en": "https://hkt.fi/"
                },
                "telephone": {
                    "fi": "+358 9 394 022"
                },
                "street_address": {
                    "fi": "Eläintarhantie 5",
                    "sv": "Djurgårdsvägen 5",
                    "en": "Eläintarhantie 5"
                },
                "description": null,
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1255,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3748849/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sinun-margot-helsingin-kaupunginteatteri-19790131/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/sinun-margot-helsingin-kaupunginteatteri-19790131/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/sinun-margot-helsingin-kaupunginteatteri-19790131/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235432,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.590376Z",
                    "last_modified_time": "2025-02-17T11:16:41.590394Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/sinun-margot_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235432/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:07.201627Z",
            "last_modified_time": "2025-04-10T23:16:50.654899Z",
            "date_published": null,
            "start_time": "2025-04-10T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Meri Valkama – Tuomas Timonen Sinun, Margot Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nous"
            },
            "name": {
                "fi": "Sinun, Margot"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sinun-margot-3748849/?affiliate=ADV&language=en"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Meri Valkama – Tuomas Timonen<br><strong>Sinun, Margot</strong></p><p>Meri Valkaman sensaatiomainen esikoisromaani Sinun, Margot (2021) sulatti kriitikoiden ja lukijoiden sydämet ja nousi heti ilmestyttyään kirjallisuutemme merkkiteokseksi. Helsingin Kaupunginteatteri vastaa lukijoiden ja katsojien lukuisiin pyyntöihin valmistamalla Riikka Oksasen ohjaamana menestysromaanin pohjalta upean teatteriversion suurelle näyttämölle.</p><p>Vilja Siltasen isä Markus on juuri kuollut. Hänen asunnostaan löytyy nippu kirjeitä naiselta nimeltä Margot. Viljan äiti ei suostu sanomaan kirjeistä mitään, joten Viljan on matkustettava takaisin Berliiniin selvittämään, keneltä kirjeet ovat.</p><p>Vilja on varttunut DDR:ssä, jossa hänen isänsä työskenteli ulkomaankirjeenvaihtajana 1980-luvun alkupuolella. Perhe piti Itä-Saksaa ihannevaltiona. Sitten Berliinin muuri murtui ja perheonni hajosi. Miksi? Ja kuka kirjeiden Margot oikein on?</p><p>Sinun, Margot laajenee yksilön ja perheen tarinasta suureksi, kokonaista aikakautta tarkastelevaksi jännitysnäytelmäksi. Otteessaan pitävä draama onnistuu pohtimaan poikkeuksellisella tavalla ajankohtaisia kysymyksiä: Voiko menneisyyden muistaminen auttaa ymmärtämään nykyisyyttä?</p><p>Sinun, Margot on intensiivinen, psykologinen näytelmä siitä, mitä tapahtuu, kun ihanteelliseksi rakennettu kuva elämästä, aatteesta, tai ihmisestä alkaa särkyä. Kuka tai mitä ihminen lopulta on, jollei tiedä totuutta omasta menneisyydestään?</p><p>Viljan roolissa nähdään Jussi-palkittu Satu Tuuli Karhu. Margotina loistaa elokuvista ja televisiosta tuttu Sara Soulié. Viljan isää Markusta näyttelee useissa elokuvissa vaikutuksen tehnyt Martin Bahne ja Viljan äitiä Rosaa näyttelee upea Sanna-June Hyde.</p><p>Rooleissa: Satu Tuuli Karhu, Sara Soulié, Martin Bahne, Helena Haaranen, Vuokko Hovatta, Sanna-June Hyde, Tuukka Leppänen, Lasse Lipponen, Sanna Majuri, Risto Kaskilahti, Samuli Pajunen, Emma Pälsynaho, Raili Raitala</p><p>Kirjailija: Meri Valkama<br>Dramatisointi: Tuomas Timonen<br>Ohjaus: Riikka Oksanen<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Tiina Kaukanen<br>Valo- ja videosuunnittelu: Toni Haaranen<br>Äänisuunnittelu: Eradj Nazimov<br>Naamioinnin suunnittelu: Milja Mensonen<br>Dramaturgi: Ari-Pekka Lahti<br>Ohjaajan assistentti: Kirsi Karlenius</p>"
            },
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19790131/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19326911",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:9302",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Linjat",
                            "sv": "Linjerna"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:13:24.017069Z",
                "last_modified_time": "2024-02-06T13:10:05.015052Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 539,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.942722,
                        60.181675
                    ]
                },
                "name": {
                    "fi": "Helsingin Kaupunginteatteri",
                    "sv": "Helsingfors Stadsteater",
                    "en": "Helsinki City Theatre"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://hkt.fi/",
                    "sv": "https://hkt.fi/",
                    "en": "https://hkt.fi/"
                },
                "telephone": {
                    "fi": "+358 9 394 022"
                },
                "street_address": {
                    "fi": "Eläintarhantie 5",
                    "sv": "Djurgårdsvägen 5",
                    "en": "Eläintarhantie 5"
                },
                "description": null,
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3594382/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326911/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326911/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-19326911/?affiliate=ADV&language=en"
                    },
                    "price": null,
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    }
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235439,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:44.559638Z",
                    "last_modified_time": "2025-02-17T11:16:44.559655Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hkt_mollin_iltahepuli_222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235439/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:07.098481Z",
            "last_modified_time": "2025-04-10T23:16:50.594273Z",
            "date_published": null,
            "start_time": "2025-04-10T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Katri Kirkkopelto MOLLIN ILTAHEPULI Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta."
            },
            "name": {
                "fi": "Mollin Iltahepuli"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=en"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "description": {
                "fi": "<p>Katri Kirkkopelto<br><strong>MOLLIN ILTAHEPULI</strong></p><p>Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta. Mitä tapahtuu, kun Mollille ja hänen parhaalle ystävälleen Sisulle iskee iltaväsymyksen sijasta iltahepuli? Esityksessä tarvitaan katsojien apua, jotta päähenkilöt Molli ja Sisu saadaan unten maille. Esitys pohjautuu Katri Kirkkopellon samannimiseen suosittuun lastenkirjaan.</p><p>Rooleissa: Kaisa Torkkel, Helena Haaranen ja Sari Haapamäki</p><p>Dramatisointi ja ohjaus: Jenny Jumppanen<br>Valosuunnittelu: Milla Veirto<br>Puvustus ja lavastus: Aija Nurminen<br>Naamiointi: Tuula Kuittinen<br>Äänisuunnittelu ja sävellys: Eero Niemi</p>"
            },
            "location_extra_info": {
                "fi": "Pieni Näyttämö LÄMPIÖ"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19326911/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:19e05756-64db-41fa-8318-9303c2c6e67e",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:23512",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaivopuisto",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaivopuisto",
                            "sv": "Brunnsparken"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaivopuisto",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaivopuisto",
                            "sv": "Brunnsparken"
                        }
                    }
                ],
                "created_time": "2023-08-15T09:10:10.631822Z",
                "last_modified_time": "2025-03-14T13:09:41.653155Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": null,
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 2,
                "image": 8617,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.955412,
                        60.155396
                    ]
                },
                "name": {
                    "fi": "Helios",
                    "sv": "Helios",
                    "en": "Helios"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.hamhelsinki.fi/",
                    "sv": "https://www.hamhelsinki.fi/sv/",
                    "en": "https://www.hamhelsinki.fi/en/"
                },
                "telephone": null,
                "street_address": {
                    "fi": "Ullanlinnanmäki, Kaivopuisto",
                    "sv": "Observatorieberget, Brunnsparken",
                    "en": "Ullanlinnanmäki, Kaivopuisto"
                },
                "description": {
                    "fi": "Kuvanveistäjä professori Lauri Anttilan Helios-teos koostuu maan tasalle sijoitetuista kivielementeistä ja Ursan rakennuksen fasadiin kiinnitetystä pyöreästä peilistä. Kun aurinko ylittää tähtitornin meridiaanin eli sen pituuspiirin, tornissa oleva peili heijastaa auringonvalon maassa olevan kivisen tason päälle. Auringon ollessa etelässä kello on noin 20 minuuttia yli yhden ja heijastus on silloin vaalean ja tumman kiven rajaviivalla. Näin teos toimii myös aurinkokellona. Kivimateriaaleina on käytetty kolmea eri kivilajia. Musta kivi on harvinaista Koidavaaran kiveä Suomen rajavyöhykkeeltä. Vaalea kivi, Arctia Beige, on Ristijärveltä. Aluskivi Karelia Beige (Kasken kivi) on Savitaipaleelta. Tähtitornin Helios -teos julkistettiin Kaivopuiston kukkulalla Ursan tornin vieressä 16.6.2010. Helsingin kaupungin puolesta teoksen otti vastaan kaupunginjohtaja Jussi Pajunen. Teos kuuluu Helsingin kaupungin taidekokoelmaan, jota HAM hallinnoi ja kuratoi.",
                    "sv": "Skulptören, professor Lauri Anttilas verk Helios består av stenelement på marknivå och en rund spegel fastsatt på fasaden på Ursas torn. När solen passerar observatoriets meridian, det vill säga dess längdgrad, speglas solljuset från spegeln ner i stenelementet på marken. När solen är i söder är klockan cirka 20 minuter över ett. Då faller speglingen på gränslinjen mellan ljus och mörk sten. På det här sättet fungerar verket också som solur. Anttila har använt tre olika stenarter. Den svarta stenen är sällsynt Koidavaara-sten från Finlands gränszon. Den ljusa stenen, Arctia Beige, kommer från Ristijärvi och stenen underst, Karelia Beige, från Savitaipale. Observatoriets Helios-verk uppe på klippan i Brunnsparken intill Ursas torn invigdes 16.6.2010. Stadsdirektör Jussi Pajunen tog emot verket på stadens vägnar. Verket hör till Helsingfors stads konstsamling, som förvaltas och kurateras av HAM.",
                    "en": "Helios by sculptor Professor Lauri Anttila consists of stone elements on the ground and a round mirror mounted on the exterior wall of the Ursa Observatory. As the sun crosses the meridian of the Observatory, its light is reflected in the mirror of the tower onto the stones on the ground. When the sun is in the south, the time is approximately 20 minutes past one, and the reflected light falls on the boundary between the light and the dark stones. The work functions as a sundial. The elements on the ground are made of three different types of stone. The dark stone is rare black stone from Koidanvaara near the Finnish border, the pale stone, Arctia Beige, comes from Ristijärvi, while the foundation stone is Karelia Beige from Savitaipale.\nHelios was unveiled in Kaivopuisto park on a hill next to the Ursa Observatory on 16 June 2010. The work was accepted on behalf of the City of Helsinki by Mayor Jussi Pajunen. The work belongs to the City of Helsinki's art collection, which is managed and curated by HAM."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:23512/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "helsinki:aflfbat76e",
                    "has_user_editable_resources": true,
                    "alt_labels": [],
                    "created_time": "2023-09-07T21:31:29.015768Z",
                    "last_modified_time": "2023-09-07T21:31:29.015789Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 114,
                    "image": null,
                    "data_source": "helsinki",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "palvelukeskuskortti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helsinki:aflfbatkwe",
                    "has_user_editable_resources": true,
                    "alt_labels": [],
                    "created_time": "2023-09-07T21:31:28.993077Z",
                    "last_modified_time": "2023-09-07T21:31:28.993104Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 112,
                    "image": null,
                    "data_source": "helsinki",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "omaishoitoperheet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p10218",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "klassinen baletti",
                        "balett (konst)",
                        "balettkonst",
                        "klassisk balett"
                    ],
                    "created_time": "2023-08-16T05:12:24.307654Z",
                    "last_modified_time": "2023-08-16T05:12:24.307672Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 50,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "baletti (taiteet)",
                        "sv": "balett (konstarter)",
                        "en": "ballet (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p10727",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kansalaisaktivismi",
                        "kansalaisosallistuminen",
                        "kansalaisten osallistuminen",
                        "medborgaraktivism",
                        "medborgardeltagande",
                        "engagemang",
                        "medborgarinflytande"
                    ],
                    "created_time": "2023-08-16T05:18:07.639076Z",
                    "last_modified_time": "2023-08-16T05:18:07.639094Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1272,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallistuminen",
                        "sv": "deltagande",
                        "en": "participation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11185",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "live-konsertit",
                        "konserter (evenemang)",
                        "livekonserter"
                    ],
                    "created_time": "2023-08-16T05:18:32.493642Z",
                    "last_modified_time": "2023-08-16T05:18:32.493659Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 119,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "konsertit",
                        "sv": "konserter (framträdanden)",
                        "en": "concerts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8727,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11951",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "mediakonst"
                    ],
                    "created_time": "2023-08-16T05:18:49.207705Z",
                    "last_modified_time": "2023-08-16T05:18:49.207723Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "mediataide",
                        "sv": "mediekonst",
                        "en": "media art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p12297",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "klienter inom psykisk rehabilitering",
                        "mentalvårdsklienter",
                        "psykiska rehabiliteringspatienter"
                    ],
                    "created_time": "2023-08-16T05:15:03.736139Z",
                    "last_modified_time": "2023-08-16T05:15:03.736156Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 230,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "mielenterveyskuntoutujat",
                        "sv": "klienter i psykisk rehabilitering",
                        "en": "patients in psychiatric rehabilitation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1235",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motion pictures",
                        "movies",
                        "spelfilmer",
                        "elokuvateokset",
                        "filmverk",
                        "film works"
                    ],
                    "created_time": "2023-08-16T05:19:47.298032Z",
                    "last_modified_time": "2023-08-16T05:19:47.298049Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1403,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvat",
                        "sv": "filmer",
                        "en": "films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p12650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "operettisävellykset",
                        "operettkompositioner"
                    ],
                    "created_time": "2023-08-16T05:18:09.824734Z",
                    "last_modified_time": "2023-08-16T05:18:09.824754Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "operetit",
                        "sv": "operetter",
                        "en": "operettas"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1278",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "tanssitaide",
                        "danskonst",
                        "tanssit",
                        "danser"
                    ],
                    "created_time": "2023-08-16T05:19:38.809008Z",
                    "last_modified_time": "2023-08-16T05:19:38.809026Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2432,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssi",
                        "sv": "dans",
                        "en": "dance (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13050",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:15:07.041577Z",
                    "last_modified_time": "2023-08-16T05:15:07.041594Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2890,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapsiperheet",
                        "sv": "barnfamiljer",
                        "en": "families with children"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13084",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "natur"
                    ],
                    "created_time": "2023-08-16T05:16:37.985735Z",
                    "last_modified_time": "2023-08-16T05:16:37.985760Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 393,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "luonto",
                        "sv": "naturen",
                        "en": "nature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p13876",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lustspel",
                        "comedy films",
                        "huvinäytelmät"
                    ],
                    "created_time": "2023-08-16T05:19:37.901227Z",
                    "last_modified_time": "2023-08-16T05:19:37.901248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 139,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "komediat",
                        "sv": "komedier",
                        "en": "comedies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1393",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "seurat (järjestötoiminta)",
                        "yhdistykset"
                    ],
                    "created_time": "2023-08-16T05:19:47.711187Z",
                    "last_modified_time": "2024-04-06T04:40:52.636427Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 164,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "järjestöt",
                        "sv": "föreningar",
                        "en": "associations (organisations)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p14004",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "diskussion"
                    ],
                    "created_time": "2023-08-16T05:19:31.102174Z",
                    "last_modified_time": "2023-08-16T05:19:31.102192Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2615,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "keskustelu",
                        "sv": "samtal",
                        "en": "conversation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p14614",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "dance-pop",
                        "eurodance",
                        "tanssipop",
                        "danspop",
                        "eurodance"
                    ],
                    "created_time": "2023-08-16T05:18:50.090864Z",
                    "last_modified_time": "2023-08-16T05:18:50.090883Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 65,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "dance",
                        "en": "dance (music)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1574",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "special occasions",
                        "fester",
                        "högtider",
                        "högtider och fester",
                        "parties (celebrations)",
                        "tillställningar (fester)"
                    ],
                    "created_time": "2023-08-16T05:19:43.224807Z",
                    "last_modified_time": "2024-03-22T04:40:51.016442Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "juhlat",
                        "sv": "fester och högtider",
                        "en": "celebrations"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p15875",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:09:20.413725Z",
                    "last_modified_time": "2023-08-16T05:09:20.413743Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 291,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "luennot",
                        "sv": "föreläsningar",
                        "en": "lectures"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p15937",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "imeväisikäiset",
                        "spädbarn",
                        "infants",
                        "bebisar"
                    ],
                    "created_time": "2023-08-16T05:12:54.715337Z",
                    "last_modified_time": "2023-08-16T05:12:54.715360Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vauvat",
                        "sv": "babyer",
                        "en": "babies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16428",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:09.346796Z",
                    "last_modified_time": "2023-08-16T05:19:09.346813Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "farssit",
                        "sv": "farser",
                        "en": "farces"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16485",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "peruskoululaiset"
                    ],
                    "created_time": "2023-08-16T05:19:09.385735Z",
                    "last_modified_time": "2023-08-16T05:19:09.385751Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 8529,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "koululaiset",
                        "sv": "skolelever",
                        "en": "pupils"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16486",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "studenter (högskolestuderande)"
                    ],
                    "created_time": "2023-08-16T05:19:01.858955Z",
                    "last_modified_time": "2023-08-16T05:19:01.858973Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 473,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opiskelijat",
                        "sv": "studerande",
                        "en": "students"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1657",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "indoktrinaatio",
                        "indoktrinering",
                        "kansalaisvaikuttaminen",
                        "vaikutusmahdollisuudet",
                        "påverkande",
                        "påverkande arbete",
                        "påverkansarbete",
                        "påverkningsmöjligheter"
                    ],
                    "created_time": "2023-08-16T05:19:36.228503Z",
                    "last_modified_time": "2023-08-16T05:19:36.228522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vaikuttaminen",
                        "sv": "påverkan",
                        "en": "influencing"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p16596",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "turistit"
                    ],
                    "created_time": "2023-08-16T05:15:18.345976Z",
                    "last_modified_time": "2023-08-16T05:15:18.345994Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 108,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "matkailijat",
                        "sv": "turister",
                        "en": "tourists and travellers"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p17654",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "summer theaters"
                    ],
                    "created_time": "2023-08-16T05:05:52.996011Z",
                    "last_modified_time": "2023-08-16T05:05:52.996029Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kesäteatterit",
                        "sv": "sommarteatrar",
                        "en": "summer theatres"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1808",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "säveltaide",
                        "musikkonst",
                        "tonkonst"
                    ],
                    "created_time": "2023-08-16T05:19:45.424900Z",
                    "last_modified_time": "2023-08-16T05:19:45.425071Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2178,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikki",
                        "sv": "musik",
                        "en": "music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p181",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "vanha tanssimusiikki",
                        "gammal dansmusik"
                    ],
                    "created_time": "2023-08-16T05:19:45.914400Z",
                    "last_modified_time": "2023-08-16T05:19:45.914419Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssimusiikki",
                        "sv": "dansmusik",
                        "en": "dance music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p18434",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "Western art music",
                        "Western classical music",
                        "klassinen musiikki",
                        "konserttimusiikki",
                        "länsimainen taidemusiikki",
                        "vakava musiikki",
                        "klassisk musik",
                        "konsertmusik",
                        "seriös musik",
                        "västerländsk konstmusik"
                    ],
                    "created_time": "2023-08-16T05:18:50.976439Z",
                    "last_modified_time": "2023-08-16T05:18:50.976459Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "taidemusiikki",
                        "sv": "konstmusik",
                        "en": "art music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1855",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ei-kielellinen viestintä",
                        "ei-verbaalinen viestintä",
                        "non-verbaalinen viestintä",
                        "ickeverbal kommunikation",
                        "non-verbal kommunikation",
                        "nonverbal kommunikation",
                        "ordlös kommunikation"
                    ],
                    "created_time": "2023-08-16T05:18:35.910098Z",
                    "last_modified_time": "2023-08-16T05:18:35.910122Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanaton viestintä",
                        "sv": "icke-verbal kommunikation",
                        "en": "nonverbal communication"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1857",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "iskusävelmät",
                        "schlagers",
                        "schlagrar"
                    ],
                    "created_time": "2023-08-16T05:17:39.803522Z",
                    "last_modified_time": "2023-08-16T05:17:39.803541Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "iskelmät",
                        "sv": "schlager",
                        "en": "schlager music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1882",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "rockmusik"
                    ],
                    "created_time": "2023-08-16T05:19:44.077970Z",
                    "last_modified_time": "2023-08-16T05:19:44.077998Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "rock",
                        "sv": "rock (musik)",
                        "en": "rock music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1947",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "prosperity",
                        "welfare (well-being)",
                        "hyvinvointi (aineellinen)",
                        "hyvinvointi (taloudellinen)"
                    ],
                    "created_time": "2023-08-16T05:19:38.138600Z",
                    "last_modified_time": "2023-08-16T05:19:38.138628Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1044,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hyvinvointi",
                        "sv": "välfärd",
                        "en": "well-being"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1979",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaus (valokuvaus)",
                        "fotografi (framställning av bilder)"
                    ],
                    "created_time": "2023-08-16T05:19:42.940777Z",
                    "last_modified_time": "2023-08-16T05:19:42.940793Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "valokuvaus",
                        "sv": "fotografering",
                        "en": "photography"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p20421",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "clubs (music)",
                        "jazz clubs",
                        "rock clubs",
                        "jazzklubit",
                        "keikkapaikat",
                        "klubit (musiikki)",
                        "rockklubit",
                        "jazzklubbar",
                        "klubbar (musik)",
                        "rockklubbar"
                    ],
                    "created_time": "2023-08-16T05:10:00.287630Z",
                    "last_modified_time": "2023-08-16T05:10:00.287649Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikkiklubit",
                        "sv": "musikklubbar",
                        "en": "music clubs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p20513",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:06:24.453161Z",
                    "last_modified_time": "2023-08-16T05:06:24.453180Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 94,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vauvaperheet",
                        "sv": "småbarnsfamiljer",
                        "en": "families with babies"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2149",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "opastaminen",
                        "opastukset",
                        "vägledning"
                    ],
                    "created_time": "2023-08-16T05:13:22.316826Z",
                    "last_modified_time": "2023-08-16T05:13:22.316842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3276,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opastus",
                        "sv": "guidning",
                        "en": "guidance"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p21812",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "onlineutställningar",
                        "webbutställningar",
                        "digitaaliset näyttelyt",
                        "digitala utställningar",
                        "digital exhibitions"
                    ],
                    "created_time": "2023-08-16T05:10:11.760235Z",
                    "last_modified_time": "2023-08-16T05:10:11.760254Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 245,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "verkkonäyttelyt",
                        "sv": "utställningar på nätet",
                        "en": "online exhibitions"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p22193",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kokeellinen sirkus",
                        "uusi sirkus",
                        "experimentell cirkus"
                    ],
                    "created_time": "2023-08-16T05:10:15.581015Z",
                    "last_modified_time": "2023-08-16T05:10:15.581042Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nykysirkus",
                        "sv": "nycirkus",
                        "en": "contemporary circus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2240",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "vetenskap (fenomen)"
                    ],
                    "created_time": "2023-08-16T05:16:51.767668Z",
                    "last_modified_time": "2023-08-16T05:16:51.767692Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tiede",
                        "sv": "vetenskap",
                        "en": "science"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p23886",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "klienter i missbrukarvård",
                        "klienter i missbruksrehabilitering",
                        "klienter i missbruksvård",
                        "rehabiliterade missbrukare",
                        "rehabiliteringspatienter (missbruk)"
                    ],
                    "created_time": "2023-08-16T05:10:32.023983Z",
                    "last_modified_time": "2023-08-16T05:10:32.024002Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 59,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "päihdekuntoutujat",
                        "sv": "klienter i missbrukarrehabilitering",
                        "en": "substance abuse rehabilitation patients"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 15287,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2445",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "massamedia"
                    ],
                    "created_time": "2023-08-16T05:19:10.138910Z",
                    "last_modified_time": "2023-08-16T05:19:10.138927Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 338,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "media",
                        "en": "media"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p24597",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvatulkkaus",
                        "bildtolkning för synskadade"
                    ],
                    "created_time": "2023-08-16T05:10:38.516856Z",
                    "last_modified_time": "2023-08-16T05:10:38.516877Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvailutulkkaus",
                        "sv": "syntolkning",
                        "en": "audio description"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25077",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "dockteater (konstarter)",
                        "puppet theater"
                    ],
                    "created_time": "2023-08-16T05:13:40.124933Z",
                    "last_modified_time": "2023-08-16T05:13:40.124951Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nukketeatteri (taiteet)",
                        "sv": "dockteater (teaterkonst)",
                        "en": "puppet theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25216",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "multikonstnärlighet",
                        "multikonst (multikonstnärlig verksamhet)"
                    ],
                    "created_time": "2023-08-16T05:10:43.686451Z",
                    "last_modified_time": "2023-08-16T05:10:43.686469Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 59,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "monitaiteisuus",
                        "sv": "multikonstnärlig verksamhet",
                        "en": "multi-art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25476",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "3-D-elokuvat",
                        "3-ulotteiset elokuvat",
                        "kolmiulotteiset elokuvat",
                        "3-D-filmer",
                        "tredimensionella filmer"
                    ],
                    "created_time": "2023-08-16T05:07:03.891303Z",
                    "last_modified_time": "2023-08-16T05:07:03.891323Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 48,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "3D-elokuvat",
                        "sv": "3D-filmer",
                        "en": "3D films"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p25977",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "pop-up phenomena"
                    ],
                    "created_time": "2023-08-16T05:07:09.514665Z",
                    "last_modified_time": "2023-08-16T05:07:09.514684Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pop up -ilmiöt",
                        "sv": "pop up-fenomen",
                        "en": "pop up phenomena"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1255,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p26626",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "distansdeltagande"
                    ],
                    "created_time": "2023-08-16T05:16:56.313702Z",
                    "last_modified_time": "2023-08-16T05:16:56.313725Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 262,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "etäosallistuminen",
                        "sv": "deltagande på distans",
                        "en": "remote participation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2698",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "graafinen taide",
                        "taidegrafiikka",
                        "grafik (bildkonst)",
                        "grafisk konst",
                        "konstgrafik"
                    ],
                    "created_time": "2023-08-16T05:19:35.073591Z",
                    "last_modified_time": "2023-08-16T05:19:35.073610Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "grafiikka",
                        "sv": "grafik",
                        "en": "graphics (visual arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p272",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "organisation",
                        "organisaatio",
                        "organisationer (system)",
                        "organizations (systems)"
                    ],
                    "created_time": "2023-08-16T05:19:48.972508Z",
                    "last_modified_time": "2023-08-16T05:19:48.972527Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 64,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "organisaatiot",
                        "sv": "organisationer",
                        "en": "organisations (systems)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2739",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kuvaamataide",
                        "kuvaamataiteet",
                        "kuvataiteet"
                    ],
                    "created_time": "2023-08-16T05:18:38.321708Z",
                    "last_modified_time": "2023-08-16T05:18:38.321728Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 625,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kuvataide",
                        "sv": "bildkonst",
                        "en": "fine arts"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2762",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:33.337239Z",
                    "last_modified_time": "2023-08-16T05:19:33.337304Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 345,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "terveys",
                        "sv": "hälsa",
                        "en": "health"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2771",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:53.164665Z",
                    "last_modified_time": "2023-08-16T05:18:53.164683Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 162,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ulkoilu",
                        "sv": "friluftsliv",
                        "en": "outdoor recreation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2841",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "folklore",
                        "etninen musiikki",
                        "etnomusiikki",
                        "etnisk musik",
                        "ethnic music",
                        "traditional music",
                        "nykykansanmusiikki",
                        "perinnemusiikki",
                        "tanhumusiikki",
                        "etnomusik",
                        "folkdansmusik",
                        "nutidsfolkmusik",
                        "traditionell musik"
                    ],
                    "created_time": "2023-08-16T05:19:34.213952Z",
                    "last_modified_time": "2023-08-16T05:19:34.213970Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kansanmusiikki",
                        "sv": "folkmusik",
                        "en": "folk music (traditional music)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2969",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:40.535052Z",
                    "last_modified_time": "2023-08-16T05:19:40.535069Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "popmusiikki",
                        "sv": "popmusik",
                        "en": "pop music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29778",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "hardrock",
                        "hårdrock"
                    ],
                    "created_time": "2023-08-16T05:11:22.955383Z",
                    "last_modified_time": "2023-08-16T05:11:22.955399Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hard rock",
                        "en": "hard rock"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p3128",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "businesses",
                        "liikeyritykset",
                        "affärsföretag"
                    ],
                    "created_time": "2023-08-16T05:19:47.151589Z",
                    "last_modified_time": "2023-08-16T05:19:47.151618Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 125,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "yritykset",
                        "sv": "företag",
                        "en": "enterprises"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p316",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "leikki (leikkiminen)",
                        "barnlek",
                        "lek (barnlek)",
                        "lek (mental aktivitet)",
                        "leken"
                    ],
                    "created_time": "2023-08-16T05:18:19.516069Z",
                    "last_modified_time": "2023-08-16T05:18:19.516089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 53,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "leikkiminen",
                        "sv": "lek (aktivitet)",
                        "en": "playing (children's games)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p318",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lastenleikit",
                        "barnlekar"
                    ],
                    "created_time": "2023-08-16T05:19:10.824660Z",
                    "last_modified_time": "2023-08-16T05:19:10.824677Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 64,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "leikit",
                        "sv": "lekar",
                        "en": "plays and games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5082,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p3670",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ruoat"
                    ],
                    "created_time": "2023-08-16T05:19:11.133220Z",
                    "last_modified_time": "2023-08-16T05:19:11.133238Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 99,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ruoka",
                        "sv": "mat",
                        "en": "food"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p37827",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ordkonstpedagogik",
                        "ordkonstundervisning"
                    ],
                    "created_time": "2023-08-16T05:15:59.381056Z",
                    "last_modified_time": "2023-08-16T05:15:59.381073Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanataidekasvatus",
                        "sv": "ordkonstfostran",
                        "en": "literary art education"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p38773",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of comics",
                        "comics (art)",
                        "tecknad seriekonst"
                    ],
                    "created_time": "2023-08-16T05:16:03.115690Z",
                    "last_modified_time": "2023-08-16T05:16:03.115707Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sarjakuvataide",
                        "sv": "seriekonst",
                        "en": "comic art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 557,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10541,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4357",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kontroll över livet",
                        "livshantering",
                        "livskontroll"
                    ],
                    "created_time": "2023-08-16T05:18:41.919048Z",
                    "last_modified_time": "2023-08-16T05:18:41.919208Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elämänhallinta",
                        "sv": "livskompetens",
                        "en": "life management"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p485",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "handarbete",
                        "hantverk",
                        "handarbete och hantverk (arbete)",
                        "hantverk och handarbete (aktivitet)"
                    ],
                    "created_time": "2023-08-16T05:19:43.703641Z",
                    "last_modified_time": "2023-08-16T05:19:43.703658Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 77,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "käsityö (toiminta)",
                        "sv": "handarbete och hantverk (aktivitet)",
                        "en": "handcrafting"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4892",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "fairs",
                        "trade events",
                        "messut (kauppa)",
                        "handelsmässor",
                        "mässor (handel)"
                    ],
                    "created_time": "2023-08-16T05:17:55.604253Z",
                    "last_modified_time": "2023-08-16T05:17:55.604308Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "messut (tapahtumat)",
                        "sv": "mässor (evenemang)",
                        "en": "trade fairs"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5000",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "draama",
                        "dramas (plays)",
                        "stage plays",
                        "theatrical plays",
                        "teatterikappaleet",
                        "draman",
                        "dramer",
                        "pjäser",
                        "teaterpjäser",
                        "teaterstycken"
                    ],
                    "created_time": "2023-08-16T05:19:45.568394Z",
                    "last_modified_time": "2023-08-16T05:19:45.568415Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "näytelmät",
                        "sv": "skådespel",
                        "en": "plays"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5007",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of circus",
                        "sirkus (taidelajit)",
                        "cirkus (konstart)",
                        "cirkuskonst"
                    ],
                    "created_time": "2023-08-16T05:18:56.386288Z",
                    "last_modified_time": "2023-08-16T05:18:56.386306Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 170,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sirkustaide",
                        "sv": "cirkus (konstarter)",
                        "en": "circus (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5121",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:37.715031Z",
                    "last_modified_time": "2023-08-16T05:19:37.715048Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 685,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "näyttelyt",
                        "sv": "utställningar",
                        "en": "exhibitions"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5164",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:11:59.271137Z",
                    "last_modified_time": "2023-08-16T05:11:59.271154Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 86,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallisuus",
                        "sv": "delaktighet",
                        "en": "involvement (participation)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5590",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "fullvuxna"
                    ],
                    "created_time": "2023-08-16T05:17:14.834826Z",
                    "last_modified_time": "2023-08-16T05:17:14.834850Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3540,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "aikuiset",
                        "sv": "vuxna",
                        "en": "adults"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6033",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "surroundings",
                        "omgivning"
                    ],
                    "created_time": "2023-08-16T05:19:42.063394Z",
                    "last_modified_time": "2023-08-16T05:19:42.063413Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 132,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ympäristö",
                        "sv": "miljö",
                        "en": "environment"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6062",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "spel (objekt)"
                    ],
                    "created_time": "2023-08-16T05:19:44.246340Z",
                    "last_modified_time": "2023-08-16T05:19:44.246358Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3570,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "pelit",
                        "sv": "spel",
                        "en": "games"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6165",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "immigrantit",
                        "immigranter"
                    ],
                    "created_time": "2023-08-16T05:19:19.055622Z",
                    "last_modified_time": "2023-08-16T05:19:19.055643Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2211,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "maahanmuuttajat",
                        "sv": "invandrare",
                        "en": "immigrants"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6421",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "musiikkidraamat",
                        "oopperasävellykset",
                        "oopperateokset",
                        "operakompositioner",
                        "operaverk"
                    ],
                    "created_time": "2023-08-16T05:19:28.559874Z",
                    "last_modified_time": "2023-08-16T05:19:28.559895Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "oopperat",
                        "sv": "operor (verk)",
                        "en": "operas"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6455",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "design",
                        "design",
                        "design"
                    ],
                    "created_time": "2023-08-16T05:18:25.621979Z",
                    "last_modified_time": "2023-08-16T05:18:25.621998Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 123,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "muotoilu",
                        "sv": "formgivning",
                        "en": "design (artistic creation)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6674",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "barnskådespel"
                    ],
                    "created_time": "2023-08-16T05:17:18.220243Z",
                    "last_modified_time": "2023-08-16T05:17:18.220283Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lastennäytelmät",
                        "sv": "barnpjäser",
                        "en": "children's plays"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6834",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "merkkikielet",
                        "dövas teckenspråk",
                        "teckenspråk (döva)"
                    ],
                    "created_time": "2023-08-16T05:19:23.507717Z",
                    "last_modified_time": "2023-08-16T05:19:23.507734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "viittomakieli",
                        "sv": "teckenspråk",
                        "en": "sign language"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7157",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "showt"
                    ],
                    "created_time": "2023-08-16T05:18:00.485084Z",
                    "last_modified_time": "2025-01-14T04:42:31.632733Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "show't",
                        "sv": "shower",
                        "en": "shows"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7158",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kabareer"
                    ],
                    "created_time": "2023-08-16T05:17:19.628571Z",
                    "last_modified_time": "2023-08-16T05:17:19.628596Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kabareet",
                        "sv": "kabaréer",
                        "en": "cabarets"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7179",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "funktionshindrade",
                        "people with disabilities",
                        "invalidit",
                        "monivammaiset",
                        "funktionsnedsatta",
                        "handikappade",
                        "invalider",
                        "multihandikappade",
                        "personer med funktionshinder",
                        "personer med funktionsvariationer",
                        "personer med handikapp"
                    ],
                    "created_time": "2023-08-16T05:19:30.806218Z",
                    "last_modified_time": "2023-08-16T05:19:30.806249Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 110,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "vammaiset",
                        "sv": "personer med funktionsnedsättning",
                        "en": "disabled people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7266",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "konkretismi (kuvataide)",
                        "konkretism (konst)"
                    ],
                    "created_time": "2023-08-16T05:08:25.346620Z",
                    "last_modified_time": "2023-08-16T05:08:25.346640Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 147,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "konkreettinen taide",
                        "sv": "konkret konst",
                        "en": "concrete art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7349",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "safety",
                        "security",
                        "säkerhet (trygghet)",
                        "trygghet"
                    ],
                    "created_time": "2023-08-16T05:19:42.690635Z",
                    "last_modified_time": "2023-08-16T05:19:42.690652Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 59,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "turvallisuus",
                        "sv": "säkerhet och trygghet",
                        "en": "safety and security"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7708",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:13.687429Z",
                    "last_modified_time": "2023-08-16T05:19:13.687454Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 112,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työttömät",
                        "sv": "arbetslösa",
                        "en": "unemployed people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p7969",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:02.409975Z",
                    "last_modified_time": "2023-08-16T05:18:02.409999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sanataide",
                        "sv": "ordkonst",
                        "en": "literary art"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8025",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "rakennustaide",
                        "byggnadskonst"
                    ],
                    "created_time": "2023-08-16T05:19:07.593256Z",
                    "last_modified_time": "2023-08-16T05:19:07.593299Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 50,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "arkkitehtuuri",
                        "sv": "arkitektur",
                        "en": "architecture"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3079,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8368",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "videotallenteet"
                    ],
                    "created_time": "2023-08-16T05:16:24.119002Z",
                    "last_modified_time": "2023-08-16T05:16:24.119030Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "video",
                        "en": "video"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8434",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:26.670455Z",
                    "last_modified_time": "2023-08-16T05:19:26.670472Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "viihdemusiikki",
                        "sv": "underhållningsmusik",
                        "en": "light music"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8470",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:40.879074Z",
                    "last_modified_time": "2023-08-16T05:19:40.879092Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 63,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kestävä kehitys",
                        "sv": "hållbar utveckling",
                        "en": "sustainable development"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8475",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:19.897765Z",
                    "last_modified_time": "2023-08-16T05:19:19.897782Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuriperintö",
                        "sv": "kulturarv",
                        "en": "cultural heritage"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8674",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:12:16.381863Z",
                    "last_modified_time": "2023-08-16T05:12:16.381880Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssikasvatus",
                        "sv": "dansfostran",
                        "en": "dance education"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9058",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "musical theatre",
                        "musikaaliteatteri",
                        "musikalteater",
                        "music theater (art forms)",
                        "musical theater"
                    ],
                    "created_time": "2023-08-16T05:16:26.790933Z",
                    "last_modified_time": "2023-08-16T05:16:26.790952Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 50,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "musiikkiteatteri (taiteet)",
                        "sv": "musikteater (teaterkonst)",
                        "en": "music theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p916",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "motionering",
                        "liikuntakäyttäytyminen",
                        "liikkuminen (liikunta)",
                        "motion (gymnastik)",
                        "motion (idrott)"
                    ],
                    "created_time": "2023-08-16T05:19:42.381880Z",
                    "last_modified_time": "2023-08-16T05:19:42.381897Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 23469,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "liikunta",
                        "sv": "motion",
                        "en": "physical training"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9241",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:59.766886Z",
                    "last_modified_time": "2023-08-16T05:18:59.766906Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "satiiri",
                        "sv": "satir",
                        "en": "satire"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9244",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "stå-upp-komik"
                    ],
                    "created_time": "2023-08-16T05:08:33.693878Z",
                    "last_modified_time": "2023-08-16T05:08:33.693903Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 82,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "stand up -komiikka",
                        "sv": "ståuppkomik",
                        "en": "stand-up comedy"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9375",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lopptorg",
                        "second hand-butiker"
                    ],
                    "created_time": "2023-08-16T05:14:52.226647Z",
                    "last_modified_time": "2023-08-16T05:14:52.226662Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 47,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirpputorit",
                        "sv": "loppmarknader",
                        "en": "flea markets"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9376",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "bazaars (charities)",
                        "rummage sales"
                    ],
                    "created_time": "2023-08-16T05:12:20.116401Z",
                    "last_modified_time": "2023-08-16T05:12:20.116418Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "myyjäiset",
                        "sv": "försäljningar (evenemang)",
                        "en": "jumble sales"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p965",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "damsport",
                        "damidrott",
                        "herridrott",
                        "sport",
                        "herrsport",
                        "idrott",
                        "idrott och sport"
                    ],
                    "created_time": "2023-08-16T05:19:48.065449Z",
                    "last_modified_time": "2024-01-18T04:41:59.260277Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 88,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "urheilu",
                        "sv": "sport och idrott",
                        "en": "sports"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p9778",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:24.039733Z",
                    "last_modified_time": "2023-08-16T05:19:24.039749Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 46,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "yhteiskunta",
                        "sv": "samhället",
                        "en": "society"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=LE_testaus_1041442921677"
                    },
                    "price": {
                        "fi": "0"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "created_time": "2025-04-10T12:03:42.003351Z",
            "last_modified_time": "2025-04-10T12:19:20.934869Z",
            "date_published": "2025-04-10T11:54:48Z",
            "start_time": "2025-04-10T12:02:00Z",
            "end_time": "2025-04-10T14:02:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 1,
            "audience_max_age": 18,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2025-04-10T05:00:00+03:00",
            "enrolment_end_time": "2025-04-18T05:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kuvaus2"
            },
            "name": {
                "fi": "LE testaus 10.4"
            },
            "info_url": null,
            "provider": {
                "fi": "Järkkäri"
            },
            "description": {
                "fi": "<div><p>Kuvaus</p></div>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:19e05756-64db-41fa-8318-9303c2c6e67e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64845",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8740",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:54.264692Z",
                "last_modified_time": "2025-03-27T09:09:27.443498Z",
                "custom_data": null,
                "email": "malmitalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 984,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.malmitalo.fi/",
                    "sv": "https://www.malmitalo.fi/sv/framsidan",
                    "en": "https://www.malmitalo.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "description": {
                    "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.",
                    "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.",
                    "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:32",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.496484Z",
                    "last_modified_time": "2024-02-06T13:19:13.818300Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 607,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:350",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.556582Z",
                    "last_modified_time": "2024-02-06T13:19:15.225361Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 336,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 990,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Malmitalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:755",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2024-05-30T11:10:09.697444Z",
                    "last_modified_time": "2024-05-30T11:10:09.697496Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 684,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunkiuudistusalueet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1278",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "tanssitaide",
                        "danskonst",
                        "tanssit",
                        "danser"
                    ],
                    "created_time": "2023-08-16T05:19:38.809008Z",
                    "last_modified_time": "2023-08-16T05:19:38.809026Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2432,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssi",
                        "sv": "dans",
                        "en": "dance (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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/balettikoulu-anne-hirvonen/",
                        "sv": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/",
                        "en": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/"
                    },
                    "price": {
                        "fi": "16,80 € / 10 €",
                        "sv": "16,80 € / 10 €",
                        "en": "16,80 € / 10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 330629,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-12T13:15:03.117634Z",
                    "last_modified_time": "2025-03-12T13:15:03.117648Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760476.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/330629/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-12T13:15:03.099891Z",
            "last_modified_time": "2025-04-10T11:14:25.383696Z",
            "date_published": null,
            "start_time": "2025-05-10T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.",
                "sv": "Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.",
                "en": "The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year."
            },
            "name": {
                "fi": "Lumikki ja seitsemän kääpiötä – Balettikoulu Anne Hirvosen kevätnäytös",
                "sv": "Snövit och de sju dvärgarna",
                "en": "Snow White and the seven dwarfs – Ballet school Anne Hirvonen’s spring performance"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A48862D591F412DCA0BA344EFBEF7B63/Lumikki_ja_seitseman_kaapiota",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A48862D591F412DCA0BA344EFBEF7B63/Snovit_och_de_sju_dvargarna",
                "en": "http://www.malmitalo.fi/en/events/event/A48862D591F412DCA0BA344EFBEF7B63/Snow_White_and_the_seven_dwarfs"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.</p><p>Balettikoulu Anne Hirvonen on vuodesta 1997 toiminut balettikoulu. Balettikoulu antaa ammattitaitoista tanssitaiteen opetusta eri ikäisille ja tasoisille oppilaille. Opetusaineet ovat klassinen baletti ja lastentanssi.</p><p>Lue lisää toiminnasta:<br><u><a>https://www.balettikouluannehirvonen.com</a></u></p><p>Kesto: 1 t</p>",
                "sv": "<p>Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.</p><p>Balettikoulu Anne Hirvonen är en balettskola som varit verksam sedan 1997. Balettskolan erbjuder professionell undervisning i dans för elever i olika åldrar och på olika nivåer. Skolan undervisar i klassisk balett och barndans.</p><p>Längd: 1 h</p>",
                "en": "<p>The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year.</p><p>Ballet school Anne Hirvonen has been active since its establishment in 1997. The school offers professional-level dance instruction to dancers of different ages and skill levels. The school teaches classic ballet and children's dance.</p><p>Duration: 1 h</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64845/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64844",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:8740",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ala-Malmi",
                            "sv": "Nedre Malm"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Malmi",
                            "sv": "Malm"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:54.264692Z",
                "last_modified_time": "2025-03-27T09:09:27.443498Z",
                "custom_data": null,
                "email": "malmitalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00700",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 984,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.malmitalo.fi/",
                    "sv": "https://www.malmitalo.fi/sv/framsidan",
                    "en": "https://www.malmitalo.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "description": {
                    "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.",
                    "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.",
                    "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:32",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.496484Z",
                    "last_modified_time": "2024-02-06T13:19:13.818300Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 607,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:350",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.556582Z",
                    "last_modified_time": "2024-02-06T13:19:15.225361Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 336,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 990,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Malmitalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:755",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2024-05-30T11:10:09.697444Z",
                    "last_modified_time": "2024-05-30T11:10:09.697496Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 684,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunkiuudistusalueet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1278",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "tanssitaide",
                        "danskonst",
                        "tanssit",
                        "danser"
                    ],
                    "created_time": "2023-08-16T05:19:38.809008Z",
                    "last_modified_time": "2023-08-16T05:19:38.809026Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2432,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssi",
                        "sv": "dans",
                        "en": "dance (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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/balettikoulu-anne-hirvonen/",
                        "sv": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/",
                        "en": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/"
                    },
                    "price": {
                        "fi": "16,80 € / 10 €",
                        "sv": "16,80 € / 10 €",
                        "en": "16,80 € / 10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 330628,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-12T13:15:02.994675Z",
                    "last_modified_time": "2025-03-12T13:15:02.994697Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760475.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/330628/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-12T13:15:02.973101Z",
            "last_modified_time": "2025-04-10T11:14:25.314332Z",
            "date_published": null,
            "start_time": "2025-05-10T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.",
                "sv": "Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.",
                "en": "The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year."
            },
            "name": {
                "fi": "Lumikki ja seitsemän kääpiötä – Balettikoulu Anne Hirvosen kevätnäytös",
                "sv": "Snövit och de sju dvärgarna",
                "en": "Snow White and the seven dwarfs – Ballet school Anne Hirvonen’s spring performance"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F5178FF38221B7147B3054341866D779/Lumikki_ja_seitseman_kaapiota",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F5178FF38221B7147B3054341866D779/Snovit_och_de_sju_dvargarna",
                "en": "http://www.malmitalo.fi/en/events/event/F5178FF38221B7147B3054341866D779/Snow_White_and_the_seven_dwarfs"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.</p><p>Balettikoulu Anne Hirvonen on vuodesta 1997 toiminut balettikoulu. Balettikoulu antaa ammattitaitoista tanssitaiteen opetusta eri ikäisille ja tasoisille oppilaille. Opetusaineet ovat klassinen baletti ja lastentanssi.</p><p>Lue lisää toiminnasta:<br><u><a>https://www.balettikouluannehirvonen.com</a></u></p><p>Kesto: 1 t</p>",
                "sv": "<p>Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.</p><p>Balettikoulu Anne Hirvonen är en balettskola som varit verksam sedan 1997. Balettskolan erbjuder professionell undervisning i dans för elever i olika åldrar och på olika nivåer. Skolan undervisar i klassisk balett och barndans.</p><p>Längd: 1 h</p>",
                "en": "<p>The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year.</p><p>Ballet school Anne Hirvonen has been active since its establishment in 1997. The school offers professional-level dance instruction to dancers of different ages and skill levels. The school teaches classic ballet and children's dance.</p><p>Duration: 1 h</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64844/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65507",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 766,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:105",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.060968Z",
                    "last_modified_time": "2024-02-06T13:19:14.616316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1121,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lastentapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 772,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:51",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.725686Z",
                    "last_modified_time": "2024-02-06T13:19:14.175381Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 219,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:52",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.738883Z",
                    "last_modified_time": "2024-02-06T13:19:14.199532Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 511,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:669",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.230765Z",
                    "last_modified_time": "2024-02-06T13:19:17.537912Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 275,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut kulttuuritapahtumat (monitaide)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 966,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p22193",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kokeellinen sirkus",
                        "uusi sirkus",
                        "experimentell cirkus"
                    ],
                    "created_time": "2023-08-16T05:10:15.581015Z",
                    "last_modified_time": "2023-08-16T05:10:15.581042Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nykysirkus",
                        "sv": "nycirkus",
                        "en": "contemporary circus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39492",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "LAN-events",
                        "local area network parties",
                        "LAN-tapahtumat",
                        "lanit",
                        "verkkopelitapahtumat",
                        "LAN-evenemang"
                    ],
                    "created_time": "2023-08-16T05:11:48.242998Z",
                    "last_modified_time": "2023-08-16T05:11:48.243015Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 557,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 932,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10541,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 221072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-13T12:14:55.766077Z",
                    "last_modified_time": "2025-02-13T12:14:55.766102Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763435.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221072/?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-13T12:14:55.728069Z",
            "last_modified_time": "2025-04-10T11:14:23.443181Z",
            "date_published": null,
            "start_time": "2025-04-30T13:00:00Z",
            "end_time": "2025-04-30T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Jos kaipaat väriä, vauhtia ja sirkusta vappuun, niin astu sisään Race Horse Companyn sirkustelttaan!",
                "sv": "Om du letar efter färg, fart och cirkus för ditt valborgsfirande, kliv då in i Race Horse Companys cirkustält!",
                "en": "If you are looking for colour, speed and a circus on May Day, step inside Race Horse Company’s circus tent!"
            },
            "name": {
                "fi": "Race Horse Companyn vauhdikas sirkusvappu",
                "sv": "The Race Horse Companys fartfyllda valborgscirkus",
                "en": "Race Horse Company’s action-packed circus May Day"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/32A4A2DEAE1F0229B064310C8778A63D/Race_Horse_Companyn_vauhdikas_sirkusvappu",
                "sv": "http://www.stoa.fi/sv/evenemang/event/32A4A2DEAE1F0229B064310C8778A63D/The_Race_Horse_Companys_fartfyllda_valborgscirkus",
                "en": "http://www.stoa.fi/en/events/event/32A4A2DEAE1F0229B064310C8778A63D/Race_Horse_Company_s_action-packed_circus_May_Day"
            },
            "provider": null,
            "description": {
                "fi": "<p>Jos kaipaat väriä, vauhtia ja sirkusta vappuun, niin astu sisään Race Horse Companyn sirkustelttaan!</p><p>Tunnelma on taatusti teltan katossa, kun nämä hurjapäiset sirkustaiteilijat valtaavat Stoan teatterisalin.</p><p>Tule yksin, koko perheen voimin tai muulla vappuisalla porukalla hakemaan yllätyksiä täynnä oleva, kuplivan hyväntuulinen lähtö vappuun.</p><p><b>Lisäksi työpajoja</b></p><p><b>Vappu kukkii!</b> <br>Pajassa syntyy muhkeana, värikkäänä, ihan hupsuna tupsuna terälehtiään avaavia silkkipaperikukkia. <br>Ohjaaja: Jenni Vilander</p><p><b>Jättisaippuakuplia</b> <br>Stoan aukiolla pääset itse kokeilemaan jättisaippuakuplien tekemistä. Ohjaaja: Enrique Salas</p><p>Kesto: 2 h non-stop, viihdy sen aikaa kun jaksat</p><p>Vapaa pääsy</p>",
                "sv": "<p>Om du letar efter färg, fart och cirkus för ditt valborgsfirande, kliv då in i Race Horse Companys cirkustält!</p><p>Stämningen kommer garanterat att nå ända upp till taket när de här våghalsiga cirkusartisterna tar över Stoas teatersal.</p><p>Kom ensam, med hela familjen eller med en grupp för en överraskningsfylld, sprudlande och rolig start på julhelgen.</p><p>Längd: 2 h nonstop, stanna så länge du vill</p><p>Fritt inträde</p>",
                "en": "<p>If you are looking for colour, speed and a circus on May Day, step inside Race Horse Company’s circus tent!</p><p>The atmosphere is guaranteed to be through the roof when these ferocious circus artists take over Stoa’s theatre.</p><p>Come alone, with the whole family or with another May Day group to start your May Day in a surprise-filled, bubbly and feel-good manner.</p><p>Duration: 2 h nonstop, enjoy for as long as you can</p><p>Free admission</p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65507/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65304",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7260",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Keski-Vuosaari",
                            "sv": "Mellersta Nordsjö"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vuosaari",
                            "sv": "Nordsjö"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.880408Z",
                "last_modified_time": "2025-03-27T09:09:26.837979Z",
                "custom_data": null,
                "email": "vuotalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00980",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 591,
                "image": 414657,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.143385,
                        60.208565
                    ]
                },
                "name": {
                    "fi": "Vuotalo",
                    "sv": "Nordhuset",
                    "en": "Vuosaari House"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.vuotalo.fi/",
                    "sv": "https://www.vuotalo.fi/sv/framsidan",
                    "en": "https://www.vuotalo.fi/en/frontpage"
                },
                "telephone": {
                    "fi": "+358 9 310 85983"
                },
                "street_address": {
                    "fi": "Mosaiikkitori 2",
                    "sv": "Mosaiktorget 2",
                    "en": "Mosaiikkitori 2"
                },
                "description": {
                    "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin."
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:105",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.060968Z",
                    "last_modified_time": "2024-02-06T13:19:14.616316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1121,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lastentapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 594,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 526,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:45",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.630975Z",
                    "last_modified_time": "2024-02-06T13:19:14.040714Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vuotalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4776,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3673,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3853,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:758",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2025-01-16T11:10:18.586374Z",
                    "last_modified_time": "2025-01-16T11:10:18.586416Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 135,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "valtuusto150"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1255,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 10541,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p6529",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "noh-teatteri",
                        "noo-teatteri",
                        "noh theater"
                    ],
                    "created_time": "2023-08-16T05:16:17.404853Z",
                    "last_modified_time": "2023-08-16T05:16:17.404870Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 376,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "no-teatteri",
                        "sv": "no-teater",
                        "en": "noh theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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/helsingin-kulttuurikeskus-vuotalo/molli-ja-maan-aeaeri-vuotalo-3790812/",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/molli-ja-maan-aeaeri-vuotalo-3790812/",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/molli-ja-maan-aeaeri-vuotalo-3790812/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153509,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T15:13:44.057220Z",
                    "last_modified_time": "2024-12-18T15:13:44.057240Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759570.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153509/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-12-18T15:13:44.025530Z",
            "last_modified_time": "2025-04-10T11:14:20.579298Z",
            "date_published": null,
            "start_time": "2025-04-12T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "”Tästä se alkaa, matka maan ääreen.”",
                "sv": "”Här börjar det, en resa till jordens ände.”",
                "en": "“Here it begins, the journey to the ends of the earth.”"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Molli ja maan ääri",
                "sv": "SLUTSÅLD Molli ja maan ääri",
                "en": "SOLD OUT Molli ja maan ääri"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/956F8AD11575D33DD5349EC9D3017B71/LOPPUUNMYYTY_Molli_ja_maan_aari",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/956F8AD11575D33DD5349EC9D3017B71/SLUTSALD_Molli_ja_maan_aari",
                "en": "http://www.vuotalo.fi/en/events/event/956F8AD11575D33DD5349EC9D3017B71/SOLD_OUT_Molli_ja_maan_aari"
            },
            "provider": null,
            "description": {
                "fi": "<p>”Tästä se alkaa, matka maan ääreen.”</p><p>Viime aikoina Molli on unohtunut katsomaan kotinsa kiviaidan takana siintävää metsää. Olo on kumma: varpaissa kutittelee ja häntä viuhtoo villisti. Mollilla on matkakuume!</p><p>Katri Kirkkopellon rakastettuun lastenkirjaan pohjautuva Molli ja maan ääri on lempeä ja hykerryttävän hauska lastenteatteriesitys ystävyydestä, koti-ikävästä ja rohkeudesta astua maailmaan.</p><p>Teatteri Konnan ja Turun kaupunginteatterin yhteistyö Molli ja maan ääri on samojen tekijöiden kädenjälkeä kuin yleisönsä monikertoihin ihastuttaneet Molli (2015), Molli ja kumma (2018) sekä Mollistavia mietteitä (2021).</p><p>Suositusikä: 5+ (Ikähaarukka n. 3–10-vuotiaat.)<br>Kesto: n. 40 min.<br>Esitysoikeuksia valvoo Katri Kirkkopelto.</p><p>Molli ja maan ääri -esityksen ensi-ilta on Turun kaupunginteatterin Sopukka-näyttämöllä 22.1.2025.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-19738808/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>”Här börjar det, en resa till jordens ände.”</p><p>På sistone har Molli glömt sig kvar att beundra skogen som skymtar bakom stenmuren vid hennes hem. Det känns märkligt: det kittlar om tårna och svansen viftar vilt. Molli har resfeber!</p><p>Molli ja maan ääri som baserar sig på den älskade barnboken av Katri Kirkkopelto är en snäll och jätterolig barnteaterföreställning om vänskap, hemlängtan och mod att ta sig ute på världen.<br>Teatteri Konnas och Åbo stadsteaters samarbete Molli ja maan ääri kommer från samma arbetsgrupp som Molli (2015), Molli ja kumma (2018) samt Mollistavia mietteitä (2021) som förtjust publiken flera gånger.</p><p>Föreställningen Molli ja maan ääri har premiär på scenen Sopukka på Åbo stadsteater 22.1.2025.<br>Rekommenderad ålder: 5+ (Åldersintervall cirka 3–10 år.)<br>Längd: cirka 40 min.</p><p>Rättigheterna övervakas av Katri Kirkkopelto</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-19738808/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>“Here it begins, the journey to the ends of the earth.”</p><p>Recently, Molli has found himself looking at the forest behind the stone fence surrounding his home. It is the strangest feeling: itchy toes and a wildly wagging tail. Molli is itching to travel!</p><p>Based on Katri Kirkkopelto’s beloved children’s book, Molli ja maan ääri (Molli and the ends of the Earth) is a gentle and hilarious children’s theatre performance about friendship, being homesick and the courage to see the world.</p><p>A collaboration between Teatteri Konna and Turku City Theatre, Molli ja maan ääri is made by the same creators as the audience’s favourites Molli (2015), Molli ja kumma (2018) and Mollistavia mietteitä (2021).</p><p>The premiere of Molli ja maan ääri will take place at the Sopukka stage at Turku City Theatre on 22 January 2025.<br>Recommended age: 5+ (Age range approx. 3–10 years.)<br>Duration: approx. 40 min</p><p>Performance rights are managed by Katri Kirkkopelto</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-19738808/?affiliate=FSF\">HERE</a></u></p>"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65304/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}