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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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 normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). 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=241
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 32784,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=242",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=240"
    },
    "data": [
        {
            "id": "espoo_le:agndu5eun4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1939,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "description": null,
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66by",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.052436Z",
                    "last_modified_time": "2023-12-13T11:20:12.052454Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1532,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Matinkylä",
                        "sv": "Mattby",
                        "en": "Matinkylä"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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": 9506,
                    "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: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": 2558,
                    "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:p2630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "subject teaching",
                        "aineenopetus",
                        "aineopetus",
                        "ämnesundervisning",
                        "instruction",
                        "teaching",
                        "opettaminen"
                    ],
                    "created_time": "2023-08-16T05:19:46.234579Z",
                    "last_modified_time": "2023-08-16T05:19:46.234597Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1529,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opetus",
                        "sv": "undervisning",
                        "en": "teaching and instruction"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": 7188,
                    "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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5evfy/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 150370,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-15T10:22:13.113892Z",
                    "last_modified_time": "2024-03-15T10:22:13.113919Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/caleb-george-pH88tHG-1yw-unsplash.jpg",
                    "name": "",
                    "cropping": "520,0,2603,2082",
                    "photographer_name": "",
                    "alt_text": "soittimia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-31T13:08:01.423193Z",
            "last_modified_time": "2025-11-03T14:03:16.108744Z",
            "date_published": null,
            "start_time": "2025-11-03T15:30:00Z",
            "end_time": "2025-11-03T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Kurssi on suunnattu nuorille. Osallistuminen on maksutonta.",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule mukaan Ison Omenan kirjaston soittohuoneessa järjestettävään bändikurssiin! Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Pääset soittamaan rumpuja, bassoa, kitaraa ja pianoa. Tarkoituksena on harjoitella perusteet kaikista soittimista ja soittaa yhdessä nuorten toivomia kappaleita. Osallistuminen on maksutonta. Kurssille mahtuu kerralla 8 osallistujaa. Ei ennakkoilmoittautumista.</p><p>Kurssi järjestetään maanantaisin neljä kertaa</p><p><strong>3.11 klo 17.30-18.30</strong></p><p><strong>10.11 klo 17-18</strong></p><p><strong>17.11 klo 17-18</strong></p><p><strong>24.11 klo 17-18</strong></p><p><br></p><p>#musiikki #kitara #rummut #piano #bändi #kurssi</p><p>Kurssin vetäjänä toimii musiikkipedagogi Lauri Iljin</p><p>​lauri.iljin(at)espoo.fi</p>",
                "sv": "<p>Bandkurs på Iso Omena bibliotek! Under kursen kommer du att få spela och öva på bandinstrument. Kursen riktar sig till 12-20-åringar. Deltagandet är kostnadsfritt.</p><p><br></p><p>Kursen är fyra gånger på måndagar:</p><p><strong>3.11 kl 17.30-18.30</strong></p><p><strong>10.11 kl 17-18</strong></p><p><strong>17.11 kl 17-18</strong></p><p><strong>24.11 kl 17-18</strong></p>",
                "en": "<p>Band course for young people at the Iso Omena Library! During the course you will be able to play and practice band instruments. The course is aimed for 12-20 year olds. Participation is free of charge.</p><p>The course is four times on Mondays:</p><p><strong>3.11 at 17.30-18.30</strong></p><p><strong>10.11 at 17-18</strong></p><p><strong>17.11 at 17-18</strong></p><p><strong>24.11 at 17-18</strong></p>"
            },
            "name": {
                "fi": "Bändisoittimia nuorille",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "soittohuone",
                "sv": "musicrum",
                "en": "music room"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5eun4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67234",
            "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": 1362,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "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"
                },
                "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."
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 1350,
                    "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:50",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.712175Z",
                    "last_modified_time": "2024-02-06T13:19:14.155029Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 382,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Näyttelyt"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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": 6000,
                    "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": 4853,
                    "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": 5058,
                    "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": 1117,
                    "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: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": 338,
                    "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491268,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-03T12:12:00.010915Z",
                    "last_modified_time": "2025-11-03T12:12:00.010927Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780046.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491268/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-03T12:11:59.909738Z",
            "last_modified_time": "2025-11-03T12:12:00.120530Z",
            "date_published": null,
            "start_time": "2025-11-06",
            "end_time": "2025-11-29",
            "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,
            "short_description": {
                "fi": "Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025",
                "sv": "Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025",
                "en": "Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01EC2DEF51004ECD5537475B67122A31/Annamari_Eskola_Kierto_ikebanataidetta_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/01EC2DEF51004ECD5537475B67122A31/Annamari_Eskola_Kierto_ikebanataidetta_",
                "en": "http://www.malmitalo.fi/en/events/event/01EC2DEF51004ECD5537475B67122A31/Annamari_Eskola_Kierto_ikebanataidetta_"
            },
            "description": {
                "fi": "<p>Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025</p><p>Kasvien elämänkierto, kiertyvät muodot ja materiaalien kierrättäminen ovat Annamari Eskolan installaatioiden teemoja. Vuodenkierrossa marraskuu on pimeintä aikaa, mutta kuolleissa kasveissa elämä on läsnä monella tasolla. <br>Annamari Eskola on opiskellut ikebanaa, japanilaista kukkien asettelun taidetta Sogetsu-koulukunnan oppien mukaan vuodesta 2012 asti. Moderni Sogetsu-tyyli on ottanut vaikutteita länsimaisesta taiteesta ja yhdistelee kasveja muihin elementteihin. Eskola käyttää taiteessaan kotiseutunsa Koillis-Helsingin kasvimateriaaleja. Niissä on hyödynnetty puutarhajätteitä sekä vainottuja vieraslajeja kuten jättitatarta ja japanintatarta. Joutomaiden romulöydökset ja elävät kukat yhdistyvät veistoksiksi, jotka näyttelyn päätyttyä palaavat materiaaleina kiertoon. <br> <br>Näyttelyn avajaiset järjestetään  ke 5.11. klo 17 alkaen.<br>  <br>Vapaa pääsy!</p>",
                "sv": "<p>Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025</p>",
                "en": "<p>Annamari Eskolan ikebana-taidetta Malmitalon galleriassa 6.-29.11.2025</p>"
            },
            "name": {
                "fi": "Annamari Eskola: Kierto – ikebanataidetta",
                "sv": "Annamari Eskola: Kierto – ikebanataidetta",
                "en": "Annamari Eskola: Kierto – ikebanataidetta"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67234/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:e76857f9-9d1b-4eb7-b047-02e51af29cc2",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20547",
                "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-15T08:16:11.157010Z",
                "last_modified_time": "2024-02-06T13:10:41.442228Z",
                "custom_data": null,
                "email": "myynti@paasitorni.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 2,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947422,
                        60.178623
                    ]
                },
                "telephone": {
                    "fi": "+358 9 708 9611"
                },
                "street_address": {
                    "fi": "Paasivuorenkatu 5 A",
                    "sv": "Paasivuorigatan 5 A",
                    "en": "Paasivuorenkatu 5 A"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.paasitorni.fi",
                    "sv": "https://www.paasitorni.fi/en/",
                    "en": "https://www.paasitorni.fi/en/"
                },
                "description": {
                    "fi": "Helsinki Congress Paasitorni on 1900-luvun alkuvuosikymmeninä rakennettu, huolella entisöity ja uudisosilla täydentynyt kokous- ja kongressikeskus. Paasitornin täyden palvelun kokonaisuus tarjoaa inspiroivat ja mieliinpainuvat puitteet kokouksille, kongresseille, illallisille ja juhlatilaisuuksille - majoituksineen. Talossa on lähes 30 toimivaa, omailmeistä ja muunneltavaa tilaa 8-800 hengelle. Paasitornin toiminta on ISO 9001 -laatu- ja ISO 14001 -ympäristösertifioitua.",
                    "sv": "Det historiska Helsinki Congress Paasitorni är en vackert restaurerad granitborg. Det finns ett trettiotal konferensrum för 8-800 personer med modern konferensteknik. Paasitorni fick kvalitetscertifikatet ISO 9001 redan hösten 1999 och ISO 14001 år 2012.",
                    "en": "Helsinki Congress Paasitorni operates in a more than 100-year-old building which has been skillfully restored and extended. Full-service venue provides an inspirational and memorable setting for conferences, congresses, dinners and festivities - with accommodation. The building hosts almost 30 functional and distinctive rooms from 8 to 800 people. Helsinki Congress Paasitorni is ISO 9001 quality and ISO 14001 environmentally certified."
                },
                "name": {
                    "fi": "Helsinki Congress Paasitorni",
                    "sv": "Helsinki Congress Paasitorni",
                    "en": "Helsinki Congress Paasitorni"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20547/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 60,
                    "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": 1714,
                    "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: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": 9506,
                    "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": 56,
                    "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: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": 55,
                    "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: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": 430,
                    "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": 396,
                    "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": 197,
                    "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: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": 78,
                    "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": 55,
                    "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: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": 55,
                    "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": 57,
                    "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: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": 55,
                    "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: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": 57,
                    "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: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": 55,
                    "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": 55,
                    "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": 55,
                    "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": 55,
                    "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": 55,
                    "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: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": 56,
                    "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": 55,
                    "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: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": 3818,
                    "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": 338,
                    "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": 197,
                    "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": 55,
                    "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: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": 350,
                    "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": 55,
                    "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": 55,
                    "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": 70,
                    "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": 62,
                    "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": 55,
                    "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: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": 56,
                    "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: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": 515,
                    "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: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": 56,
                    "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": 55,
                    "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": 55,
                    "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: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": 73,
                    "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: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": 55,
                    "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": 55,
                    "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": 679,
                    "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: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": 56,
                    "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": 86,
                    "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": 55,
                    "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": 55,
                    "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": 179,
                    "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: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": 95,
                    "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: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": 163,
                    "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: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": 55,
                    "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": 158,
                    "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": 58,
                    "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": 55,
                    "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": 55,
                    "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": 59,
                    "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: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": 175,
                    "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": 92,
                    "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: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": 58,
                    "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": 63,
                    "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": 4029,
                    "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",
                        "videoinspelningar",
                        "videoupptagningar",
                        "video recordings"
                    ],
                    "created_time": "2023-08-16T05:16:24.119002Z",
                    "last_modified_time": "2025-11-18T04:41:20.479404Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 55,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "videot (teokset)",
                        "sv": "videor (verk)",
                        "en": "videos (works)"
                    },
                    "@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": 55,
                    "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": 72,
                    "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": 56,
                    "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": 55,
                    "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": 62,
                    "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)",
                        "motionsbeteende"
                    ],
                    "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": 30442,
                    "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": 55,
                    "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": 126,
                    "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": 56,
                    "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": 55,
                    "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:p9778",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "samhälle (fenomen)"
                    ],
                    "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": 55,
                    "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634",
                        "en": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634",
                        "ru": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634",
                        "zh_hans": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634",
                        "ar": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634"
                    },
                    "description": {
                        "fi": "Hintatietojen lisätiedot - Suomeksi",
                        "en": "Hintatietojen lisätiedot",
                        "ru": "Hintatietojen lisätiedot",
                        "zh_hans": "Hintatietojen lisätiedot",
                        "ar": "Hintatietojen lisätiedot"
                    },
                    "price": {
                        "fi": "5",
                        "en": "4",
                        "ru": "4",
                        "zh_hans": "4",
                        "ar": "4"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1491262,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-31T11:39:30.803576Z",
                    "last_modified_time": "2025-10-31T11:39:30.803600Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80",
                    "name": "Kuvateksti",
                    "cropping": "",
                    "photographer_name": "Kuvaajan nimi",
                    "alt_text": "Kuvan Alt-teksti",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491262/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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:p9778/?format=api"
                }
            ],
            "created_time": "2025-11-03T11:20:48.709607Z",
            "last_modified_time": "2025-11-03T11:42:21.540287Z",
            "date_published": "2025-10-31T08:03:24Z",
            "start_time": "2025-12-24T06:00:00Z",
            "end_time": "2025-12-24T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 15,
            "audience_max_age": 55,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 50,
            "minimum_attendee_capacity": 1,
            "enrolment_start_time": "2025-10-31T08:00:00+02:00",
            "enrolment_end_time": "2025-12-22T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "31.10.2025 - TLDG\nKielivalinnan muuttaminen ei valu Linked Eventsiin",
                "en": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2",
                "ru": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2",
                "zh_hans": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2",
                "ar": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2"
            },
            "info_url": {
                "en": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634",
                "ru": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634",
                "zh_hans": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634",
                "ar": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634"
            },
            "description": {
                "fi": "<div><p>31.10.2025 - TLDG<br>Kielivalinnan muuttaminen ei valu Linked Eventsiin<br>- SWE Otsikko ja kuvaukset lisätty.<br>- SWE Otsikko ja kuvaukset poistettu.</p></div>",
                "en": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>",
                "ru": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>",
                "zh_hans": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>",
                "ar": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>"
            },
            "name": {
                "fi": "Testitesti sv",
                "en": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2",
                "ru": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2",
                "zh_hans": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2",
                "ar": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Tapahtumapaikan lisätiedot - Suomi",
                "en": "Tapahtumapaikan lisätiedot - Englanti",
                "ru": "Tapahtumapaikan lisätiedot - Venäjä",
                "zh_hans": "Tapahtumapaikan lisätiedot - Kiina",
                "ar": "Tapahtumapaikan lisätiedot arabiaksi"
            },
            "provider": {
                "fi": "Digia",
                "en": "Digia",
                "ru": "Digia",
                "zh_hans": "Digia",
                "ar": "Digia"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:e76857f9-9d1b-4eb7-b047-02e51af29cc2/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66262",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7255",
                "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:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kannelmäki",
                            "sv": "Gamlas"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.976796Z",
                "last_modified_time": "2025-03-27T09:09:26.704708Z",
                "custom_data": null,
                "email": "kanneltalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00420",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 562,
                "image": 414654,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.876202,
                        60.23885
                    ]
                },
                "telephone": {
                    "fi": "+358 40 822 8918"
                },
                "street_address": {
                    "fi": "Klaneettitie 5",
                    "sv": "Klarinettvägen 5",
                    "en": "Klaneettitie 5"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.kanneltalo.fi/",
                    "sv": "https://www.kanneltalo.fi/sv/framsidan",
                    "en": "https://www.kanneltalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.",
                    "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.",
                    "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre."
                },
                "name": {
                    "fi": "Kanneltalo",
                    "sv": "Gamlasgården",
                    "en": "Cultural Centre Kanneltalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:41",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.583027Z",
                    "last_modified_time": "2024-02-06T13:19:13.977719Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 557,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kanneltalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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": 266,
                    "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: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": 6000,
                    "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": 4853,
                    "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": 5058,
                    "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": 1117,
                    "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: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": 197,
                    "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3896720",
                        "sv": "https://www.lippu.fi/eventseries/name-3896720",
                        "en": "https://www.lippu.fi/eventseries/name-3896720"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 20€",
                        "sv": "15 € / 20€",
                        "en": "15 € / 20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155819,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T12:14:01.655567Z",
                    "last_modified_time": "2025-07-01T12:14:01.655582Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773104.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155819/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T12:14:01.545206Z",
            "last_modified_time": "2025-11-03T11:12:25.042198Z",
            "date_published": null,
            "start_time": "2025-11-22T13: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,
            "short_description": {
                "fi": "Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.",
                "sv": "Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt",
                "en": "The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8F23B416E41C081E098C2C201E7DFB77/Red_Nose_Company_Kuolematon_Punahilkka_satu_aikuisille",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8F23B416E41C081E098C2C201E7DFB77/Red_Nose_Company_Kuolematon_Punahilkka_en_saga_for_vuxna",
                "en": "http://www.kanneltalo.fi/en/events/event/8F23B416E41C081E098C2C201E7DFB77/Red_Nose_Company_The_Immortal_Little_Red_Riding_Hood_A_Fairy_Tale_for_Grown-Ups"
            },
            "description": {
                "fi": "<p>Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.</p><p>Punahilkan tarinan syntymän aikoihin satuja kerrottiin aikuisten viihdykkeeksi. Nyt klovnikaksikko, Babylon & Ré (Minna Puolanto ja Hanna Seppä), tarjoilee oman tulkintansa tästä klassikosta jälleen aikuisille. Tässä versiossa ei tarvitse sensuroida tai annostella hurjimpiakaan sävyjä ja tulkintoja, joita satuun on eri aikoina liitetty. Teoksen ohjaajana toimii Niina Sillanpää. <br>  <br>Punahilkka on siirtynyt viattomasta lapsuudesta aikuisuuteen. Mitä hänelle kuuluu? Mitä yksin metsään lähteminen hänelle tässä kohtaa elämää tarkoittaa? Klovnit päätyvät pohtimaan sadun symboliikkaa ja filosofoimaan elämän mysteeristä, menopaussista ja sankarillisuuden vaateesta. Susikin asuu ja vaanii heidän sisällään. Kuinka kestää pahuus itsessä? Mummon piirakat ovat lapsuuden muistoissa makoisia, mutta sukupolvien läpi kulkeva ankara kasvatus on joskus tihkunut myös omien lasten osaksi. Klovneissa nousevat pintaan läpi aikojen virtaavat tarinat, tottumukset, tajut ja tunteet  – niin vihat, onnet kuin surutkin.  <br> <br>Teoksessa piirtyvät esiin sadun lukemattomat eri versiot ja arkkityyppiset teemat, kuten hyvän ja pahan taistelu. Klovnit kertovat, säikäyttävät, opettavat ja viihdyttävät pelkäämättä tarttua sadun tummempiinkaan juonteisiin. Susi ja Punahilkka kohtaavat toisensa monella tasolla. Esitys pohtii toisaalta sitä, miksi suden päällä on kulttuurissamme aina raskas pahuuden painolasti? Voisiko ollakin niin, että Punahilkka edustaa sadussa pahuutta? Ihminen vie tilaa muilta lajeilta, eikä taida lopettaa ennen kuin on hävittänyt myös itsensä.  <br> <br>Kaiken lisäksi klovnit tuntevat luissaan ja ytimissään, kuinka sadunkertojien ahdinko kasvaa tässä ajassamme. Vaikka he joutuvatkin hautaamaan oman tehtävänsä, nuoruutensa, kauneutensa, säästötilinsä, kaikki unelmansa ja muutaman pahan tapansa, Punahilkka ei kuole koskaan. <br>  <br>Työryhmä on tehnyt aiemmin Punahilkasta esitykset lapsille (Punahilkan paluu, Red Nose Company 2023) sekä nuorille (Punahilkka K13, Red Nose Company 2024). Kuolematon Punahilkka on työryhmän kolmas tulkinta sadusta.  <br> <br>HUUDEILLA<br> Kanneltalon esitykset ovat osa Helsingin kaupungin rahoittamaa Huudeilla-aluehanketta. Kannelmäen ja Malminkartanon alueiden asukkaat ovat päässeet seuraamaan teoksen valmistumista avoimissa harjoituksissa prosessin eri vaiheissa. Mukana olleille tarjotaan kutsuliput Kanneltalon esityksiin. <br>  <br><b>TYÖRYHMÄ</b> <br> Näyttämöllä: Minna Puolanto ja Hanna Seppä <br> Ohjaus: Niina Sillanpää <br> Käsikirjoitus: Työryhmä <br> Valo ja äänisuunnittelu: Jere Kolehmainen <br> Pukusuunnittelu: Noora Salmi ja työryhmä <br> Valokuvat: Ilari Kallinen <br> Tuotanto: Red Nose Company <br> Yhteistuotanto: Red Nose Company, Kanneltalo, Huudeilla-aluehanke <br>  <br>Kesto: 1,5 h (ei väliaikaa) <br>Ikäsuositus: aikuisille, K14</p>",
                "sv": "<p>Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>Föreställningen vänder helt på sagan och öppnar den från alla håll. Clownerna tar sig an Rödluvans betydelser, barlaster och folkloristiska skikt. De leder oss, skrämmer, undervisar och naturligtvis underhåller de oss utan rädsla för att ta tag i de mörkare sakerna. Bra och ont bor i oss alla. Vågar vi titta på våra mörka punkter? Ser vi även ljuset bredvid? Clownerna badar åskådarna i skratt och gråt. De känner i märg och ben hur sagoberättarnas trångmål ökar i vår tid som är kärv för kulturen. Även om clownerna är tvungna att begrava vissa drömmar och kanske några dåliga vanor, kommer Rödluvan aldrig att dö.</p><p>Föreställningen behandlar sagornas arketypiska teman, oräkneliga olika versioner av berättelsen och traditioner för framförandet. Arbetsgruppen har tidigare lagt fram föreställningen Rödluvan för barn (Punahilkan paluu, Red Nose Company 2023) och för unga (Punahilkka K13, Red Nose Company 2024). I föreställningen för vuxna kan skaparna utnyttja allt material de samlat in om Rödluvan. Nu behöver man inte censurera eller portionera ut ens de mest raka nyanser och tolkningar som under olika tider har fogats till sagan.</p><p><b>HUUDEILLA</b><br>Föreställningarna är en del av det av Helsingfors stad finansierade regionprojektet Huudeilla. Invånarna i Gamlas och Malmgård får delta i delaktiggörande öppna övningar i olika faser av produktionen av verket. I manuset beaktas observationer och iakttagelser som samlats in av åskådarna. De som deltagit bjuds på biljetter till Gamlasgårdens föreställningar.<br> <br>Längd 1,5 h (ingen paus)<br>Åldersrekommendation: 14+</p><p><b>ARBETSGRUPP</b><br>På scenen Minna Puolanto och Hanna Seppä <br>Regi Niina Sillanpää<br>Manus: arbetsgrupp<br>Ljus- och ljudplanering Jere Kolehmainen<br>Kostymering Noora Salmi<br>Fotografier och grafisk uppsyn Ilari Kallinen<br>Produktion Red Nose Company <br>Samproduktion Red Nose Company, Gamlasgården, områdesprojektet Huudeilla</p>",
                "en": "<p>The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>The show turns the fairy tale inside out, examining it from every angle. The clowns dissect the meanings, historic burdens and folkloric layers of Little Red Riding Hood. They guide, startle, enlighten and, of course, entertain, fearlessly diving into even the darkest threads of the tale. Good and evil live in all of us. Do we dare look into our own shadowy corners? And if we do, will we also see light beside them? The clowns will bathe the audience in laughter and tears. They will feel the growing despair of storytellers in a time when culture is being hollowed out. Even though the clowns may have to bury some of their dreams and perhaps a few bad habits, Little Red Riding Hood never dies.</p><p>This performance explores the archetypal themes of the tale, its countless variations and the traditions of performing stories. The team has previously created Little Red Riding Hood performances for children (The Return of Little Red Riding Hood, Red Nose Company 2023) and teens (Little Red Riding Hood, Red Nose Company 2024). Now, in this version for adults, they bring together all the material they have ever gathered about the story. No need to censor or dilute even the boldest shades or interpretations that have been associated with the tale through the ages.</p><p><b>IN THE HOOD</b><br>The performances are part of the Huudeilla (\"In the Hood\") neighbourhood project, funded by the City of Helsinki. Residents of the Kannelmäki and Malminkartano areas are invited to take part in open, participatory rehearsals during various stages of the production process. Feedback and observations collected from the participants will be incorporated into the script. Those involved in the workshops will receive complimentary tickets to performances at Kanneltalo.<br> <br>Duration: 1.5 hours (no intermission)<br>Recommended age: 14+</p><p><b>CREATIVE TEAM</b><br>On stage: Minna Puolanto and Hanna Seppä <br>Directed by: Niina Sillanpää<br>Script: Creative team<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Photography and visual design: Ilari Kallinen<br>Production: Red Nose Company <br>Co-production: Red Nose Company, Kanneltalo, Huudeilla Neighbourhood Project</p>"
            },
            "name": {
                "fi": "Red Nose Company: Kuolematon Punahilkka – satu aikuisille",
                "sv": "Red Nose Company: Kuolematon Punahilkka – en saga för vuxna",
                "en": "Red Nose Company: The Immortal Little Red Riding Hood – A Fairy Tale for Grown-Ups"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66262/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66261",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7255",
                "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:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kannelmäki",
                            "sv": "Gamlas"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.976796Z",
                "last_modified_time": "2025-03-27T09:09:26.704708Z",
                "custom_data": null,
                "email": "kanneltalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00420",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 562,
                "image": 414654,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.876202,
                        60.23885
                    ]
                },
                "telephone": {
                    "fi": "+358 40 822 8918"
                },
                "street_address": {
                    "fi": "Klaneettitie 5",
                    "sv": "Klarinettvägen 5",
                    "en": "Klaneettitie 5"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "http://www.kanneltalo.fi/",
                    "sv": "https://www.kanneltalo.fi/sv/framsidan",
                    "en": "https://www.kanneltalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.",
                    "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.",
                    "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre."
                },
                "name": {
                    "fi": "Kanneltalo",
                    "sv": "Gamlasgården",
                    "en": "Cultural Centre Kanneltalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:41",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.583027Z",
                    "last_modified_time": "2024-02-06T13:19:13.977719Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 557,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kanneltalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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": 266,
                    "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: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": 6000,
                    "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": 4853,
                    "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": 5058,
                    "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": 1117,
                    "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: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": 197,
                    "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3896720",
                        "sv": "https://www.lippu.fi/eventseries/name-3896720",
                        "en": "https://www.lippu.fi/eventseries/name-3896720"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 20€",
                        "sv": "15 € / 20€",
                        "en": "15 € / 20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1155818,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T12:14:01.232482Z",
                    "last_modified_time": "2025-07-01T12:14:01.232497Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773102.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1155818/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T12:14:01.103165Z",
            "last_modified_time": "2025-11-03T11:12:24.709301Z",
            "date_published": null,
            "start_time": "2025-11-21T16: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,
            "short_description": {
                "fi": "Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.",
                "sv": "Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt",
                "en": "The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FFB4C3A600A33C41C233CBD1F8F9A662/Red_Nose_Company_Kuolematon_Punahilkka_satu_aikuisille",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FFB4C3A600A33C41C233CBD1F8F9A662/Red_Nose_Company_Kuolematon_Punahilkka_en_saga_for_vuxna",
                "en": "http://www.kanneltalo.fi/en/events/event/FFB4C3A600A33C41C233CBD1F8F9A662/Red_Nose_Company_The_Immortal_Little_Red_Riding_Hood_A_Fairy_Tale_for_Grown-Ups"
            },
            "description": {
                "fi": "<p>Kuolematon Punahilkka - satu aikuisille on syväsukellus sukupolvien ketjussa kulkevaan Punahilkan tarinaan ja sisällämme vaanivaan suteen.</p><p>Punahilkan tarinan syntymän aikoihin satuja kerrottiin aikuisten viihdykkeeksi. Nyt klovnikaksikko, Babylon & Ré (Minna Puolanto ja Hanna Seppä), tarjoilee oman tulkintansa tästä klassikosta jälleen aikuisille. Tässä versiossa ei tarvitse sensuroida tai annostella hurjimpiakaan sävyjä ja tulkintoja, joita satuun on eri aikoina liitetty. Teoksen ohjaajana toimii Niina Sillanpää. <br>  <br>Punahilkka on siirtynyt viattomasta lapsuudesta aikuisuuteen. Mitä hänelle kuuluu? Mitä yksin metsään lähteminen hänelle tässä kohtaa elämää tarkoittaa? Klovnit päätyvät pohtimaan sadun symboliikkaa ja filosofoimaan elämän mysteeristä, menopaussista ja sankarillisuuden vaateesta. Susikin asuu ja vaanii heidän sisällään. Kuinka kestää pahuus itsessä? Mummon piirakat ovat lapsuuden muistoissa makoisia, mutta sukupolvien läpi kulkeva ankara kasvatus on joskus tihkunut myös omien lasten osaksi. Klovneissa nousevat pintaan läpi aikojen virtaavat tarinat, tottumukset, tajut ja tunteet  – niin vihat, onnet kuin surutkin.  <br> <br>Teoksessa piirtyvät esiin sadun lukemattomat eri versiot ja arkkityyppiset teemat, kuten hyvän ja pahan taistelu. Klovnit kertovat, säikäyttävät, opettavat ja viihdyttävät pelkäämättä tarttua sadun tummempiinkaan juonteisiin. Susi ja Punahilkka kohtaavat toisensa monella tasolla. Esitys pohtii toisaalta sitä, miksi suden päällä on kulttuurissamme aina raskas pahuuden painolasti? Voisiko ollakin niin, että Punahilkka edustaa sadussa pahuutta? Ihminen vie tilaa muilta lajeilta, eikä taida lopettaa ennen kuin on hävittänyt myös itsensä.  <br> <br>Kaiken lisäksi klovnit tuntevat luissaan ja ytimissään, kuinka sadunkertojien ahdinko kasvaa tässä ajassamme. Vaikka he joutuvatkin hautaamaan oman tehtävänsä, nuoruutensa, kauneutensa, säästötilinsä, kaikki unelmansa ja muutaman pahan tapansa, Punahilkka ei kuole koskaan. <br>  <br>Työryhmä on tehnyt aiemmin Punahilkasta esitykset lapsille (Punahilkan paluu, Red Nose Company 2023) sekä nuorille (Punahilkka K13, Red Nose Company 2024). Kuolematon Punahilkka on työryhmän kolmas tulkinta sadusta.  <br> <br>HUUDEILLA<br> Kanneltalon esitykset ovat osa Helsingin kaupungin rahoittamaa Huudeilla-aluehanketta. Kannelmäen ja Malminkartanon alueiden asukkaat ovat päässeet seuraamaan teoksen valmistumista avoimissa harjoituksissa prosessin eri vaiheissa. Mukana olleille tarjotaan kutsuliput Kanneltalon esityksiin. <br>  <br><b>TYÖRYHMÄ</b> <br> Näyttämöllä: Minna Puolanto ja Hanna Seppä <br> Ohjaus: Niina Sillanpää <br> Käsikirjoitus: Työryhmä <br> Valo ja äänisuunnittelu: Jere Kolehmainen <br> Pukusuunnittelu: Noora Salmi ja työryhmä <br> Valokuvat: Ilari Kallinen <br> Tuotanto: Red Nose Company <br> Yhteistuotanto: Red Nose Company, Kanneltalo, Huudeilla-aluehanke <br>  <br>Kesto: 1,5 h (ei väliaikaa) <br>Ikäsuositus: aikuisille, K14</p>",
                "sv": "<p>Kuolematon Punahilkka är en föreställning som bjuder vuxna på den klassiska sagan. Även de gamla trivs då clownerna badar åskådarna i skratt och gråt</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>För hundratals år sedan, när berättelsen om Rödluvan uppstod, berättades sagor som underhållning för vuxna. Clownduon Babylon & Ré (Minna Puolanto och Hanna Seppä) som nu underhåller oss bjuder återigen sin egen tolkning av denna klassiker till vuxna. Niina Sillanpää har regisserat verket.</p><p>Föreställningen vänder helt på sagan och öppnar den från alla håll. Clownerna tar sig an Rödluvans betydelser, barlaster och folkloristiska skikt. De leder oss, skrämmer, undervisar och naturligtvis underhåller de oss utan rädsla för att ta tag i de mörkare sakerna. Bra och ont bor i oss alla. Vågar vi titta på våra mörka punkter? Ser vi även ljuset bredvid? Clownerna badar åskådarna i skratt och gråt. De känner i märg och ben hur sagoberättarnas trångmål ökar i vår tid som är kärv för kulturen. Även om clownerna är tvungna att begrava vissa drömmar och kanske några dåliga vanor, kommer Rödluvan aldrig att dö.</p><p>Föreställningen behandlar sagornas arketypiska teman, oräkneliga olika versioner av berättelsen och traditioner för framförandet. Arbetsgruppen har tidigare lagt fram föreställningen Rödluvan för barn (Punahilkan paluu, Red Nose Company 2023) och för unga (Punahilkka K13, Red Nose Company 2024). I föreställningen för vuxna kan skaparna utnyttja allt material de samlat in om Rödluvan. Nu behöver man inte censurera eller portionera ut ens de mest raka nyanser och tolkningar som under olika tider har fogats till sagan.</p><p><b>HUUDEILLA</b><br>Föreställningarna är en del av det av Helsingfors stad finansierade regionprojektet Huudeilla. Invånarna i Gamlas och Malmgård får delta i delaktiggörande öppna övningar i olika faser av produktionen av verket. I manuset beaktas observationer och iakttagelser som samlats in av åskådarna. De som deltagit bjuds på biljetter till Gamlasgårdens föreställningar.<br> <br>Längd 1,5 h (ingen paus)<br>Åldersrekommendation: 14+</p><p><b>ARBETSGRUPP</b><br>På scenen Minna Puolanto och Hanna Seppä <br>Regi Niina Sillanpää<br>Manus: arbetsgrupp<br>Ljus- och ljudplanering Jere Kolehmainen<br>Kostymering Noora Salmi<br>Fotografier och grafisk uppsyn Ilari Kallinen<br>Produktion Red Nose Company <br>Samproduktion Red Nose Company, Gamlasgården, områdesprojektet Huudeilla</p>",
                "en": "<p>The Immortal Little Red Riding Hood brings the classic tale back to adults. Even grown-ups will be thoroughly entertained as a pair of clowns lead the audience through waves of laughter and tears.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>Hundreds of years ago, around the time the Little Red Riding Hood story first emerged, fairy tales were primarily intended as entertainment for adults. Now, the delightful clown duo Babylon & Ré (Minna Puolanto and Hanna Seppä) offer their own take on this classic to an adult audience. The performance is directed by Niina Sillanpää.</p><p>The show turns the fairy tale inside out, examining it from every angle. The clowns dissect the meanings, historic burdens and folkloric layers of Little Red Riding Hood. They guide, startle, enlighten and, of course, entertain, fearlessly diving into even the darkest threads of the tale. Good and evil live in all of us. Do we dare look into our own shadowy corners? And if we do, will we also see light beside them? The clowns will bathe the audience in laughter and tears. They will feel the growing despair of storytellers in a time when culture is being hollowed out. Even though the clowns may have to bury some of their dreams and perhaps a few bad habits, Little Red Riding Hood never dies.</p><p>This performance explores the archetypal themes of the tale, its countless variations and the traditions of performing stories. The team has previously created Little Red Riding Hood performances for children (The Return of Little Red Riding Hood, Red Nose Company 2023) and teens (Little Red Riding Hood, Red Nose Company 2024). Now, in this version for adults, they bring together all the material they have ever gathered about the story. No need to censor or dilute even the boldest shades or interpretations that have been associated with the tale through the ages.</p><p><b>IN THE HOOD</b><br>The performances are part of the Huudeilla (\"In the Hood\") neighbourhood project, funded by the City of Helsinki. Residents of the Kannelmäki and Malminkartano areas are invited to take part in open, participatory rehearsals during various stages of the production process. Feedback and observations collected from the participants will be incorporated into the script. Those involved in the workshops will receive complimentary tickets to performances at Kanneltalo.<br> <br>Duration: 1.5 hours (no intermission)<br>Recommended age: 14+</p><p><b>CREATIVE TEAM</b><br>On stage: Minna Puolanto and Hanna Seppä <br>Directed by: Niina Sillanpää<br>Script: Creative team<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Photography and visual design: Ilari Kallinen<br>Production: Red Nose Company <br>Co-production: Red Nose Company, Kanneltalo, Huudeilla Neighbourhood Project</p>"
            },
            "name": {
                "fi": "Red Nose Company: Kuolematon Punahilkka – satu aikuisille",
                "sv": "Red Nose Company: Kuolematon Punahilkka – en saga för vuxna",
                "en": "Red Nose Company: The Immortal Little Red Riding Hood – A Fairy Tale for Grown-Ups"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66261/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:9d7ed465-3b3d-f011-b4cc-main9101",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:65018",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:24:52.783782Z",
                "last_modified_time": "2025-04-23T07:10:15.824317Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "02650",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": false,
                "n_events": 16,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.809614,
                        60.22529
                    ]
                },
                "telephone": null,
                "street_address": {
                    "fi": "Veräjäpellonkatu 2-4",
                    "sv": "Grindåkersgatan 2-4",
                    "en": "Veräjäpellonkatu 2-4"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://www.espoo.fi/sv/alberga-skola",
                    "sv": "https://www.espoo.fi/sv/alberga-skola",
                    "en": "https://www.espoo.fi/sv/alberga-skola"
                },
                "description": {
                    "fi": "Alberga skola on ruotsinkielinen peruskoulu joka tarjoaa opetusta vuosiluokille 1-6.",
                    "sv": "Alberga skola har ca 100 elever och är belägen invid Alberga idrottspark, där det finns fina möjligheter till naturupplevelser och olika idrottsverksamheter under alla årstider. I Alberga skola arbetar vi för jämlikhet och respekt. Vi jobbar målmedvetet och mångsidigt med läsning. I Monikko finns det 4 enheter under samma tak: Alberga skola (åk 1-6) och Leppävaaran koulu (åk 1-9) samt Alberga daghem och förskola och Monikon päiväkoti. Enheterna i Monikko samarbetar aktivt och vår gemensamma vision är: \"En hemtrevlig uppväxt- och lärmiljö\".",
                    "en": "Alberga skola is a Swedish-speaking school with grades 1-6."
                },
                "name": {
                    "fi": "Alberga skola",
                    "sv": "Alberga skola",
                    "en": "Alberga skola"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:65018/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 60,
                    "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": 1714,
                    "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: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": 9506,
                    "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": 56,
                    "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: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": 1715,
                    "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": 55,
                    "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: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": 430,
                    "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": 396,
                    "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": 197,
                    "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: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": 78,
                    "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": 55,
                    "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: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": 55,
                    "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": 57,
                    "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: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": 55,
                    "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: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": 57,
                    "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: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": 55,
                    "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": 55,
                    "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": 55,
                    "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": 55,
                    "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": 55,
                    "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: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": 56,
                    "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": 55,
                    "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: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": 338,
                    "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": 197,
                    "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": 55,
                    "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: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": 350,
                    "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": 55,
                    "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": 55,
                    "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": 70,
                    "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": 62,
                    "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": 55,
                    "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: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": 56,
                    "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: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": 515,
                    "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: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": 56,
                    "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": 55,
                    "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": 55,
                    "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: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": 73,
                    "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: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": 55,
                    "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": 55,
                    "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": 679,
                    "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: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": 56,
                    "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": 86,
                    "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": 55,
                    "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": 55,
                    "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": 179,
                    "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: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": 95,
                    "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: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": 163,
                    "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: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": 55,
                    "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": 158,
                    "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": 58,
                    "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": 55,
                    "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": 55,
                    "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": 59,
                    "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: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": 175,
                    "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": 92,
                    "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: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": 58,
                    "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": 63,
                    "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": 4029,
                    "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",
                        "videoinspelningar",
                        "videoupptagningar",
                        "video recordings"
                    ],
                    "created_time": "2023-08-16T05:16:24.119002Z",
                    "last_modified_time": "2025-11-18T04:41:20.479404Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 55,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "videot (teokset)",
                        "sv": "videor (verk)",
                        "en": "videos (works)"
                    },
                    "@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": 55,
                    "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": 72,
                    "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": 56,
                    "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": 55,
                    "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": 62,
                    "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: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": 55,
                    "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": 126,
                    "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": 56,
                    "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": 55,
                    "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:p9778",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "samhälle (fenomen)"
                    ],
                    "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": 55,
                    "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340"
                    },
                    "description": {
                        "fi": "lapset"
                    },
                    "price": {
                        "fi": "10"
                    }
                },
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340"
                    },
                    "description": {
                        "fi": "aikuiset"
                    },
                    "price": {
                        "fi": "5"
                    }
                }
            ],
            "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/yso:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "created_time": "2025-11-03T10:30:00.642801Z",
            "last_modified_time": "2025-11-03T10:30:00.642822Z",
            "date_published": "2025-05-30T09:49:37Z",
            "start_time": "2025-11-30T09:58:00Z",
            "end_time": "2025-11-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 2,
            "audience_max_age": 24,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": 100,
            "enrolment_start_time": "2025-11-30T07:00:00+02:00",
            "enrolment_end_time": "2025-11-30T13:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "pricetestaus hw v1"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>TLDG_174_Toistuvat tapahtumat v1</p></div>"
            },
            "name": {
                "fi": "Svedutestaus"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Digia"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:9d7ed465-3b3d-f011-b4cc-main9101/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmzvtrbi4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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": 1943,
                    "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:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": 7188,
                    "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: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": 13453,
                    "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": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T12:23:37.825535Z",
            "last_modified_time": "2025-11-03T07:18:43.852563Z",
            "date_published": null,
            "start_time": "2025-11-22T13:00:00Z",
            "end_time": "2025-11-22T13:45: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,
            "short_description": {
                "fi": "Muovipussimeri on runollinen ja visuaalinen esitys merestä",
                "sv": "Plastpåsehavet",
                "en": "Sea of Plastic Bags"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Muovipussimeri on runollinen ja visuaalinen esitys merestä, muovista ja meren eläimistä. Esitys vie katsojan merenrannalle, hiekan ja meren siloittamien kivien äärelle tuntemaan ja kuulemaan, mitä merelle tänään kuuluu. Esityksen jälkeen katsojat saavat viettää aikaa näyttämöllä ja tutkia esityksessä rakentunutta maisemaa.</p><p><br></p><p>OHJAUS\tMinna Savin</p><p>VISUAALINEN SUUNNITTELU\tJohannes Saljas vierailija</p><p>ÄÄNISUUNNITTELU JA LAULUT\tMinna Savin</p><p>ESIINTYJÄ\tMinna Savin</p><p><br></p><p>Kesto: noin 45 min</p><p>Suositusikä: yli 3-vuotiaat, 1.4.-luokkalaiset</p><p>Kieli: Suomi</p><p><br></p><p>Lippulaivan kirjastossa on esitysten ohella Kierrätysaskartelua Romupajassa klo 15–17. Romupajassa askarrellaan ja rakennetaan erilaisesta kierrätysmateriaalista vain oma mielikuvitus rajana. Käytössä rakenteluun on kuumaliima eli voi tehdä isojakin teoksia. Teokset voi myös maalata.</p><p><br></p><p>Tapahtuma on osa Espoon Lasten viikonlopun ohjelmaa. Lue lisää Lasten viikonlopusta espoo.fi-sivulta: espoo.fi/lastenviikonloppu.</p><p>Tapahtuman järjestää Espoonlahden kulttuurihanke.</p>",
                "sv": "<p>Plastpåsehavet är en poetisk och visuell föreställning om havet, plast och havets djur. Föreställningen tar publiken till havsstranden, till de stenar som slipats av sand och vågor, för att känna och höra vad havet har att säga just idag. Efter föreställningen får publiken vistas på scenen och utforska det landskap som byggts upp under föreställningen.</p><p><br></p><p>REGI Minna Savin</p><p>VISUELL DESIGN Gästkonstnär Johannes Saljas</p><p>LJUDDESIGN OCH SÅNGER Minna Savin</p><p>FRAMTRÄDANDE Minna Savin</p><p><br></p><p>Längd ca 45 min</p><p>Rekommenderas för barn mellan över 3 år, årskurs 1–4.</p><p>Språk: finska</p><p><br></p><p>Evenemanget är en del av programmet på Barnens veckoslut i Esbo. Läs mer om Barnens veckoslut på Esbo stads webbplats: www.esbo.fi/barnens-veckoslut.&nbsp;</p>",
                "en": "<p>Sea of Plastic Bags is a poetic and visual performance about the sea, plastic, and marine animals. The performance takes the audience to the seashore, to the stones smoothed by sand and waves, to feel and hear what the sea has to say today. After the performance, the audience is invited onto the stage to spend time exploring the landscape created during the show.</p><p><br></p><p>DIRECTION Minna Savin</p><p>VISUAL DESIGN Guest artist Johannes Saljas</p><p>SOUND DESIGN AND SONGS Minna Savin</p><p>PERFORMER Minna Savin</p><p><br></p><p>Duration approx. 45 min</p><p>Recommended for children aged over 3 years, 1-4. graders</p><p>Language: Finnish</p><p><br></p><p>This event is part of Children’s Weekend in Espoo. Read more about Children’s Weekend: www.espoo.fi/en/childrens-weekend.&nbsp;</p>"
            },
            "name": {
                "fi": "Lasten viikonloppu: Muovipussimeri",
                "sv": "Barnens veckoslut: Plastpåsehavet",
                "en": "Children’s Weekend: Sea of Plastic Bags"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmzvtrbi4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnervmi2a",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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": 1943,
                    "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:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": 7188,
                    "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: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": 13453,
                    "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": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-30T12:22:49.055595Z",
            "last_modified_time": "2025-11-03T07:17:16.774519Z",
            "date_published": "2025-09-30T11:59:00Z",
            "start_time": "2025-11-22T11:00:00Z",
            "end_time": "2025-11-22T11:45: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,
            "short_description": {
                "fi": "Muovipussimeri on runollinen ja visuaalinen esitys merestä",
                "sv": "Plastpåsehavet",
                "en": "Sea of Plastic Bags"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Muovipussimeri on runollinen ja visuaalinen esitys merestä, muovista ja meren eläimistä. Esitys vie katsojan merenrannalle, hiekan ja meren siloittamien kivien äärelle tuntemaan ja kuulemaan, mitä merelle tänään kuuluu. Esityksen jälkeen katsojat saavat viettää aikaa näyttämöllä ja tutkia esityksessä rakentunutta maisemaa.</p><p><br></p><p>OHJAUS\tMinna Savin</p><p>VISUAALINEN SUUNNITTELU\tJohannes Saljas vierailija</p><p>ÄÄNISUUNNITTELU JA LAULUT\tMinna Savin</p><p>ESIINTYJÄ\tMinna Savin</p><p><br></p><p>Kesto: noin 45 min</p><p>Suositusikä: yli 3-vuotiaat, 1.4.-luokkalaiset</p><p>Kieli: Suomi</p><p><br></p><p>Lippulaivan kirjastossa on esitysten ohella Kierrätysaskartelua Romupajassa klo 15–17. Romupajassa askarrellaan ja rakennetaan erilaisesta kierrätysmateriaalista vain oma mielikuvitus rajana. Käytössä rakenteluun on kuumaliima eli voi tehdä isojakin teoksia. Teokset voi myös maalata.</p><p><br></p><p>Tapahtuma on osa Espoon Lasten viikonlopun ohjelmaa. Lue lisää Lasten viikonlopusta espoo.fi-sivulta: espoo.fi/lastenviikonloppu.</p><p>Tapahtuman järjestää Espoonlahden kulttuurihanke.</p>",
                "sv": "<p>Plastpåsehavet är en poetisk och visuell föreställning om havet, plast och havets djur. Föreställningen tar publiken till havsstranden, till de stenar som slipats av sand och vågor, för att känna och höra vad havet har att säga just idag. Efter föreställningen får publiken vistas på scenen och utforska det landskap som byggts upp under föreställningen.</p><p><br></p><p>REGI Minna Savin</p><p>VISUELL DESIGN Gästkonstnär Johannes Saljas</p><p>LJUDDESIGN OCH SÅNGER Minna Savin</p><p>FRAMTRÄDANDE Minna Savin</p><p><br></p><p>Längd ca 45 min</p><p>Rekommenderas för barn mellan över 3 år, årskurs 1–4.</p><p>Språk: finska</p><p><br></p><p>Evenemanget är en del av programmet på Barnens veckoslut i Esbo. Läs mer om Barnens veckoslut på Esbo stads webbplats: www.esbo.fi/barnens-veckoslut.&nbsp;</p>",
                "en": "<p>Sea of Plastic Bags is a poetic and visual performance about the sea, plastic, and marine animals. The performance takes the audience to the seashore, to the stones smoothed by sand and waves, to feel and hear what the sea has to say today. After the performance, the audience is invited onto the stage to spend time exploring the landscape created during the show.</p><p><br></p><p>DIRECTION Minna Savin</p><p>VISUAL DESIGN Guest artist Johannes Saljas</p><p>SOUND DESIGN AND SONGS Minna Savin</p><p>PERFORMER Minna Savin</p><p><br></p><p>Duration approx. 45 min</p><p>Recommended for children aged over 3 years, 1-4. graders</p><p>Language: Finnish</p><p><br></p><p>This event is part of Children’s Weekend in Espoo. Read more about Children’s Weekend: www.espoo.fi/en/childrens-weekend.&nbsp;</p>"
            },
            "name": {
                "fi": "Lasten viikonloppu: Muovipussimeri",
                "sv": "Barnens veckoslut: Plastpåsehavet",
                "en": "Children’s Weekend: Sea of Plastic Bags"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnervmi2a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm7fr54qq",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15321",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:06.525842Z",
                "last_modified_time": "2024-04-09T05:09:27.777156Z",
                "custom_data": null,
                "email": "kirjasto.entresse@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02770",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 3657,
                "image": 7894,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.657864,
                        60.203636
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 3776"
                },
                "street_address": {
                    "fi": "Siltakatu 11",
                    "sv": "Brogatan 11",
                    "en": "Siltakatu 11"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787"
                },
                "description": null,
                "name": {
                    "fi": "Entressen kirjasto",
                    "sv": "Entressebiblioteket",
                    "en": "Entresse Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2435,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2340,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2334,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11727",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.526740Z",
                    "last_modified_time": "2024-02-06T13:24:10.745704Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 900,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lukupiirit",
                        "sv": "Bokcirklar",
                        "en": "Book clubs",
                        "ru": "Литературные кружки"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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": 1714,
                    "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:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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": 9506,
                    "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: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": 1715,
                    "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: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": 430,
                    "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:p14710",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:05:27.253448Z",
                    "last_modified_time": "2023-08-16T05:05:27.253465Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1102,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "satutunnit",
                        "sv": "sagotimmar",
                        "en": "story hours"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1947",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "prosperity",
                        "welfare (well-being)",
                        "välfärd"
                    ],
                    "created_time": "2023-08-16T05:19:38.138600Z",
                    "last_modified_time": "2026-01-10T04:42:05.285206Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1966,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hyvinvointi",
                        "sv": "välmående",
                        "en": "well-being"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": 7188,
                    "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: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": 13453,
                    "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:p556",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "språk (språkvetenskap)",
                        "kielet",
                        "kieli (kielitiede)",
                        "språk (typer)",
                        "språket"
                    ],
                    "created_time": "2023-08-16T05:19:47.449652Z",
                    "last_modified_time": "2023-08-16T05:19:47.449670Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3855,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kieli ja kielet",
                        "sv": "språk",
                        "en": "languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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": 4010,
                    "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: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": 4029,
                    "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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr56vq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491121,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-10-17T14:27:20.273288Z",
                    "last_modified_time": "2025-10-17T14:27:20.273303Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/558523d5-82a0-44ad-978f-d012f4cee3a5.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Opetuksen kerho",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-17T14:51:47.260751Z",
            "last_modified_time": "2025-11-02T11:09:29.167438Z",
            "date_published": null,
            "start_time": "2025-11-14T15:00:00Z",
            "end_time": "2025-11-14T17: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,
            "short_description": {
                "fi": "\nTervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!",
                "en": "Welcome in a club in Arabic to learn, craft and to get support in your studies! "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!</p><p>&nbsp;</p><p>Kerho on suunnattu arabian kielen taitoisille kouluikäisille lapsille ja nuorille. Vetäjänä vapaaehtoinen opettaja.</p><p>&nbsp;</p><p>Kerho järjestetään joka&nbsp;perjantai klo 17-19. Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p>#HelloEspoo</p><p>&nbsp;</p>",
                "en": "<p>Welcome to Arabic learning club, where you could enjoy learning Arabic language, and doing different activities like craft and getting support in your studies!</p><p>&nbsp;</p><p>The club is aimed for school. No pre-registration. Welcome!</p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Arabiankielinen opetuskerho lapsille ja nuorille ",
                "en": "EDUCATIONAL CLUB FOR CHILDREN AND YOUTH IN ARABIC"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr54qq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm7fr54fq",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15321",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:06.525842Z",
                "last_modified_time": "2024-04-09T05:09:27.777156Z",
                "custom_data": null,
                "email": "kirjasto.entresse@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02770",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 3657,
                "image": 7894,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.657864,
                        60.203636
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 3776"
                },
                "street_address": {
                    "fi": "Siltakatu 11",
                    "sv": "Brogatan 11",
                    "en": "Siltakatu 11"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787"
                },
                "description": null,
                "name": {
                    "fi": "Entressen kirjasto",
                    "sv": "Entressebiblioteket",
                    "en": "Entresse Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2435,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2340,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2334,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11727",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.526740Z",
                    "last_modified_time": "2024-02-06T13:24:10.745704Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 900,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lukupiirit",
                        "sv": "Bokcirklar",
                        "en": "Book clubs",
                        "ru": "Литературные кружки"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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": 1714,
                    "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:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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": 9506,
                    "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: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": 1715,
                    "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: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": 430,
                    "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:p14710",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:05:27.253448Z",
                    "last_modified_time": "2023-08-16T05:05:27.253465Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1102,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "satutunnit",
                        "sv": "sagotimmar",
                        "en": "story hours"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1947",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "prosperity",
                        "welfare (well-being)",
                        "välfärd"
                    ],
                    "created_time": "2023-08-16T05:19:38.138600Z",
                    "last_modified_time": "2026-01-10T04:42:05.285206Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1966,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hyvinvointi",
                        "sv": "välmående",
                        "en": "well-being"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": 7188,
                    "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: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": 13453,
                    "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:p556",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "språk (språkvetenskap)",
                        "kielet",
                        "kieli (kielitiede)",
                        "språk (typer)",
                        "språket"
                    ],
                    "created_time": "2023-08-16T05:19:47.449652Z",
                    "last_modified_time": "2023-08-16T05:19:47.449670Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3855,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kieli ja kielet",
                        "sv": "språk",
                        "en": "languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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": 4010,
                    "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: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": 4029,
                    "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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr56vq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491121,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-10-17T14:27:20.273288Z",
                    "last_modified_time": "2025-10-17T14:27:20.273303Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/558523d5-82a0-44ad-978f-d012f4cee3a5.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Opetuksen kerho",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-17T14:51:47.142937Z",
            "last_modified_time": "2025-11-02T11:09:29.101325Z",
            "date_published": null,
            "start_time": "2025-11-07T15:00:00Z",
            "end_time": "2025-11-07T17: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,
            "short_description": {
                "fi": "\nTervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!",
                "en": "Welcome in a club in Arabic to learn, craft and to get support in your studies! "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!</p><p>&nbsp;</p><p>Kerho on suunnattu arabian kielen taitoisille kouluikäisille lapsille ja nuorille. Vetäjänä vapaaehtoinen opettaja.</p><p>&nbsp;</p><p>Kerho järjestetään joka&nbsp;perjantai klo 17-19. Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p>#HelloEspoo</p><p>&nbsp;</p>",
                "en": "<p>Welcome to Arabic learning club, where you could enjoy learning Arabic language, and doing different activities like craft and getting support in your studies!</p><p>&nbsp;</p><p>The club is aimed for school. No pre-registration. Welcome!</p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Arabiankielinen opetuskerho lapsille ja nuorille ",
                "en": "EDUCATIONAL CLUB FOR CHILDREN AND YOUTH IN ARABIC"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr54fq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmqkb5mz4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15321",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:06.525842Z",
                "last_modified_time": "2024-04-09T05:09:27.777156Z",
                "custom_data": null,
                "email": "kirjasto.entresse@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02770",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 3657,
                "image": 7894,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.657864,
                        60.203636
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 3776"
                },
                "street_address": {
                    "fi": "Siltakatu 11",
                    "sv": "Brogatan 11",
                    "en": "Siltakatu 11"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787"
                },
                "description": null,
                "name": {
                    "fi": "Entressen kirjasto",
                    "sv": "Entressebiblioteket",
                    "en": "Entresse Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65ie",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.846704Z",
                    "last_modified_time": "2023-12-13T11:20:11.846734Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2435,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoon keskus",
                        "sv": "Esbo centrum",
                        "en": "Espoon keskus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65ka",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.861544Z",
                    "last_modified_time": "2023-12-13T11:20:11.861564Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2340,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Muurala",
                        "sv": "Morby",
                        "en": "Muurala"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz65l4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.876507Z",
                    "last_modified_time": "2023-12-13T11:20:11.876525Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2334,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunginkallio",
                        "sv": "Stadsberget",
                        "en": "Kaupunginkallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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": 1714,
                    "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:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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": 870,
                    "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:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": 7188,
                    "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: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": 4029,
                    "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:p8630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "käden taidot",
                        "handens skicklighet"
                    ],
                    "created_time": "2023-08-16T05:16:25.022022Z",
                    "last_modified_time": "2023-08-16T05:16:25.022045Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1500,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kädentaidot",
                        "sv": "händighet",
                        "en": "craft skills"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5p6m/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490576,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-28T16:42:17.396704Z",
                    "last_modified_time": "2025-12-18T11:11:36.169680Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/976b1358-e3d1-4193-bfb1-8fea495e3ce4.png",
                    "name": "",
                    "cropping": "94,0,468,375",
                    "photographer_name": "",
                    "alt_text": "kuva päiväkirjan sivusta jota on koristeltu piirtäen kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490576/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-28T16:45:08.017804Z",
            "last_modified_time": "2025-11-02T10:57:06.500155Z",
            "date_published": null,
            "start_time": "2025-11-06T15:00:00Z",
            "end_time": "2025-11-06T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. "
            },
            "info_url": null,
            "description": {
                "fi": "Art Journal - Taidepäiväkirjatyöpaja<p><strong>Torstaisin kello 17-19.30, Entressen kirjasto, Sininen huone</strong></p><p><strong>6.11. kokoonnumme JUKEBOKSI tilassa, kirjaston aulasta ohjataan oikeaan paikkaan! Tervetuloa! </strong></p><p>Haluatko saada uusia ideoita ja kokeilla uusia tekniikoita taidepäiväkirjan tekemiseen?</p><p>Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. Taidepäiväkirjoissa hyödynnetään paljon kierrätysmateriaaleja. Materiaalit, myös päiväkirjapohjan, saat kirjastosta. Tai ota omat materiaalit mukaan.&nbsp;</p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p><p><br></p><p>Järjestäjä: Kirjasto</p>"
            },
            "name": {
                "fi": "Art Journal - Taidepäiväkirjatyöpaja aikuisille"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Jukeboksi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5mz4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agndu5ew2a",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:63115",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:21:47.874219Z",
                "last_modified_time": "2024-04-09T05:09:51.671564Z",
                "custom_data": null,
                "email": "kirjasto.lippulaiva@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02320",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 2568,
                "image": 10314,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.652107,
                        60.150066
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8163 5097"
                },
                "street_address": {
                    "fi": "Espoonlahdenkatu 8",
                    "sv": "Esboviksgatan 8",
                    "en": "Espoonlahdenkatu 8"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685"
                },
                "description": null,
                "name": {
                    "fi": "Lippulaivan kirjasto",
                    "sv": "Lippulaivabiblioteket",
                    "en": "Lippulaiva library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66fq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.081778Z",
                    "last_modified_time": "2023-12-13T11:20:12.081796Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2648,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kivenlahti",
                        "sv": "Stensvik",
                        "en": "Kivenlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66hi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.096292Z",
                    "last_modified_time": "2023-12-13T11:20:12.096316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2638,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Espoonlahti",
                        "sv": "Esboviken",
                        "en": "Espoonlahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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": 9506,
                    "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:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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": 7188,
                    "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: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": 4010,
                    "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-31T12:39:12.042186Z",
            "last_modified_time": "2025-11-02T09:42:55.850047Z",
            "date_published": null,
            "start_time": "2025-11-04T14:00:00Z",
            "end_time": "2025-11-04T16: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,
            "short_description": {
                "fi": "Biljarditurnaus 4.11. klo 16-18 Messissä kaikille 12-17 vuotiaille."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Biljarditurnaus 4.11. klo 16-18 Messissä kaikille 12-17 vuotiaille. Kaksi parasta pelaajaa pääsevät pelaamaan finaalipeliin, joka pelataan Lippulaivan kirjastossa lauantaina 8.11 klo 12-14. Finaalipelissä on osallistujia kaikista Espoon aluekirjastoista</p>"
            },
            "name": {
                "fi": "Biljarditurnaus nuorille"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agndu5ew2a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20003358",
            "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": 315,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.940313,
                        60.199146
                    ]
                },
                "telephone": {
                    "fi": "+358 9 394 01"
                },
                "street_address": {
                    "fi": "Ratamestarinkatu 5",
                    "sv": "Banmästargatan 5"
                },
                "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/"
                },
                "description": null,
                "name": {
                    "fi": "Studio Pasila",
                    "sv": "Teaterstudio Pasila",
                    "en": "Theatre Studio Pasila"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "yso:p5",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:18:56.367784Z",
                    "last_modified_time": "2023-08-16T05:18:56.367801Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 71,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "viihde",
                        "sv": "underhållning",
                        "en": "entertainment"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?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": 126,
                    "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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2039568/?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/club-actone-helsingin-kaupunginteatteri-20003358/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003358/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-20003358/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235438,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:43.926542Z",
                    "last_modified_time": "2025-02-17T11:16:43.926559Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/clubactone222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235438/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:37.244863Z",
            "last_modified_time": "2025-11-01T00:16:06.186449Z",
            "date_published": null,
            "start_time": "2025-10-31T17: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,
            "short_description": {
                "fi": "CLUB ACT!ONE Studio Pasila on Suomen johtava stand up -komiikan estradi."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/artist-510413/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Studio Pasila on Suomen johtava stand up -komiikan estradi. Lavalle nousevat maan eturivin stand up -koomikot. Stand up on irrottelua, vedätystä, itsensä alttiiksi panemista ja uuden esitystilanteen nopeaa oivaltamista.</p><p>Esitykset kestävät noin 2 tuntia, sisältäen lyhyen väliajan. Esitykset K-18.</p><p><br><strong>Lokakuu</strong><br>to 2.10. klo 19.00 Heli Sutela, Kaisa Pylkkänen, Ilari Johansson, Fredi Lilius<br>La 4.10. klo 21.00 Andre Wickström, Lauri Saviharju, Roosa Maskonen, Laura Haimila<br>Pe 10.10. klo 19.00 Anitta Ahonen, Mikko Vaismaa, Anders Helenius, Illusia Sarvas<br>La 11.10. klo 19.00 Anna Rimpelä, Eeva Vekki, Ray Zambino, Riku Sottinen<br>Pe 17.10. klo 19.00 Lauri Saviharju, Saana Peltola, Fabe, Raisa Omaheimo<br>La 18.10. klo 19.00 Heikki Vilja, Janne Grönroos, Karim Aldulaimi, James MacDonald<br>Pe 24.10. klo 19.00 Ursula Herlin, Marjut Ollitervo, Rich Lyons, Matti Patronen<br>La 25.10. klo 19.00 Miksu Pellikka, Ilari Johansson, Roosa Maskonen, Fathi Ahmed<br>Pe 31.10. klo 19.00 Johanna Tohni, Heli Sutela, Antti Haapala, Helena Pöllänen</p><p><strong>Marraskuu</strong><br>Pe 7.11. klo 19.00 Anitta Ahonen, Tommi Mujunen, Mika Eirtovaara, Helena Pöllänen<br>La 8.11. klo 19.00 Anna Rimpelä, André Wickström, Tomi Haustola, RudiRok<br>La 15.11. klo 19.00 Laura Haimila, Kaisa Pylkkänen, Aatu Raitala, Paul Westlake<br>la 22.11. klo 21.00 Ali Jahangiri - Mustavalkoista soolo Esitys kuvataan!<br>la 29.11. klo 21.00 Ali Jahangiri - Mustavalkoista soolo Esitys kuvataan!</p><p><strong>Joulukuu</strong><br>la 13.12. klo 19.00 Ursula Herlin, Ida Grönlund, Mebe, Matti Patronen</p><p>Yhteistyössä W&amp;T Comedyn kanssa.</p>",
                "en": "<p><strong>CLUB ACT!ONE</strong></p>"
            },
            "name": {
                "en": "Club Act!One K-18"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20003358/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000251",
            "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": 285,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.937542,
                        60.167675
                    ]
                },
                "telephone": {
                    "fi": "+358 9 394 0373"
                },
                "street_address": {
                    "fi": "Yrjönkatu 30",
                    "sv": "Georgsgatan 30"
                },
                "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/"
                },
                "description": null,
                "name": {
                    "fi": "Lilla Teatern",
                    "sv": "Lilla Teatern",
                    "en": "Lilla Teatern"
                },
                "@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": 1943,
                    "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-3849163/?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/hyenans-dagar-helsingin-kaupunginteatteri-20000251/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000251/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000251/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1490709,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-10T07:16:38.476528Z",
                    "last_modified_time": "2025-09-10T07:16:38.476549Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/67/1b/hyenans-dagar-tickets_438240_3555827_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490709/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:37.132138Z",
            "last_modified_time": "2025-11-01T00:16:06.043844Z",
            "date_published": null,
            "start_time": "2025-10-31T16: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,
            "short_description": {
                "sv": "Saara Turunen HYENANS DAGAR Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hyenans-dagar-3849163/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Saara Turunen<br><strong>HYENANS DAGAR</strong></p><p>Hyenans dagar (Hyeenan päivät) perustuu osittain Saara Turusen samannimiseen romaaniin.</p><p>Teos uppoutuu erääseen lisääntymiskertomukseen, se valottaa yhden naisen tarinaa hedelmöityshoidoista lapsen saamiseen. Esitys on raportinomainen seurantakertomus sekä yhden ajanjakson kuvaus, jossa yksityinen ja yhteiskunnallinen risteytyvät ja menevät sekaisin. Pinnan alla teos käsittelee kehollisuutta, kontrollia ja pärjäämisen kulttuuria. Draama sijaitsee kuvien ulkopuolella, osittain katsojan omassa mielessä. Esitys ei tarjoile valmiita vastauksia, pikemminkin se vain näyttää kohtauksia, hetkiä ja tilanteita, joista katsoja voi tehdä omat tulkintansa.</p><p>Kuten Turusen aiemmissakin töissä, myös Hyenans dagar -esityksessä musiikilla ja kuvallisuudella on keskeinen osansa.<br>Hyenans dagar on suunnattu kaikille, jotka ovat joskus tavoitelleet jotakin, kohdanneet vaikeuksia tai tulleet sysätyiksi itselleen tuntemattomaan maailmaan.</p>",
                "sv": "<p>Hyenans dagar baserar sig delvis på Saara Turunens roman med samma nam.</p><p>Föreställningen skildrar en kvinnas erfarenhet av fertilitetsbehandlingar och vägen till att få barn. Med ett dokumentärartat grepp skildras en tidsperiod i livet där gränsen mellan det privata och det samhälleliga suddas ut. Under ytan behandlar verket frågor om kroppslighet, kontroll och att alltid behöva klara sig själv. Dramat utspelar sig inte bara på scenen, utan också i åskådarens egna tankar och reflektioner. Föreställningen ger inga färdiga svar, utan bjuder istället på scener och ögonblick som publiken får tolka på sitt eget sätt.</p><p>Musiken och bildspråket spelar en central roll, precis som i Saara Turunens tidigare föreställningar.<br>Hyenans dagar riktar sig till alla som någonsin strävat efter något, upplevt motgångar eller kastats in i en okänd värld.</p><p>******</p><p>Aktörer: Kreeta Salminen, Elmer Bäck, Katja Küttner, Pia Runnakko, Alexander Wendelin</p><p>Manus och regi: Saara Turunen<br>Översättning: Kasimir Koski<br>Scenografi: Milja Aho<br>Dräktdesign: Liisa Pesonen<br>Ljusdesign: Ainu Palmu<br>Ljuddesign: Tuuli Kyttälä<br>Maskdesign: Jaana Nykänen</p>"
            },
            "name": {
                "fi": "Hyenans Dagar"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lilla Teatern"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000251/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000231",
            "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": 893,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.942722,
                        60.181675
                    ]
                },
                "telephone": {
                    "fi": "+358 9 394 022"
                },
                "street_address": {
                    "fi": "Eläintarhantie 5",
                    "sv": "Djurgårdsvägen 5",
                    "en": "Eläintarhantie 5"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://hkt.fi/",
                    "sv": "https://hkt.fi/",
                    "en": "https://hkt.fi/"
                },
                "description": null,
                "name": {
                    "fi": "Helsingin Kaupunginteatteri",
                    "sv": "Helsingfors Stadsteater",
                    "en": "Helsinki City Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 396,
                    "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: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": 1943,
                    "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-3849161/?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/kuningatarnaytelma-helsingin-kaupunginteatteri-20000231/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000231/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kuningatarnaytelma-helsingin-kaupunginteatteri-20000231/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360030,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:19.912887Z",
                    "last_modified_time": "2025-03-17T22:17:19.912902Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/9c/af/kuningatar222-tickets_369620_3121710_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:37.011321Z",
            "last_modified_time": "2025-11-01T00:16:05.873566Z",
            "date_published": null,
            "start_time": "2025-10-31T16: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,
            "short_description": {
                "fi": "Jussi Moila - Sini Pesonen KUNINGATARNÄYTELMÄ Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuningatarnaeytelmae-3849161/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Jussi Moila - Sini Pesonen<br><strong>KUNINGATARNÄYTELMÄ</strong></p><p>Kuningatarnäytelmä kertoo Kristinasta, joka oli Ruotsin kuningatar vuodesta 1632 vuoteen 1654. Jussi Moilan kirjoittama ja Sini Pesosen ohjaama historiallinen nykydraama hengittää vahvasti tätä päivää teemoillaan vallasta, sukupuolesta ja rakkaudesta.</p><p>Nuoreen Kristinaan kohdistuu järkälemäisiä odotuksia. Hän on tyttö, jota kasvatetaan kuninkaaksi. Nainen, jonka tulee turvata kuningassuku avioitumalla ja synnyttämällä perillinen. Hallitsija, jonka täytyy olla sodassa ryvettyneen kansakuntansa keulakuva ja johtaja.</p><p>Mutta Kristina haluaa jotain aivan muuta. Hän haluaa tehdä synkästä ja sivistymättömästä Ruotsista tieteen ja taiteen johtotähden, eurooppalaisen vapauden ja sivistyksen valtakunnan. Ja Kristina haluaa hovineitonsa Bellen.</p><p>Ristipaine julkisen roolin ja yksityiselämän välillä synnyttää hurjaa, hauskaa ja koskettavaa draamaa. Anarkistisen kuningatar Kristinan kiehtovassa roolissa nähdään Elsi Sloan. Belleä näyttelee Aino Sirje.</p><p>Rooleissa: Rauno Ahonen, Pekka Huotari, Vappu Nalbantoglu, Aino Seppo, Aino Sirje, Elsi Sloan, Alvari Stenbäck, Mikko Vihma, Joachim Wigelius, Vilma Sippola</p><p>Ohjaus: Sini Pesonen<br>Koreografia: Kaisa Torkkel<br>Lavastus: Tinja Salmi<br>Pukusuunnittelu: Henna-Riikka Taskinen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Valosuunnittelu: Kari Leppälä<br>Videosuunnittelu: Tinja Salmi<br>Naamioinnin suunnittelu: Pia Malmberg<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Henna Piirto<br>Erikoistehosteet: Markku Ahonen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>"
            },
            "name": {
                "fi": "Kuningatarnäytelmä"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000231/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999924",
            "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": 399,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.950369,
                        60.18024
                    ]
                },
                "telephone": {
                    "fi": "+358 9 394 022"
                },
                "street_address": {
                    "fi": "Hämeentie 2",
                    "sv": "Tavastvägen 2",
                    "en": "Hämeentie 2"
                },
                "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/"
                },
                "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."
                },
                "name": {
                    "fi": "Arena-näyttämö - Helsingin kaupunginteatteri",
                    "sv": "Arena-scenen - Helsingfors stadsteater",
                    "en": "Arena Theatre - Helsinki City Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?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/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999924/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999924/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999924/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360032,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.766941Z",
                    "last_modified_time": "2025-03-17T22:17:20.766955Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:36.909362Z",
            "last_modified_time": "2025-11-01T00:16:05.724147Z",
            "date_published": null,
            "start_time": "2025-10-31T16: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,
            "short_description": {
                "fi": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>",
                "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>"
            },
            "name": {
                "fi": "Sutinaa Ja Säätöä"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999924/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19506307",
            "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": 893,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.942722,
                        60.181675
                    ]
                },
                "telephone": {
                    "fi": "+358 9 394 022"
                },
                "street_address": {
                    "fi": "Eläintarhantie 5",
                    "sv": "Djurgårdsvägen 5",
                    "en": "Eläintarhantie 5"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://hkt.fi/",
                    "sv": "https://hkt.fi/",
                    "en": "https://hkt.fi/"
                },
                "description": null,
                "name": {
                    "fi": "Helsingin Kaupunginteatteri",
                    "sv": "Helsingfors Stadsteater",
                    "en": "Helsinki City Theatre"
                },
                "@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-19506307/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506307/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506307/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.124713Z",
                    "last_modified_time": "2025-02-17T11:16:42.124728Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg",
                    "name": "",
                    "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:24.341980Z",
            "last_modified_time": "2025-11-01T00:16:05.573758Z",
            "date_published": null,
            "start_time": "2025-10-31T16: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,
            "short_description": {
                "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin,"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>",
                "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>"
            },
            "name": {
                "fi": "Moulin Rouge! Musikaali"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506307/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67173",
            "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": 1362,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "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"
                },
                "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."
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 1163,
                    "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: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": 1350,
                    "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": 6000,
                    "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": 4853,
                    "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": 5058,
                    "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": 1117,
                    "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: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": 813,
                    "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-helios/kino-helios-sorry-baby-4013982/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T09:13:56.623474Z",
                    "last_modified_time": "2025-10-23T09:13:56.623487Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777303.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T09:13:56.522014Z",
            "last_modified_time": "2025-10-31T15:13:37.033498Z",
            "date_published": null,
            "start_time": "2025-11-21T16: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,
            "short_description": {
                "fi": "Sorry, Baby on Eva Victorin käsikirjoittama, ohjaama ja tähdittämä vaikuttava esikoiselokuva, joka sai maailmanensi-iltansa arvostetulla Sundancen elokuvafestivaalilla."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/470FF4694E5BB032FAE2D9D4FEAB2770/Kino_Helios_Sorry_baby_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/470FF4694E5BB032FAE2D9D4FEAB2770/Kino_Helios_Sorry_baby_12_",
                "en": "http://www.malmitalo.fi/en/events/event/470FF4694E5BB032FAE2D9D4FEAB2770/Kino_Helios_Sorry_baby_12_"
            },
            "description": {
                "fi": "<p>Sorry, Baby on Eva Victorin käsikirjoittama, ohjaama ja tähdittämä vaikuttava esikoiselokuva, joka sai maailmanensi-iltansa arvostetulla Sundancen elokuvafestivaalilla.</p><p>Muissa rooleissa nähdään Naomi Ackie (I Wanna Dance: The Whitney Houston Movie, Mickey 17), Lucas Hedges (Manchester by the Sea, Boy Erased) ja John Carroll Lynch (Fargo, Jackie).</p><p>Agnes on kokenut menneisyydessään trauman. Silti elämä jatkuu – ainakin kaikilla muilla hänen ympärillään. Kun Agnesin luo saapuu kylään hänen hyvä ystävänsä, joka on suuren elämänmuutoksen keskellä, Agnes alkaa vähitellen ymmärtää, kuinka paikoilleen hän on jäänyt ja ryhtyy etsimään keinoja päästä eteenpäin.</p><p>Ikäraja: 12<br>Kesto: 103 min<br>Ensi-ilta: 31.10.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Kino Helios: Sorry, baby (12)",
                "sv": "Kino Helios: Sorry, baby (12)",
                "en": "Kino Helios: Sorry, baby (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67173/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67172",
            "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": 1362,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "street_address": {
                    "fi": "Ala-Malmin tori 1",
                    "sv": "Nedre Malms torg 1",
                    "en": "Ala-Malmin tori 1"
                },
                "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"
                },
                "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."
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 1163,
                    "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: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": 1350,
                    "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": 6000,
                    "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": 4853,
                    "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": 5058,
                    "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": 1117,
                    "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: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": 813,
                    "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-helios/kino-helios-sorry-baby-4013982/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sorry-baby-4013982/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491154,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T09:13:53.938182Z",
                    "last_modified_time": "2025-10-23T09:13:53.938195Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777299.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491154/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T09:13:53.833962Z",
            "last_modified_time": "2025-10-31T15:13:34.106688Z",
            "date_published": null,
            "start_time": "2025-11-14T13: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,
            "short_description": {
                "fi": "Sorry, Baby on Eva Victorin käsikirjoittama, ohjaama ja tähdittämä vaikuttava esikoiselokuva, joka sai maailmanensi-iltansa arvostetulla Sundancen elokuvafestivaalilla."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3C3F39BE3EC086BD6169108A643F7C54/Kino_Helios_Sorry_baby_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3C3F39BE3EC086BD6169108A643F7C54/Kino_Helios_Sorry_baby_12_",
                "en": "http://www.malmitalo.fi/en/events/event/3C3F39BE3EC086BD6169108A643F7C54/Kino_Helios_Sorry_baby_12_"
            },
            "description": {
                "fi": "<p>Sorry, Baby on Eva Victorin käsikirjoittama, ohjaama ja tähdittämä vaikuttava esikoiselokuva, joka sai maailmanensi-iltansa arvostetulla Sundancen elokuvafestivaalilla.</p><p>Muissa rooleissa nähdään Naomi Ackie (I Wanna Dance: The Whitney Houston Movie, Mickey 17), Lucas Hedges (Manchester by the Sea, Boy Erased) ja John Carroll Lynch (Fargo, Jackie).</p><p>Agnes on kokenut menneisyydessään trauman. Silti elämä jatkuu – ainakin kaikilla muilla hänen ympärillään. Kun Agnesin luo saapuu kylään hänen hyvä ystävänsä, joka on suuren elämänmuutoksen keskellä, Agnes alkaa vähitellen ymmärtää, kuinka paikoilleen hän on jäänyt ja ryhtyy etsimään keinoja päästä eteenpäin.</p><p>Ikäraja: 12<br>Kesto: 103 min<br>Ensi-ilta: 31.10.2025<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Kino Helios: Sorry, baby (12)",
                "sv": "Kino Helios: Sorry, baby (12)",
                "en": "Kino Helios: Sorry, baby (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67172/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66562",
            "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": 981,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "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"
                },
                "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."
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre 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": 1321,
                    "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: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": 654,
                    "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": 1163,
                    "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: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": 986,
                    "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: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": 6000,
                    "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": 4853,
                    "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": 5058,
                    "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": "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": 1715,
                    "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": 813,
                    "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"
                },
                {
                    "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": 13453,
                    "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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491264,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-31T14:13:36.777505Z",
                    "last_modified_time": "2025-10-31T14:13:36.777520Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775017.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491264/?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-10-31T14:13:36.613370Z",
            "last_modified_time": "2025-10-31T14:13:36.991884Z",
            "date_published": null,
            "start_time": "2025-11-19T07: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,
            "short_description": {
                "fi": "Tervetuloa elokuviin vauva- ja taaperokansa! Nyt saa kruisailla vaunuilla sisälle leffateatteriin!",
                "sv": "Välkomna på film bebisar och knattar! Nu får man köra in med vagnen till biografen!",
                "en": "Welcome to the cinema, babies and toddlers! Now you can cruise straight into the cinema with your baby pram!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/948091316E61C109C7897176C1C398E2/Naperokino_Drive-in-tapahtuma_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/948091316E61C109C7897176C1C398E2/Naperokino_Drive-in-tapahtuma_",
                "en": "http://www.stoa.fi/en/events/event/948091316E61C109C7897176C1C398E2/Naperokino_Drive-in-tapahtuma_"
            },
            "description": {
                "fi": "<p>Tervetuloa elokuviin vauva- ja taaperokansa! Nyt saa kruisailla vaunuilla sisälle leffateatteriin!</p><p>Naperokinon drive-in-tapahtumassa opetellaan elokuvissa käymistä lempeästi valaistussa ja mukavasti sisustetussa teatterisalissa. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille.</p><p>Kello 9.30 alkaen Stoan Teatterisalin ovet aukeavat vaunuille ja klo 10.00 alkaa dokumenttielokuva: My Octopus Teacher / Mustekala opettajana.</p><p>Rento esityspaikka ja -tilanne mahdollistavat syöttämisen/imettämisen, päiväuneksunnan sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa. <br> <br>Ikäsuositus: 0–3-vuotiaille kotijoukkojensa kanssa <br>Kieli: englanti, tekstitys suomi<br>Elokuvan kesto: elokuvan kesto 1h 30 min, ikäraja: sallittu <br>Vapaa pääsy, ei ennakkoilmoittautumista. Mukaan mahtuu 40 ensimmäistä vaunuyksikköä.</p>",
                "sv": "<p>Välkomna på film bebisar och knattar! Nu får man köra in med vagnen till biografen!</p><p>I Naperokinos drive-in-evenemang tränar man biobesök i en biosalong med mild belysning och bekväm inredning. Vid sidan av filmerna är Naperokino en mötesplats för små barn och deras vuxna.Naperokino är avsett för hemmamammor och -pappor, mor- och farföräldrar samt familjedagvårdare.</p><p>I Stoas teatersal erbjuds 0–3-åringar och deras föräldrar kl. 9.30–11.30 inhemska och utländska animerade filmer, som man kan komma och titta på fast bara en kort stund om gången.</p><p>Kl. 12–14 börjar småbarnens vila och då tittar man på långfilm som de vuxna får välja. Röstningen är i gång på Stoas FB-sida från och med början av september.<br>En lugn, trevlig föreställningsplats och -situation möjliggör matning/amning, dagsvila och bekantandet av biobesök i barnets takt. Toaletter och möjlighet till blöjbyte finns precis bakom hörnet.</p><p>Åldersrekommendation: 0–3 åringar med förälder.<br>Fritt inträde, kräver ingen förhandsanmälan.</p>",
                "en": "<p>Welcome to the cinema, babies and toddlers! Now you can cruise straight into the cinema with your baby pram!</p><p>The Babykino drive-in event teaches young children how to visit a cinema in a softly lit and comfortably decorated theatre hall.</p><p>In addition to the films, Babykino provides a meeting place for small children and their adults. The Babykino is intended for stay-at-home mothers and fathers, grandparents and family day-care providers.</p><p>Recommended age: 0–3-year-olds with their families<br>Free entry, no advance registration.</p>"
            },
            "name": {
                "fi": "Naperokino: Drive-in-tapahtuma",
                "sv": "Naperokino: Drive-in-tapahtuma",
                "en": "Naperokino: Drive-in-tapahtuma"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66562/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}