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

{
    "meta": {
        "count": 32765,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=226",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=224"
    },
    "data": [
        {
            "id": "kulke:67249",
            "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": 1348,
                "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: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:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1956,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:32",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.496484Z",
                    "last_modified_time": "2024-02-06T13:19:13.818300Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 796,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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": 1336,
                    "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:52",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.738883Z",
                    "last_modified_time": "2024-02-06T13:19:14.199532Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 620,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5976,
                    "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": 4827,
                    "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": 5031,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:669",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.230765Z",
                    "last_modified_time": "2024-02-06T13:19:17.537912Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 340,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut kulttuuritapahtumat (monitaide)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "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": 1102,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunkiuudistusalueet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1278",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "tanssitaide",
                        "danskonst",
                        "tanssit",
                        "danser"
                    ],
                    "created_time": "2023-08-16T05:19:38.809008Z",
                    "last_modified_time": "2023-08-16T05:19:38.809026Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2848,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssi",
                        "sv": "dans",
                        "en": "dance (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1409,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "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": 675,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 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": 1491307,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-05T13:12:05.056578Z",
                    "last_modified_time": "2025-11-05T13:12:05.056589Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780517.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491307/?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-11-05T13:12:04.982074Z",
            "last_modified_time": "2025-11-21T12:12:58.113346Z",
            "date_published": null,
            "start_time": "2025-11-21T08:00:00Z",
            "end_time": "2025-11-21T17: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": "Luvassa on taaperodiskoa, Ursan planetario -näytökset, lauantaihin valmistautumista, talon koristelua ja tanssimista somalinaisten voimauttavissa tansseissa.",
                "sv": "Det kommer att ordnas Småbarnsdisco (Taaperodisko), Ursas planetarievisningar, vi gör oss i ordning inför lördagen, dekorerar huset och dansar med i somaliska kvinnors kraftgivande danser.",
                "en": "The week promises activities such as a toddler disco, Ursa Planetarium shows, preparations for Saturday, decorating the house and dancing the empowering dances of Somali women."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F3A58427D809A012B0E2B87448D2B0D5/Valon_juhla_Kohti_valoa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F3A58427D809A012B0E2B87448D2B0D5/Ljusets_fest_Mot_ljuset",
                "en": "http://www.malmitalo.fi/en/events/event/F3A58427D809A012B0E2B87448D2B0D5/Celebration_of_light_Towards_the_light"
            },
            "description": {
                "fi": "<p>Luvassa on taaperodiskoa, Ursan planetario -näytökset, lauantaihin valmistautumista, talon koristelua ja tanssimista somalinaisten voimauttavissa tansseissa.</p><p>Kerätään huolet ja murheet poltettavaksi Maria Baric Companyn tuliteatterinäytökseen. Mukana mahdollisesti myös muita työpajoja!</p><p><b>Aikataulu</b> <br>klo 10–11 Taaperodisko, kirjasto <br>klo 14–14.30, 14.45–15.15 ja 15.30–16 Ursan Planetaario-näytökset (25 ihmistä per näytös)<br>klo 14–18 Lauantain yhteisruokailun valmistelu Varustamolla (kulttuurikokki Jyrki Tsutsunen, Kohtaus Ry, Varustamo/Waste&Feast)  <br>klo 15–18 Parven koristelua yhdessä asukkaiden kanssa (yhteistyössä Malmitalo ja Kaupunkiolohuone Kohtaus Malmi)  <br>klo 17–17.45 Tulilinnun kyynel –  murheidenkeruutyöpaja (Maria Baric Company), Malmitalon edustalla <br>klo 17.15–17.45 Buraanbur - somalinaisten voimauttavat tanssit, aulassa <br>klo 18–18.30 Pegasos-tuliteatteriesitys, (Maria Baric Company)</p><p><b>Taaperodisko</b> <br>Musiikkia ja diskopallon loistetta taaperoille ja aikuisille! Hauskoja tanssileikkejä ja pillimehut halukkaille janojuomaksi. Tilaan mahtuu rajallinen määrä bilettäjiä kerrallaan.</p><p><b>Ursan Planetaario -näytökset</b> <br>Valojen sammuessa planetaarion sisällä paljastuu kosmos pienoiskoossa: silmien tottuessa pimeään taivaalta erottuu tuhansittain tähtiä ja avaruuden olioita. Lumoavia planetaarionäytöksiä nähdään kolme kappaletta, sisään mahtuu 20 ihmistä kerrallaan.</p><p><b>Tulilinnun kyynel –  murheidenkeruutyöpaja </b> <br>Ennen illan tuliteatteriesitystä yleisöllä on mahdollisuus vierailla työpajapisteellä kirjailemassa tulilinnun kyyneliin omavalintainen viesti. Kävijöiden viestit kirjoitetaan tai piirretään feeniksin kyyneleen muotoisille paperilappusille, joiden sisään voi kätkeä mitä vain pieniä tai suuria suruja, murheita, harmeja tai huolia, joista haluaisi päästää irti. Tulilinnun kannettavaksi jätettyjä viestejä ei lueta, vaan Feeniks vie ne mukanaan liekkimereen polttaen ne esityksen aikana tuhkaksi ja symbolisoiden mahdollisuuksia löytää uutta voimaa mennä elämässä eteenpäin.</p><p><b>Maria Baric Company – Pegasos</b> <br>Maria Baric Company on kansainvälisesti palkittu itähelsinkiläinen teatteri, joka toimii monipuolisesti esittävän taiteen kentällä. Valon juhlassa nähdään juhlaa varten valmisteltu valonukketeatteria ja tulinukketeatteria yhdistelevä Pegasos, joka on osallistavan ulkoilmakonsertin muotoon puettu valoseikkailu, joka kutsuu kaikenikäiset yhteisölliseen juhlaan liekeiksi leimahtavien toiveiden, elävien tulien ja musiikillisten tarinoiden äärelle.</p><p>Pegasos on vuodesta 2006 toimineen ryhmän 35. kantaesitys, jossa Maria Baric Companyn taiteilijoiden rinnalla esiintyvät myös vapaaehtoiset itähelsinkiläiset seniorit – valon kantajat, jotka tuovat näyttämölle elämänkokemuksensa, läsnäolonsa ja yhteisönsä voiman. Teos on syntynyt itähelsinkiläisiin päiväkoteihin, kouluihin ja aluetapahtumiin jalkautuneista kohtaamisista – ammattitaiteilijoiden ja eri sukupolvien yhteisestä valomatkasta.</p><p><b>Parven koristelua yhdessä asukkaiden kanssa</b> <br>Malmitalon ja Kaupunkiolohuone Kohtaus Malmin talkooväen yhdessä järjestämä parven koristelutuokio, jossa parvi saa juhlavan asun lauantain yhteisruokailua varten.</p><p><b>Buraanbur - somalinaisten voimauttavat tanssit </b> <br>Voimaannuttava tanssiesitys, johon sinut on kutsuttu osallistumaan matalalla kynnyksellä.</p><p><b>Yhtä valon juhlaa koko viikko!</b><br><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/32FACFF71092F07E8EFC76783F3D9684/Valon_viikko_ja_Valon_juhla\">Tutustu koko Valon viikon ohjelmaan</a></u>.</p>",
                "sv": "<p>Det kommer att ordnas Småbarnsdisco (Taaperodisko), Ursas planetarievisningar, vi gör oss i ordning inför lördagen, dekorerar huset och dansar med i somaliska kvinnors kraftgivande danser.</p><p>Låt oss samla ihop vår oro och våra bekymmer för att bränna dem i Maria Baric Companys eldteaterföreställning. Andra verkstäder kan eventuellt också ingå!</p><p><b>Tidtabell</b><br>10.00–11.00 Småbarnsdiscot (Taaperodisko), biblioteket<br>14.00–14.30, 14.45–15.15 och 15.30–16.00 Ursas Planetarievisningar (25 personer per visning)<br>15.00–18.00 Dekorering av balkongen tillsammans med invånarna (i samarbete med Malms kulturhus och Kaupunkiolohuone Kohtaus Malmi)<br>17-17.45 Eldfågelns tårar – en verkstad för insamling av bekymmer (Maria Baric Company), framför Malms kulturhus<br>17.15–17.45 Buraanbur – somaliska kvinnors stärkande danser, i vestibulen<br>18.00–18.30 Pegasos-eldteaterföreställning, (Maria Baric Company)</p><p><b>Småbarnsdisco (Taaperodisko)</b><br>Musik och discobollens glamour för småbarn och vuxna! Roliga danslekar och sugrörssaft som törstsläckare för dem som vill ha. I lokalen ryms ett begränsat antal firare i taget.</p><p><b>Ursas Planetarievisningar</b><br>När ljuset släcks avslöjas kosmos i miniatyr i planetariet: när ögonen vänjer sig vid mörkret urskiljs tusentals stjärnor och rymdvarelser på himlen. Det ordnas tre förtrollande planetarievisningar: in ryms 30 personer i taget.</p><p><b>Eldfågelns tårar – en verkstad för insamling av bekymmer</b><br>Före kvällens eldteaterföreställning får publiken möjlighet att besöka verkstadspunkten för att skriva ett valfritt meddelande i eldfågelns tårar. Besökarnas meddelanden skrivs eller ritas på tårformade papperslappar, likt fenixens tårar, i vilka man kan gömma små eller stora sorger, bekymmer eller oro som man skulle vilja släppa taget om. De meddelanden som lämnas till eldfågeln som den sedan bär med sig läses inte, utan förs av Fenix till eldhavet, där de bränns till aska under föreställningen och symboliserar möjligheterna att hitta ny styrka för att gå vidare i livet.</p><p><b>Maria Baric Company – Pegasos</b><br>Maria Baric Company är en internationellt prisbelönt teater i Östra Helsingfors, som verkar mångsidigt på scenkonstfältet. Under Ljusets fest ses Pegasos som beretts för festen och som förenar ljus- och elddockteater. Pegasos är ett ljusäventyr i form av en inkluderande utomhuskonsert som bjuder in alla ålderskategorier på en gemensam fest med önskningar som flammar upp, levande eld och musikaliska berättelser.</p><p>Pegasos är den 35:e premiären för gruppen, som har varit verksam sedan 2006, och förutom artisterna i Maria Baric Company medverkar även frivilliga seniorer från östra Helsingfors – ljusbärare som tar med sig sin livserfarenhet, sin närvaro och kraften i sin gemenskap på scenen. Verket har skapats av möten som skett på daghem, i skolor och under regionala evenemang i östra Helsingfors – en gemensam ljusresa för professionella konstnärer och olika generationer.</p><p><b>Dekorera balkongen tillsammans med invånarna</b><br>I dekorationsstunden av balkongen som gemensamt ordnas av talkogänget vid Malms kulturhus och Kaupunkiolohuone Kohtaus Malmi kläs balkongen festligt inför lördagens gemensamma måltid.</p><p><b>Buraanbur – somaliska kvinnors stärkande danser</b><br>En stärkande dansföreställning där du bjuds in att delta med låg tröskel.</p><p><b>En hyllning av ljuset hela veckan!</b><br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/32FACFF71092F07E8EFC76783F3D9684/Ljusets_vecka_\">Se hela programmet under Ljusets vecka.</a></u>.</p>",
                "en": "<p>The week promises activities such as a toddler disco, Ursa Planetarium shows, preparations for Saturday, decorating the house and dancing the empowering dances of Somali women.</p><p>We will collect our grief and sorrows and set them aflame at Maria Baric Company’s fire theatre performance. Other workshops may also be included!</p><p><b>Schedule</b><br>10.00–11.00 Toddler disco, library<br>14.00–14.30, 14.45–15.15 and 15.30–16.00 Planetarium shows by Ursa (25 people per show)<br>15.00–18.00 Decorating the balcony together with residents (in cooperation with Malmitalo and the urban living room Kohtaus Malmi)<br>17.00–17.45 Tulilinnun kyynel (Tear of a Firebird) – a workshop on collecting sorrows (Maria Baric Company)<br>17.15–17.45 Buraanbur – empowering dances by Somali women<br>18.00–18.30 Pegasos fire theatre performance (Maria Baric Company)</p><p><b>Toddler disco</b><br>Music and sparkling disco balls for toddlers and adults alike! Fun dance games – and juice cartons for the thirsty ones. The space can accommodate a limited number of partygoers at a time.</p><p><b>Ursa Planetarium shows</b><br>When the lights go out, the inside of the planetarium shows the whole cosmos in miniature: as your eyes adjust to the dark, you can start to see thousands of stars and space creatures in the sky. The day will offer three of these enchanting planetarium shows, seating 30 people at a time.</p><p><b>Tear of a Firebird – workshop for collecting sorrows</b><br>Before the evening's fire theatre performance, the audience members will have the chance to visit a workshop and write down a message of their choice to the tears of a firebird. The visitors' messages will be written or drawn on pieces of paper in the shape of a phoenix’s tears, inside which they can hide any small or big sorrows, grievances, worries or concerns they would like to let go of. These messages left for the firebird to carry away will not be read, instead the phoenix will carry them to a sea of flames and burn them to ashes during the performance, symbolising the possibility of finding new strength to move forward in life.</p><p><b>Maria Baric Company – Pegasos</b><br>Maria Baric Company is an internationally acknowledged theatre company based in East Helsinki, working across the field of performing arts. For the Festival of Light, the company has put together the show Pegasos, a combination of light puppet theatre and fire puppetry. It is an adventure of light in the form of an inclusive outdoor concert that invites people of all ages to a communal celebration of wishes flaming to life, living fires and stories accompanied by music.</p><p>Pegasos is the 35th premiere of the group founded in 2006. Alongside the artists of the Maria Baric Company, the show will feature volunteer seniors from East Helsinki – light bearers who bring their life experience, their presence and the power of their community to the stage. The work is based on encounters that have taken place in daycare centres, schools and regional events in East Helsinki – a shared journey of light by professional artists and different generations.</p><p><b>Decorating the gallery together with residents</b><br>A decorating session organised by Cultural Centre Malmitalo and the volunteers of the urban living room Kohtaus Malmi, where the gallery will be given a festive look for Saturday's communal meal.</p><p><b>Buraanbur – empowering dances of Somali women</b><br>An empowering dance performance that also invites the audience to dance.</p><p><b>Celebration of light, all week long!</b><br><u><a href=\"https://malmitalo.fi/en/events/event/32FACFF71092F07E8EFC76783F3D9684/Ljusets_vecka_\">See the full Week of Light programme.</a></u>.</p>"
            },
            "name": {
                "fi": "Valon juhla: Kohti valoa – Valon viikko",
                "sv": "Ljusets fest: Mot ljuset – Ljusets vecka",
                "en": "Celebration of light: Towards the light – Week of Light"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67249/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67221",
            "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": 1348,
                "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: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:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1956,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:33",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.509726Z",
                    "last_modified_time": "2024-02-06T13:19:13.839978Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 760,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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": 1336,
                    "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": 5976,
                    "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": 4827,
                    "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": 5031,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:669",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.230765Z",
                    "last_modified_time": "2024-02-06T13:19:17.537912Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 340,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut kulttuuritapahtumat (monitaide)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "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": 1102,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunkiuudistusalueet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1409,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 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:p6529",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "noh-teatteri",
                        "noo-teatteri",
                        "noh theater"
                    ],
                    "created_time": "2023-08-16T05:16:17.404853Z",
                    "last_modified_time": "2023-08-16T05:16:17.404870Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 542,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "no-teatteri",
                        "sv": "no-teater",
                        "en": "noh theatre"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491222,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-30T09:13:45.116325Z",
                    "last_modified_time": "2025-10-30T09:13:45.116341Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778837.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491222/?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-30T09:13:44.942792Z",
            "last_modified_time": "2025-11-21T12:12:56.162418Z",
            "date_published": null,
            "start_time": "2025-11-17",
            "end_time": "2025-11-22",
            "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": "Tule juhlimaan Valon viikkoa, sytyttämään sisäinen lamppusi ja parsimaan valoa kasaan.",
                "sv": "Kom och fira Ljusets vecka, tänd din interna lampa och samla ihop ljuset.",
                "en": "Come celebrate the Week of Light, switch on your inner lamp and patch up the light."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/32FACFF71092F07E8EFC76783F3D9684/Valon_viikko",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/32FACFF71092F07E8EFC76783F3D9684/Ljusets_vecka_",
                "en": "http://www.malmitalo.fi/en/events/event/32FACFF71092F07E8EFC76783F3D9684/Week_of_Light_"
            },
            "description": {
                "fi": "<p>Tule juhlimaan Valon viikkoa, sytyttämään sisäinen lamppusi ja parsimaan valoa kasaan.</p><p>Valon viikolla lennetään satulinnun lailla muun muassa planetaarioon, Taaperodiskoon ja tuliteatteriin!</p><p>Malmitalon Valon viikko on asukkaiden toiveiden pohjalta luotu tapahtumakokonaisuus, jonka tarkoitus on tuoda lähialueelle valoa taiteen ja yhdessäolon myötä.<br> <br>Tervetuloa kertomaan tarinasi, esittämään toiveesi, osallistumaan ja iloitsemaan!</p><p>Työväenopiston opiskelijoiden valotaidetta nähtävillä aulassa koko viikon.<br> <br><b>Valon viikon ohjelma:</b></p><p><b>ma 17.11.</b><br>15–17 Korttityöpaja, aula<br>16–17 Singa-karaoke, pieni sali</p><p><b>ti 18.11.</b><br>15–17 Koristellaan piparkakkuja<br>16–18 Malmi/Kollektiivi: videoteos Malmitalon edustalla<br>16–18 Annamari Eskola tavattavissa galleriassa</p><p><b>ke 19.11.</b><br>15–17 Lyhtytyöpaja<br>16–18 Malmitalo seikkailee, parvi<br>17–18 Lyhtykävely, lähtö aulasta</p><p><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/D5D2043957E5392A325E6C3B6A351879/Valon_pisaroita\">Lisää ma-ke ohjelmasta</a></u></p><p><b>to 20.11. Lasten ja nuorten harrastusmessut</b> <br>Lapsen oikeuksien päivänä talo on täynnä harrastuskokeiluja, työpajoja, musiikki- ja tanssiesityksiä!</p><p><b>to 20.11. aikataulut</b><br>14.30 Ilmainen välipala koululaisille parvella  <br>14.30–19 Harrastusmessut aulassa   <br>14.30–19.30 Pop-up-nuta 2. krs, näyttely Lapsen oikeuksista (Pohjois-Helsingin kuvataidekoulun ja Taito Etelä-Suomen oppilaat), parvi ja aula <br>16–17 K-pop näytetunti, tanssisali (paikkoja rajoitetusti) <br>16–19 Kurkistuksia kulttuuriharrastuksiin Malmitalossa  <br>17.30–19.30 Alueellinen vanhempainilta <br>18.00 Pohjois-Helsingin musiikkiopiston elokuvamusiikkikonsertti, Malmisali<br>18.45 Helsingin tanssiopiston esitys, aula<br><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/0C1659AF8E3373CDF3063B13ADD52AF0/Lapsen_oikeuksien_p_iv___Malmitalolla___Lasten_ja_nuorten_harrastusmessut\">Lisää harrastusmessujen ohjelmasta</a></u></p><p><b>pe 21.11. Valon juhla: Kohti valoa!</b> <br>Valon viikon perjantaita vietetään vauhdikkaasti mm. tanssin, yhteisruokailun, työpajojen ja tuliteatteriesityksen parissa.</p><p><b>pe 21.11. aikataulut</b><br>10–11 Taaperodisko <br>14–14.30, 14.45–15.15 ja 15.30–16 Ursan Planetaario-näytökset (25 ihmistä per näytös) <br>14–18 Lauantain yhteisruokailun valmistelu (kulttuurikokki Jyrki Tsutsunen, Kohtaus Ry, Varustamo/ Waste&Feast) <br>15–18 Parven koristelua yhdessä (yhteistyössä Malmitalo ja Kaupunkiolohuone Kohtaus Malmi)  <br>17–17.45 Tulilinnun kyynel –  murheidenkeruutyöpaja (Maria Baric Company) <br>17.15–17.45 Buraanbur – somalinaisten voimauttavat tanssit <br>18–18.30 Pegasos-tuliteatteriesitys, (Maria Baric Company) <br><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/F3A58427D809A012B0E2B87448D2B0D5/Valon_juhla__Kohti_valoa\">Lisää perjantain ohjelmasta</a></u></p><p><b>la 22.11. Valon juhla: Valoa!</b> <br>Valon viikko huipentuu ja puuhaa riittää koko perheelle.</p><p><b>la 22.11. aikataulut</b><br>10–12 Lintutyöpaja (Nukketeatteri PikkuKulkuri), aulassa <br>12.30–13 Megamuskari (Tuuli Paasolainen ja Sergei Sokolov), aulassa <br>13–15 Yhteyttä ja iloa Malmilla -valokuvatyöpaja (Mun Malmi) <br>13.30–14 Lasten ja nuorten vokaaliyhtye (Laulustudio Erida), aulassa<br>12–14 Parsi, paikkaa ja loista pimeässä (Taito Etelä-Suomi)<br>12-14 Paperikukkatyöpaja (Pohjois-Helsingin kuvataidekoulu) <br>12.30–13 ja 13.30–14 Black Light -kehonhuolto Pienessä salissa (alueliikuttaja Jaakko) <br>14–15.30 Kohtaussoppa-yhteisruokailu parvella (kulttuurikokki Jyrki Tsutsunen & Kohtaus ry) <br>14–14.45 Ooppera-aarioita kirjastolla (Operaatio ry)<br>14-16 japanilainen kalligrafiatyöpaja<br>14.45–15.15 Pohjois-Helsingin musiikkiopiston torvet parvella <br>16–19 Malmi/Kollektiivi: videoteos (Demiana Alinets), Malmitalon edustalla <br>16.45–17.45 Aulatanssit Banda Caribe Helsinki. Tanssiopastusta The Dancing Queensilta <br><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/51525B799A908BCBEC21C91DFA0B1D2E/Valon_juhla__Valoa\">Katso lisää ohjelmasta</a></u></p>",
                "sv": "<p>Kom och fira Ljusets vecka, tänd din interna lampa och samla ihop ljuset.</p><p>Under Ljusets vecka flyger man likt sagofågeln till bland annat Ursas planetarium, Småbarnsdiscot (Taaperodisco) och Maria Baric Companys Eldteater!</p><p>Ljusets vecka i Malms kulturhus är en händelsehelhet som har skapats utifrån invånarnas önskemål och vars syfte är att ge närområdet ljus såväl fysiskt som psykiskt med hjälp av konst och samvaro.</p><p>Välkommen att berätta din historia, framföra dina önskemål, delta och ha kul!</p><p><b>Programmet under Ljusets vecka:</p><p>Mån–Ons 17–19.11</b><br>I början av veckan ordnas små överraskningar i vestibulen och på balkongen utifrån invånarnas önskemål. Bland annat verkstäder, glöggservering och karaoke utlovas. Programmet ordnas må–on kl. 14.00–18.00.</p><p><b>Tors 20.11 Hobbymässa för barn och unga</b><br>Under dagen för barnets huset är fullt av hobbyförsök, verkstäder, musik- och dansuppträdanden!</p><p><b>Tidtabell för 20.11</b><br>14.30 Gratis mellanmål för skolbarn på övre balkongen<br>14.30–19.00 Hobbymässa i vestibulen<br>14.30–19.30 Pop-up-ungdomsgården på 2:a våningen, utställning om barns rättigheter (av elever från Norra Helsingfors bildkonstskola och Taito Södra Finland), balkongen och vestibulen<br>16.00–17.00 K-pop provtimme, danssalen (begränsat antal platser, se programsidan)<br>16.00–19.00 Öppna dörrar på Dansinstitutet, Norra Helsingfors musikinstitut, Bildkonstskolan samt Hantverks- och designskolan<br>17.30–19.30 Områdesvist föräldramöte<br>18.00 Norra Helsingfors musikinstituts filmmusikkonsert, stora auditoriet<br>18.45 Dansinstitutets dansuppvisning, danssalen<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/0C1659AF8E3373CDF3063B13ADD52AF0/Children_s_culture_for_all__Hobby_fair_for_children_and_young_people\">Läs mer om programmet för hobbymässan</a></u></p><p><b>Fre 21.11 Ljusets fest: Mot ljuset!</b><br>Fredagen under Ljusets vecka firas fartfyllt bland annat med dans, gemensam måltid, verkstäder och en eldteaterföreställning.</p><p><b>Tidtabell för fredagen 21.11</b><br>10.00–11.00 småbarnsdiscot (Taaperodisko)<br>14.00–14.30, 14.45–15.15 och 15.30–16.00 Ursas Planetarievisning (25 personer per visning)<br>14.00–18.00 Förberedelser inför lördagens gemensamma måltid (kulturkocken Jyrki Tsutsunen, Kohtaus Ry, Varustamo/Waste&Feast)<br>15.00–18.00 Dekorering av balkongen tillsammans med invånarna (i samarbete med Malms kulturhus och Kaupunkiolohuone Kohtaus Malmi)<br>17.00–17.45 Eldfågelns tårar – en verkstad för insamling av bekymmer (Maria Baric Company)<br>17.15–17.45 Buraanbur – somaliska kvinnors danser som stärker självförtroendet<br>18.00–18.30 Pegasos-eldteaterföreställning, (Maria Baric Company)<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/F3A58427D809A012B0E2B87448D2B0D5/Ljusets_fest__Mot_ljuset\">Läs mer om fredagens program</a></u></p><p><b>Lör 22.11 Ljusets fest: Ljus!</b><br>Ljusets vecka kulminerar i en evenemangsdag på lördagen, med massor av sysselsätning för hela familjen.</p><p><b>Tidtabell för lördag 22.11</b><br>10.00–12.00 Fågelverkstad i vestibulen<br>12.30–13.00 Megamusiklekis (Tuuli Paasolainen och Sergei Sokolov), i vestibulen<br>13.00–15.00 Kontakt och glädje i Malm – fotoverkstad <br>13.30–14.00 Vokalorkester för barn och unga , i vestibulen<br>12.00–14.00 Reparera, lappa och lys upp i mörkret – tillverka din egen reflex (Taito Södra Finland)<br>12.00–14.00 Papperblomsterverkstad<br>12.30–13.00 och 13.30–14.00 Black Light kroppsvård i Lilla salen <br>14.00–15.30 Gemensamma måltiden Kohtaussoppa på balkongen <br>14.00–14.45 Operaarior på biblioteket <br>14.00-16.00 Japansk kalligrafiverkstad, mötesrum 3<br>14.45–15.15 Hornen från Norra Helsingfors musikinstitut på balkongen<br>16.00–19.00 Malmi/Kollektiv: ett videoverk utanför Malms kulturhus<br>16.45–17.45 Dans i vestibulen med Banda Caribe Helsinki. Danslektioner med The Dancing Queens<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/51525B799A908BCBEC21C91DFA0B1D2E/Ljusets_fest__Ljus_\">Läs mer om lördagens program</a></u></p><p>Dessutom finns arbetarinstitutets studerandes fotokonst framlagd i vestibulen under tiden må–lö 17–22.11.</p>",
                "en": "<p>Come celebrate the Week of Light, switch on your inner lamp and patch up the light.</p><p>During the Week of Light, you can spread your wings and glide to Ursa Planetarium, toddler disco and Maria Baric Company's fire theatre show!</p><p>Malmitalo's Week of Light is a series of events designed based on the wishes of local residents. Through the means of art and togetherness, it aims to bring light to the neighbourhood, both physically and mentally.</p><p>Come by to tell your story, share your own requests, take part and have fun!</p><p><b>Week of Light programme:</b></p><p><b>Mon 17.11.</b><br>15–17 Card workshop, lobby<br>16–17 Singa-karaoke, small hall</p><p><b>Tue 18.11.</b><br>15–17 Gingerbread decorating<br>16–18 Malmi/Kollektiivi: video artwork in front of Malmitalo<br>16–18 Annamari Eskola available to meet in the gallery</p><p><b>Wed 19.11.</b><br>15–17 Lantern workshop<br>16–18 Malmitalo adventures, balcony<br>17–18 Lantern walk, departing from the lobby</p><p><u><a href=\"https://malmitalo.fi/en/events/event/D5D2043957E5392A325E6C3B6A351879/Valon_pisaroita\">More about the Mon-Wed programme</a></u></p><p><b>Thu 20 November Hobby fair for children and young people</b><br>On Children's Rights Day, Cultural Centre Malmitalo will host a hobby fair for children and young people. The centre will be filled with opportunities to try out different hobbies, as well as workshops and music and dance performances!</p><p><b>Thu 20 November schedule</b><br>14.30 Free snacks for schoolchildren in the upper gallery<br>14.30–19.00 Hobby fair in the lobby<br>14.30–19.30 Pop-up youth centre on the 2nd floor, exhibition on children's rights, gallery and lobby<br>16.00–17.00 K-pop sample lesson at the ballroom (limited number of places, please see the programme page)<br>16.00–19.00 Open doors at the Helsinki Dance Institute, the Music Institute of Northern Helsinki, art school and handicraft and design school.<br>17.30–19.30 Regional parents' evening<br>18.00 Film music concert, large auditorium<br>18.45 Dance performance, ballroom<br><u><a href=\"https://shorturl.at/XQrLn\">More about the hobby fair programme</a></u></p><p><b>Friday 21 November Celebration of light: Towards the light!</b><br>The Friday of the Week of Light will be an action-packed day of dancing, communal meals, workshops, a fire theatre performance and more.</p><p><b>Fri 21 November schedule</b><br>10.00–11.00 Toddler disco<br>14.00–14.30, 14.45–15.15 and 15.30–16.00 Planetarium shows by Ursa (25 people per show)<br>14.00–18.00 Preparations for Saturday's communal meal<br>15.00–18.00 Decorating the gallery together with residents<br>17.00–17.45 Tulilinnun kyynel (Tear of a Firebird) – a workshop on collecting sorrows<br>17.15–17.45 Buraanbur – empowering dances by Somali women<br>18.00–18.30 Pegasos fire theatre performance <br><u><a href=\"https://shorturl.at/xmURC\">More about Friday's programme</a></u></p><p><b>Saturday 22 November Celebration of light: More light!</b><br>The Week of Light culminates in a fun-packed event day on Saturday offering plenty to do for the whole family.</p><p><b>Sat 22 November schedule</b><br>10.00–12.00 Bird workshop, in the lobby<br>12.30–13.00 Musical mega playschool (Tuuli Paasolainen & Sergei Sokolov), in the lobby<br>13.00–15.00 Connection and joy in Malmi photography workshop <br>13.30–14.00 Children and youth vocal ensemble, in the lobby<br>12.00–14.00 Darn, patch and shine in the dark – make your own safety reflector<br>12.00–14.00 Paper flower workshop<br>12.30–13.00 and 13.30–14.00 Black Light body maintenance class in the small auditorium<br>14.00–15.30 Kohtaussoppa community meal in the gallery <br>14.00–14.45 Opera arias in the library<br>14.00-16.00 Japanese calligraphy workshop, meeting room 3<br>14.45–15.15 Music Institute of Northern Helsinki’s horn players in the balcony<br>16.00–19.00 Malmi/Collective: video installation front of Malmitalo<br>16.45–17.45 Dance in the lobby by Banda Caribe Helsinki. Dance lessons from The Dancing Queens.<br><u><a href=\"https://shorturl.at/R5KA7\">Read more about Saturday's programme</a></u></p><p>Light art by the students of the Adult Education Centre will be showcased in the lobby from Monday 1</p>"
            },
            "name": {
                "fi": "Valon viikko",
                "sv": "Ljusets vecka",
                "en": "Week of Light"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67221/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnjojjpke",
            "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": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz7aem",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.584781Z",
                    "last_modified_time": "2023-12-13T11:20:12.584810Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 328,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Saunalahti",
                        "sv": "Bastvik",
                        "en": "Saunalahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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": 7187,
                    "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:p4878",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ferieverksamhet",
                        "semesteraktivitet",
                        "semesteraktiviteter"
                    ],
                    "created_time": "2023-08-16T05:18:42.550667Z",
                    "last_modified_time": "2023-08-16T05:18:42.550685Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 326,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lomatoiminta",
                        "sv": "semesterverksamhet",
                        "en": "holiday activities"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?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": "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": 1493837,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-18T11:57:37.408085Z",
                    "last_modified_time": "2025-11-18T11:57:37.408099Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ae7a3dec-5cc9-4db3-a090-c050d4db082b.png",
                    "name": "",
                    "cropping": "205,0,1075,870",
                    "photographer_name": "",
                    "alt_text": "Pelataan bingoa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493837/?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-11-18T11:57:51.049371Z",
            "last_modified_time": "2025-11-21T11:43:03.396182Z",
            "date_published": "2025-11-18T12:30:00Z",
            "start_time": "2025-12-30T11:00:00Z",
            "end_time": "2025-12-30T12: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": "Pelataan bingoa Messissä"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kivaa joululomaohjelmaa lapsille ja nuorille Messissä. Pelataan bingoa! Jokainen bingo voittaa pienen palkinnon.</p>"
            },
            "name": {
                "fi": "Bingo"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Messi"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjojjpke/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66807",
            "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": 1348,
                "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:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1956,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1336,
                    "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": 5976,
                    "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": 4827,
                    "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": 5031,
                    "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": 1102,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunkiuudistusalueet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1409,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491060,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-09T10:14:28.015798Z",
                    "last_modified_time": "2025-10-09T10:14:28.015814Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775936.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491060/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-09T08:13:42.501958Z",
            "last_modified_time": "2025-11-21T09:12:40.235601Z",
            "date_published": null,
            "start_time": "2025-12-11T15: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": "Pohjois-Helsingin musiikkiopiston soitinryhmien ja musiikkipajojen yhteiskonsertti kuullaanMalmitalon Pienessä salissa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CC0CBECB0236582DD2E73A59BAAC6653/PHMO_Muskarilaisten_konsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CC0CBECB0236582DD2E73A59BAAC6653/PHMO_Muskarilaisten_konsertti",
                "en": "http://www.malmitalo.fi/en/events/event/CC0CBECB0236582DD2E73A59BAAC6653/PHMO_Muskarilaisten_konsertti"
            },
            "description": {
                "fi": "<p>Pohjois-Helsingin musiikkiopiston soitinryhmien ja musiikkipajojen yhteiskonsertti kuullaanMalmitalon Pienessä salissa.</p><p>Vapaa pääsy! <br> <br>Pohjois-Helsingin musiikkiopisto on monipuolinen, osaava ja innostava Malmitalossa toimiva kulttuurivaikuttaja, joka tarjoaa mahdollisuuden opiskella musiikkia pätevien ammattilaisten johdolla. <br> <br>Opetus on päämäärätietoista, tasolta toiselle etenevää ja antaa oppilaalle valmiuksia ilmaista itseään musiikin kautta. Lisätietoa toiminnasta: <a href=”https://www.phmo.fi/”>phmo.fi</a></p><p>Kesto: 1 tunti<br>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "PHMO: Muskarilaisten konsertti",
                "sv": "PHMO: Muskarilaisten konsertti",
                "en": "PHMO: Muskarilaisten konsertti"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66807/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20001909",
            "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": [
                {
                    "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-3771653/?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/iikka-kivi-erityinen-luontosuhde-helsingin-kaupunginteatteri-20001909/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/iikka-kivi-erityinen-luontosuhde-helsingin-kaupunginteatteri-20001909/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/iikka-kivi-erityinen-luontosuhde-helsingin-kaupunginteatteri-20001909/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235436,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:42.668169Z",
                    "last_modified_time": "2025-02-17T11:16:42.668189Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/iikkakivi_lippupiste_222.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/235436/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T20:16:28.858651Z",
            "last_modified_time": "2025-11-21T00:14:25.977435Z",
            "date_published": null,
            "start_time": "2025-11-20T17: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": "Iikka Kivi - Erityinen luontosuhde Ilmapiirin kiristyessä ja jakolinjojen syventyessä on tärkeää muistaa, että yksi asia on meille kaikille yhteinen: Suomen luo"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/iikka-kivi/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/iikka-kivi/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/iikka-kivi/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Iikka Kivi - Erityinen luontosuhde</p><p>Ilmapiirin kiristyessä ja jakolinjojen syventyessä on tärkeää muistaa, että yksi asia on meille kaikille yhteinen: Suomen luonto.</p><p>Koomikko Iikka Kiven stand up -soolonäytös Erityinen luontosuhde herättelee suomalaisia kokemaan, vaalimaan ja suojelemaan omaa suhdettaan luontoon sekä kysyy, miten karhunkaatajien kansan jälkeläisistä tuli valkoposkihanhista stressaantuvia sähköskuuttaajia.</p><p>Hyväntuulisen piikikkäässä esityksessä esiintyy laaja joukko suomalaisia otuksia hupenevista hömötiaisista roimasti runsastuvaan kesämökkeilijäkantaan. Vaikka aihe on vakava ja luonnon tila huono, esitys ei keskity saarnaamiseen tai syyllistämissormen heilutteluun, vaan pyrkii ennen kaikkea innostamaan, löytämään ratkaisuja ja kannustamaan ihmisiä löytämään oman suhteensa luontoon.</p><p>Iikka Kiven loppuunmyydyille katsomoille esitetty soolo \"Spede on kuollut\" nähtiin vuonna 2019. Uutta sooloa onkin odotettu kuin kevätmuuttajia takatalven keskellä!</p>"
            },
            "name": {
                "fi": "Iikka Kivi - Erityinen Luontosuhde"
            },
            "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:20001909/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000265",
            "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": 1942,
                    "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-20000265/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000265/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000265/?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:41.096315Z",
            "last_modified_time": "2025-11-21T00:14:25.873880Z",
            "date_published": null,
            "start_time": "2025-11-20T16: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:20000265/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19506331",
            "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-19506331/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506331/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506331/?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:25.214440Z",
            "last_modified_time": "2025-11-21T00:14:25.775183Z",
            "date_published": null,
            "start_time": "2025-11-20T16: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:19506331/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20539236",
            "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-2503579/?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/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539236/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539236/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539236/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1461551,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-11T10:15:48.431415Z",
                    "last_modified_time": "2025-08-11T10:15:48.431434Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hkt12lahjaa222.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/1461551/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-11T10:15:53.859902Z",
            "last_modified_time": "2025-11-21T00:14:25.634667Z",
            "date_published": null,
            "start_time": "2025-11-20T08: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": "Mauri Kunnas Kaksitoista lahjaa Joulupukille Rakastettu klassikko Pienen näyttämön lämpiö – Eläintarhantie 5 Ensi-ilta 1."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Mauri Kunnas<br><strong>Kaksitoista lahjaa Joulupukille</strong><br>Rakastettu klassikko</p><p>Pienen näyttämön lämpiö – Eläintarhantie 5<br>Ensi-ilta 1.11.2018<br>Noin 40 min, ei väliaikaa<br>Soveltuu 3-vuotiaasta ylöspäin.<br>10 €</p><p><strong>Mauri Kunnaksen rakastettu klassikkotarina taiotaan joulun aikaan eläväksi pienen näyttämön lämpiöön.Joulupukin kylässä, Korvatunturilla, käy kova vilske ja hyörinä, kun tonttujen suureen joulujuhlaan on enää kaksitoista päivää.<br></strong><br>Ville-tonttu pitää joulusta hurjan paljon ja lahjojen antaminen on parasta mitä hän tietää. Mutta Villellä on pulma. Miten Joulupukkia voisi ilahduttaa? Hän keksii antaa Joulupukille lahjan jokaisena päivänä ennen joulua. Ja hauskaahan siitä tulee, kun kaikki ei sujukaan suunnitelmien mukaan. Tonttupojan tempaukset onnellistuttavat kiireen keskellä ja tuovat hyvän joulumielen. Joulukylässä tapaat Ville-tontun, Joulupukin, Joulumuorin, oikeita ja sulavia poroja, Rekku-koiran, kissan ja tonttuväkeä!</p><p>Rooleissa: Sanna-June Hyde, Kaisa Torkkel ja Juha Jokela</p><p>Esitysoikeuksia valvoo Agency North / Suomen Näytelmäkirjailijat ja Käsikirjoittajat.</p>"
            },
            "name": {
                "fi": "Kaksitoista Lahjaa Joulupukille"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Pieni Näyttämö LÄMPIÖ"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20539236/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20304267",
            "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-3313175/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-esteeton-kulissikierros-helsingin-kaupunginteatteri-20304267/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-esteeton-kulissikierros-helsingin-kaupunginteatteri-20304267/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-esteeton-kulissikierros-helsingin-kaupunginteatteri-20304267/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235440,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:44.688704Z",
                    "last_modified_time": "2025-02-17T11:16:44.688724Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/esteekierros222.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/235440/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-27T15:15:54.925278Z",
            "last_modified_time": "2025-11-20T21:15:16.066824Z",
            "date_published": null,
            "start_time": "2025-11-20T14: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": "Esteetön kulissikierros Esteettömällä kulissikierroksella pääset tutustumaan kulissien taakse pyörätuolilla."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-esteetoen-kulissikierros-3313175/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-esteetoen-kulissikierros-3313175/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/helsingin-kaupunginteatteri-esteetoen-kulissikierros-3313175/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p><strong>Esteetön kulissikierros</strong></p><p>Esteettömällä kulissikierroksella pääset tutustumaan kulissien taakse pyörätuolilla.<br>Edellytämme oman avustajan mukaan ottamista. Yksi pyörätuolilippu sisältää aina myös yhden avustajan lipun.</p><p>Kierroksen sisältö riippuu ajankohdasta, mutta tyypillisesti tutustumme lavastuselementteihin, lavastamoon, verstaisiin ja näyttämöllekin. <br>Kierroksen kesto on n. 1 tunti. Kierros lähtee suuren näyttämön lämpiöstä, Eläintarhantie 5. Ovet lämpiöön avataan puoli tuntia ennen. </p><p>Lipun hinta 12 euroa, sisältää avustajan lipun. Varaa paikkasi ja osta lippu kierrokselle Kaupunginteatterin lipunmyynnistä tai Lippu.fin verkkokaupasta. </p><p>Lämpimästi tervetuloa!</p>"
            },
            "name": {
                "fi": "Esteetön Kulissikierros"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Suuri näyttämö LÄMPIÖ"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20304267/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm5yqe6bq",
            "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": "espoo_le:agggfz65nu",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.890916Z",
                    "last_modified_time": "2023-12-13T11:20:11.890936Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 288,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Karhusuo",
                        "sv": "Björnkärr",
                        "en": "Karhusuo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67mm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.393211Z",
                    "last_modified_time": "2023-12-13T11:20:12.393233Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 342,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kauklahti",
                        "sv": "Köklax",
                        "en": "Kauklahti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?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: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: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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5yqfanm/?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": 1491029,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-08T07:45:06.398951Z",
                    "last_modified_time": "2025-10-08T07:45:06.398966Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/d5447785-399b-4a30-8c8f-49c0a38675a6.png",
                    "name": "Kirjastokaveri.",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Viisi erilaista piirrettyä ihmishahmoa. Eri-ikäisiä, eri kulttuuritaustoista.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491029/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-13T06:01:51.445376Z",
            "last_modified_time": "2025-11-20T13:30:32.255890Z",
            "date_published": null,
            "start_time": "2025-11-20T15:00:00Z",
            "end_time": "2025-11-20T17: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": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!",
                "en": "Want to come to the library but you find it hard for language or culture matters? Our  library buddy volunteers help you in your own language. "
            },
            "info_url": null,
            "description": {
                "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p><p>BENGALIN-, HINDIN-, NEPALIN- JA PUNJABINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:</p><p><br></p><p><strong>Joka torstai klo 17–19:</strong></p><ul><li>torstaisin 23.10 - 18.12.2025.</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language.</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p>MEET A BENGALI, HINDI, NEPALI AND PUNJABI SPEAKING LIBRARY BUDDY:</p><p><br></p><p><strong>Every Thursday at 17-19:</strong></p><ul><li>Thursdays 23.10. - 18.12.2025</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": " PERUTTU: Kirjastokaveri: BENGALI, HINDI, NEPALI, PUNJABI",
                "en": "CANCELLED: Library buddy: BENGALI, HINDI, NEPALI, PUNJABI"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Aula",
                "en": "Lobby"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5yqe6bq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22nwra",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15417",
                "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:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4952,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "description": null,
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66oi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.151726Z",
                    "last_modified_time": "2023-12-13T11:20:12.151743Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3529,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Leppävaara",
                        "sv": "Alberga",
                        "en": "Leppävaara"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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: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": 7187,
                    "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:agmk22n23q/?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": 153076,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-15T10:57:29.523947Z",
                    "last_modified_time": "2024-03-15T10:57:29.523981Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/pexels-porapak-apichodilok-346709.jpg",
                    "name": "",
                    "cropping": "501,0,2499,1998",
                    "photographer_name": "",
                    "alt_text": "ihminen soittaa ukulelea",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153076/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-08T11:17:32.543222Z",
            "last_modified_time": "2025-11-20T12:41:40.975855Z",
            "date_published": null,
            "start_time": "2025-11-20T14:30:00Z",
            "end_time": "2025-11-20T15: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": "Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Osallistuminen on maksutonta.",
                "en": "Welcome to the Espoo City Library Intermediate Ukulele Group. We play popular Finnish and English tunes. Participation is free of charge and no pre-registration"
            },
            "info_url": null,
            "description": {
                "fi": "<p>PERUUTETTU 20.11</p><p>Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Välillä haastamme myös itseämme soittamalla melodioita ja opettamalla uusia sointuja ja komppeja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Olet aina tervetullut mukaan! Kirjastolla on myös ukuleleja joita voit lainata tunnin ajaksi.</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta</p><p><br></p><p>Ryhmä kokoontuu torstaisin klo 16.30-17.30 Sellon kirjaston Jaminurkassa. Ensimmäinen tunti on torstaina 11.9.2025</p><p>Huom. ei tuntia viikolla 42</p><p><br></p><p>#musiikki #ukulele #sello #ryhmä #kirjasto</p>",
                "en": "<p>CANCELLED 20.11</p><p><br></p><p>Thursday&nbsp;at 16.30-17.30&nbsp;in Sello Library Jaminurkka.</p><p>&nbsp;</p><p>Welcome to the Espoo City Library intermediate ukulele group. We play popular Finnish and English songs. From time to time we challenge ourselves by learning new chords, melodies and strums. Relaxing atmosphere and community are important values of the group. There are ukuleles in the library that you can borrow for the lesson.</p><p><br></p><p>Participation is free and no pre-registration is required.</p><p><br></p><p>First lesson is Thrusday 11.9.2025</p><p>No class 16th of October</p><p>#music #ukulele #sello #library</p>"
            },
            "name": {
                "fi": "PERUUTETTU Ukulelen jatkoryhmä",
                "en": "CANCELLED Ukulele, Intermediate Group"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nwra/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22nnuu",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15417",
                "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:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4952,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "description": null,
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66oi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.151726Z",
                    "last_modified_time": "2023-12-13T11:20:12.151743Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3529,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Leppävaara",
                        "sv": "Alberga",
                        "en": "Leppävaara"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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: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": 7187,
                    "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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nsii/?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": 150432,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-15T12:23:54.433662Z",
                    "last_modified_time": "2024-03-15T12:23:54.433684Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ukulele-2205860_1920.jpg",
                    "name": "",
                    "cropping": "518,0,1402,885",
                    "photographer_name": "",
                    "alt_text": "kolme ukulelea",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150432/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-08T11:48:39.897214Z",
            "last_modified_time": "2025-11-20T12:40:51.460005Z",
            "date_published": null,
            "start_time": "2025-11-20T15:45:00Z",
            "end_time": "2025-11-20T16: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": "Tervetuloa mukaan Espoon kaupunginkirjaston  7–12-vuotiaiden ukuleleryhmään. Kirjastolla on 15 lainasoitinta tunnin ajaksi. Osallistuminen on maksutonta.",
                "en": "Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. There are 15 ukuleles that can be borrowed for the class. Participation is free of charge."
            },
            "info_url": null,
            "description": {
                "fi": "<p>PERUUTETTU 20.11</p><p><br></p><p>Tervetuloa mukaan Espoon kaupunginkirjaston 7–12-vuotiaiden&nbsp;ukuleleryhmään. Tunneilla on tarkoitus tutustua musiikkiin monipuolisesti. Harjoittelemme sointujen, sekä melodian soittamista kappaleiden avulla. Lisäksi teemme musiikin hahmottamista ja ryhmäytymistä tukevia harjoituksia leikkimällä ja piirtämällä. Opetus on oppilaslähtöistä. Kirjastolla on 15 ukulelea, joita voi lainata tunnin ajaksi.</p><p>Ensimmäinen tunti on 11.9.2025</p><p><strong>Tunnille mahtuu 15 lasta. Osallistuminen on maksutonta.</strong></p><p><strong>Ei tuntia 16.10</strong></p><p><br></p><p>Ryhmää vetää Lauri Iljin</p><p>lauri.iljin(at)espoo.fi</p><p>#musiikki #ukulele #sello #lapset #nuoret</p>",
                "en": "<p>CANCELLED 20.11</p><p>Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. In the Ukulele Group we learn basic of the music theory and playing an ukulele. We practice how to play melody and harmony with well-known songs. Teaching is student-centered. The Library has 15 ukuleles that can be borrowed for the lesson.</p><p>First class is 11.9.2025</p><p><strong>15&nbsp;children can attend the class. Participation is free of charge.</strong></p><p><strong>No class 16th of October</strong></p><p><br></p><p><br></p><p>Lauri Iljin teaches the group</p><p>lauri.iljin(at)espoo.fi</p>"
            },
            "name": {
                "fi": "PERUUTETTU Ukulele 7-12-vuotiaiden ryhmätunti",
                "en": "CANCELLED Ukulele - 7- to 12-year-old"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nnuu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnkcopb3m",
            "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": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66qa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.165590Z",
                    "last_modified_time": "2023-12-13T11:20:12.165607Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 693,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Suvisaaristo",
                        "sv": "Sommaröarna",
                        "en": "Suvisaaristo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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: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": 7187,
                    "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": [
                {
                    "id": 1493852,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-11-20T12:09:57.696202Z",
                    "last_modified_time": "2025-11-20T12:09:57.696219Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/dcf33d1d-c4de-4494-84b6-a4c06331eca9.jpg",
                    "name": "",
                    "cropping": "0,0,591,592",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee LAVA dance, music and education. Oppilaiden esitys christmas concert.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493852/?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"
                }
            ],
            "created_time": "2025-11-20T12:10:34.812994Z",
            "last_modified_time": "2025-11-20T12:10:34.813010Z",
            "date_published": null,
            "start_time": "2025-12-14T11:00:00Z",
            "end_time": "2025-12-14T13: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": "Tervetuloa LAVA Studion oppilaiden joulukonserttiin! \nLuvassa on tunnelmallinen ja iloinen tapahtuma.",
                "en": "Welcome to LAVA Studio's students christams event. There will be a lot of different dazzling performances from singing to dancing"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa LAVA Studion oppilaiden joulukonserttiin!</p><p>Luvassa on tunnelmallinen ja iloinen ohjelma: laulua, musiikkia ja tanssia – upeita ja säteileviä esityksiä!</p><p>Konsertti järjestetään 14. joulukuuta klo 13.00 Lippulaivan kirjastossa.</p><p>Tule kannustamaan lahjakkaita oppilaitamme ja nauttimaan joulun taianomaisesta tunnelmasta!</p><p><br></p><p>Tapahtuma on venäjänkielinen.</p>",
                "en": "<p>Welcome to the LAVA Studio's students Christmas concert!</p><p>An atmospheric and joyful program awaits: singing, music, and dancing all of which are wonderful and radiant performances!</p><p><br></p><p>The concert will be held on December 14 at 1:00 p.m. at the Lippulaiva Library.</p><p><br></p><p>Come cheer on our talented students and enjoy the magical atmosphere of Christmas!</p><p><br></p><p>The event is in russian </p>"
            },
            "name": {
                "fi": "LAVA Studion oppilaiden joulukonsertti",
                "en": "LAVA Studio's students christmas event"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "provider": {
                "fi": "LAVA Studio",
                "en": "LAVA Studio"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnkcopb3m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67248",
            "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": 1348,
                "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: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:31",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.481619Z",
                    "last_modified_time": "2024-02-06T13:19:13.796408Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1956,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:32",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.496484Z",
                    "last_modified_time": "2024-02-06T13:19:13.818300Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 796,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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": 1336,
                    "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:52",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.738883Z",
                    "last_modified_time": "2024-02-06T13:19:14.199532Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 620,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut tapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5976,
                    "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": 4827,
                    "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": 5031,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:669",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.230765Z",
                    "last_modified_time": "2024-02-06T13:19:17.537912Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 340,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muut kulttuuritapahtumat (monitaide)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "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": 1102,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaupunkiuudistusalueet"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1278",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "tanssitaide",
                        "danskonst",
                        "tanssit",
                        "danser"
                    ],
                    "created_time": "2023-08-16T05:19:38.809008Z",
                    "last_modified_time": "2023-08-16T05:19:38.809026Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2848,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssi",
                        "sv": "dans",
                        "en": "dance (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p29865",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "meksikolainen son",
                        "son (meksikolainen populaarimusiikki)",
                        "son-musiikki",
                        "son (mexikansk musik)",
                        "son-musik"
                    ],
                    "created_time": "2023-08-16T05:14:06.089816Z",
                    "last_modified_time": "2023-08-16T05:14:06.089833Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1409,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "son mexicano",
                        "en": "son mexicano"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "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": 675,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lähiverkkotapahtumat",
                        "sv": "LAN-partyn",
                        "en": "LAN parties"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 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": 1491297,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-05T12:13:12.373943Z",
                    "last_modified_time": "2025-11-05T12:13:12.373960Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776099.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491297/?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-11-05T12:13:12.180332Z",
            "last_modified_time": "2025-11-20T10:13:06.102323Z",
            "date_published": null,
            "start_time": "2025-11-22T08:00:00Z",
            "end_time": "2025-11-22T16: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": "Valoa! Luvassa Megamuskari, valon parsintaa, muotokuvia, paperikukkia, esityksiä, valolintuja, taidetta, yhteisruokailua, tanssia ja musiikkia.",
                "sv": "Ljus! Megamusiklekis, ljussamling, porträtt, pappersblommor, föreställningar, ljusfåglar, konst, gemensamma måltider, dans och musik utlovas.",
                "en": "More light! The celebration will feature a Musical Mega Playschool, patching up light, portraits, paper flowers, performances, birds of light, arts, communal dining, dancing and music."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/51525B799A908BCBEC21C91DFA0B1D2E/Valon_juhla_Valoa_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/51525B799A908BCBEC21C91DFA0B1D2E/Ljusets_fest_Ljus_",
                "en": "http://www.malmitalo.fi/en/events/event/51525B799A908BCBEC21C91DFA0B1D2E/Celebration_of_light_More_light_"
            },
            "description": {
                "fi": "<p>Valoa! Luvassa Megamuskari, valon parsintaa, muotokuvia, paperikukkia, esityksiä, valolintuja, taidetta, yhteisruokailua, tanssia ja musiikkia.</p><p>Musisoidaan yhdessä, askarrellaan, katsotaan taide-esityksiä ja lennetään valolintuparvena. Tule ruokailemaan, tanssimaan ja nauttimaan! Lauantain juontajina Iram Ajmal ja Samia Mohamud.</p><p><b>Aikataulu</b>  <br>klo 10–12 Lintutyöpaja (Nukketeatteri PikkuKulkuri), aula  <br>klo 12.30–13 Megamuskari (Tuuli Paasolainen ja Sergei Sokolov), aula<br>klo 13.30–14 Lasten ja nuorten vokaaliyhtye (Toimintakeskus Graniitti, Laulustudio Erida), aula  <br>klo 12–14 Parsi, paikkaa ja loista pimeässä – tee oma heijastimesi (Taito Etelä-Suomi)<br>klo 12–14 Paperikukkatyöpaja (Pohjois-Helsingin kuvataidekoulu) <br>klo 12.30–13 ja klo 13.30–14 Black Light -kehonhuolto (alueliikuttaja Jaakko), Pieni sali  <br>klo 13–15 Yhteyttä ja iloa Malmilla -valokuvatyöpaja (Anna Autio, Kaisa Viitanen)  <br>klo 14–15.30 Kohtaussoppa-yhteisruokailu (kulttuurikokki Jyrki Tsutsunen & Kohtaus Ry)  <br>klo 14–14.45 Ooppera-aarioita kirjastolla (Operaatio ry)  <br>klo 14–16 Kalligrafia-työpaja (Japanin kielen ja kulttuurin edistämisyhdistys), kokoushuone 3  <br>klo 14.45–15.15 Pohjois-Helsingin musiikkiopiston torvet, parvi  <br>klo 16–19 Malmi/Kollektiivi: videoteos Malmitalon edustalla (Demiana Alinets)  <br>klo 16.45–17.45 Aulatanssit Banda Caribe Helsinki. TanssiopastustaThe Dancing Queensilta.</p><p><b>Lintutyöpaja</b>  <br>Nukketeatteri PikkuKulkurilla on uusi upea lintu ja työpaja. Valmistetaan oma lintu, jonka kanssa lennetään työpajan päätteeksi ulos ison linnun opastamana, musiikin siivittämänä.</p><p><b>Megamuskari</b>  <br>Lauletaan, leikitään, lorutellaan ja soitetaan ainakin kehosoittimia! Tervetuloa koko perheelle soveltuvaan Megamuskariin!<br> <br><b>Lasten ja nuorten vokaaliyhtye</b>  <br>Konsertoimassa Laulustudio Eridan solistit ja vokaalishow-ryhmät, jotka ovat kansainvälisten kilpailujen palkittuja. Luvassa on lauluja usealla eri kielellä.</p><p><b>Yhteyttä ja iloa Malmilla -valokuvatyöpaja</b>  <br>Tervetuloa kuvattavaksi ja kertomaan ajatuksesi Malmista. Voit lausua kameran edessä runon, laulaa tai esitellä itsellesi tärkeän esineen. Valokuvaseinä toteutuu reaaliajassa Malmitalon Instagram-tilille (@malmitalohelsinki).</p><p><b>Parsi, paikkaa ja loista pimeässä</b>  <br>Kokeile parsimisen ja paikkaamisen tekniikoita ja valmista oma uniikki heijastin, joka on käytännöllinen ja persoonallinen asuste!</p><p><b>Kalligrafia-työpaja</b>  <br>Tutustu japanilaiseen kulttuuriin ja kanjien piirtämiseen kalligrafiatyöpajassa.</p><p><b>Paperikukkatyöpaja</b>  <br>Tehdään ikikukkiva paperikukka!</p><p><b>Kohtaussoppa</b>  <br>Asukkaiden ja toimijoiden yhdessä toteuttama maukas kohtaaminen sopan äärellä. Tarjolla on yhdessä tehtyä linssikookoskeittoa ja juurileipää maustetahnoilla.</p><p><b>Black Light -kehonhuolto</b>  <br>Kehonhuoltotuntiin sisältyy alkulämmittely, huoltava lihaskunto- sekä liikkuvuusosuus. Tunti pidetään pimeässä UV-valojen loisteessa.</p><p><b>Ooppera-aarioita kirjastolla</b>  <br>Operaatio ry:n toteuttama konsertti, jossa esitetään tunnettuja ooppera-aarioita taustatietoineen.</p><p><b>Malmi/Kollektiivi: videoteos</b>  <br>Malmi/Kollektiivin Alina Demianetsin videotaidetta nähtävillä Malmitalon edustalla.</p><p><b>Banca Caribe Helsinki ja aulatanssit </b>  <br>Banda Caribe Helsingin karismaattiset muusikot tanssittavat salsan ja lattarimusiikin tahtiin. Tanssiaskeleet saat haltuusi The Dancing Queensin opastuksella.</p><p><b>Yhtä valon juhlaa koko viikko!</b>  <br><u><a href=\"https://www.malmitalo.fi/fi/tapahtumat/event/32FACFF71092F07E8EFC76783F3D9684/Valon_viikko_ja_Valon_juhla\">Tutustu koko Valon viikon ohjelmaan</a></u></p>",
                "sv": "<p>Ljus! Megamusiklekis, ljussamling, porträtt, pappersblommor, föreställningar, ljusfåglar, konst, gemensamma måltider, dans och musik utlovas.</p><p>Vi musiserar tillsammans, pysslar, tittar på konstföreställningar och flyger som en flock ljusfåglar. Kom och ät, dansa och njut! Lördagens värdar är Iram Ajmal och Samia Mohamud.</p><p><b>Tidtabell</b><br>10.00–12.00 Fågelverkstad (dockteatern PikkuKulkuri), vestibulen<br>12.30–13.00 Megamusikskolan (Tuuli Paasolainen och Sergei Sokolov), vestibulen<br>kl. 13.30–14.00 Vokalorkester för barn och ungdomar (verksamhetscentret Toimintakeskus Graniitti, Laulustudio Erida), vestibulen<br>12.00–14.00 Reparera, lappa och lys upp i mörkret – tillverka din egen reflex (Taito Södra Finland)<br>12.00–14.00 Pappersblomsterverkstad (Norra Helsingfors bildkonstskola) <br>12.30–13.00 och 13.30–14.00 Black Light-kroppsvård (förortsmotionsledare Jaakko), Lilla salen<br>13.00–15.00 Kontakt och glädje i Malm – fotoverkstad (Anna Autio, Kaisa Viitanen)<br>14.00–15.30 Gemensamma måltiden Kohtaussoppa (kulturkocken Jyrki Tsutsunen & Kohtaus Ry)<br>14.00–14.45 Operaarior på biblioteket (Operaatio ry)<br>14.00–16.00 kalligrafiverkstad (Föreningen för främjande av japanska språket och kulturen), mötesrum 3<br>14.45–15.15 Norra Helsingfors musikinstituts horn, balkongen<br>16.00–19.00 Malmi/Kollektiv: videoverk utanför Malms kulturhus (Demiana Alinets)<br>16.45–17.45 Vestibuldans, Banda Caribe Helsinki. Dansundervisning i publiken av The Dancing Queens.</p><p><b>Fågelverkstad</b><br>Dockteatern PikkuKulkuri har en ny fantastisk fågel och verkstad. Vi tillverkar en egen fågel med vilken vi flyger ut i slutet av verkstaden, guidad av den stora fågeln och ackompanjerad av musik.</p><p><b>Megamusiklekis</b><br>Vi sjunger, leker, läser, rimmar och spelar i alla fall kroppsinstrument! Välkommen till Megamusiklekis för hela familjen!</p><p><b>Vokalorkester för barn och unga</b><br>Konserter med Laulustudio Eridans solister och vokalshowgrupper, som har prisbelönats i internationella tävlingar. Sånger på flera språk utlovas.</p><p><b>Kontakt och glädje i Malm – fotoverkstad</b><br>Välkommen att bli fotograferad och berätta dina tankar om Malm. Du kan recitera en dikt framför kameran, sjunga en sång eller presentera ett föremål som är viktigt för dig. Fotoväggen genomförs i realtid på Malms kulturhus IG.</p><p><b>Reparera, lappa och lys upp i mörkret</b><br>Prova reparerings- och lappningstekniker och tillverka din egen unika reflex som är en praktisk och personlig accessoar!</p><p><b>Kalligrafiverkstad</b><br>Bekanta dig med japansk kultur och kanjiteckning i en kalligrafiverkstad.</p><p><b>Pappersblomsterverkstad</b><br>Låt oss tillverka en evigt blommande pappersblomma!</p><p><b>Kohtaussoppa</b><br>Ett läckert möte över soppa, arrangerat gemensamt av invånare och aktörer. Linssoppa med kokos samt surdegsbröd med kryddpastor som tillverkats tillsammans serveras.</p><p><b>Black Light-kroppsvård</b><br>Kroppsvårdslektionen innehåller uppvärmning samt en vårdande muskelkonditions- och rörlighetsdel. Lektionen genomförs i mörker under skenet av UV-lampor.</p><p><b>Operaarior på biblioteket</b><br>En konsert arrangerad av Operaatio ry, där man presenterar kända operaarior med dessas bakgrundsinformation.</p><p><b>Malmi/Kollektiv: videoverket</b><br>Videokonst av Demiana Alinets från Malmi/Kollektivet visas utanför Malms kulturhus.</p><p><b>Banca Caribe Helsinki och vestibuldans</b><br>De karismatiska musikerna i Banda Caribe Helsinki spelar salsa och latinamerikansk musik. Dansstegen lär du dig med hjälp av The Dancing Queens undervisning.</p><p><b>En hyllning av ljuset hela veckan!</b><br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/32FACFF71092F07E8EFC76783F3D9684/Week_of_Light_\">Se hela programmet under Ljusets vecka</a></u></p>",
                "en": "<p>More light! The celebration will feature a Musical Mega Playschool, patching up light, portraits, paper flowers, performances, birds of light, arts, communal dining, dancing and music.</p><p>We will play music together, do arts and crafts, admire art shows and fly around as a flock of light birds. Come and eat, dance and enjoy! Saturday's hosts are Iram Ajmal and Samia Mohamud.</p><p><b>Schedule</b><br>10.00–12.00 Bird workshop (Puppet theatre PikkuKulkuri), lobby<br>12.30–13.00 Musical Mega Playschool (Tuuli Paasolainen and Sergei Sokolov), lobby<br>13.30–14.00 Children and youth vocal ensemble (Activity Centre Graniitti, Vocal Studio Erida), lobby<br>12.00–14.00 Darn, patch and shine in the dark – make your own safety reflector (Taito Etelä-Suomi),<br>12.00–14.00 Paper flower workshop (Art School of Northern Helsinki) <br>12.30–13.00 and 13.30–14.00 Black Light body maintenance class (Local Sports Instructor Jaakko), small auditorium<br>13.00–15.00 Connection and joy in Malmi photography workshop (Anna Autio, Kaisa Viitanen)<br>14.00–15.30 Kohtaussoppa community meal in the gallery (Culture Chef Jyrki Tsutsunen & Kohtaus ry)<br>14.00–14.45 Opera arias in the library (Operaatio ry)<br>14.00-16.00 Calligraphy workshop (Association for the promotion of Japanese culture and language), meeting room 3<br>14.45–15.15 Music Institute of Northern Helsinki’s horn players, balcony<br>16.00–19.00 Malmi/Collective: video installation in front of Malmitalo (Demiana Alinets)<br>16.45–17.45 Dance in the lobby by Banda Caribe Helsinki. Dance guidance among the audience by The Dancing Queens.</p><p><b>Bird workshop</b><br>Puppet theatre PikkuKulkuri has a beautiful new bird and a great workshop. Make your own bird and fly outside with it at the end of the workshop, guided by a large bird and accompanied by music.</p><p><b>Musical Mega Playschool</b><br>Singing, playing, nonsense poems and new instruments – like the body! Welcome to a Musical Mega Playschool for the whole family.</p><p><b>Vocal ensemble of children and young people</b><br>The concert will feature international-award-winning soloists and vocal show groups from the Vocal Studio Erida, performing songs in several languages.</p><p><b>Connection and joy in Malmi photography workshop</b><br>Come have your photo taken and share your thoughts about Malmi. You can recite a poem or sing a song in front of the camera, or present an object that is important to you. The captured images will be made into a photo wall uploaded in real time to Cultural Centre Malmitalo's Instagram account (@malmitalohelsinki).</p><p><b>Darn, patch and shine in the dark</b><br>Try your hand in the different darning and patching techniques and make your own unique safety reflector – a practical and unique accessory!</p><p><b>Calligraphy workshop</b><br>Learn about Japanese culture and drawing kanji in a calligraphy workshop.</p><p><b>Paper flower workshop</b><br>Let's make an ever-blooming paper flower!</p><p><b>Kohtaussoppa – soup meet-up</b><br>A tasty encounter over soup, organised jointly by local residents and operators. Come enjoy a lentil and coconut soup cooked together and served with sourdough bread and a selection of tasty spreads.</p><p><b>Black Light body maintenance</b><br>A fitness class that includes a warm-up and body-maintaining muscle and mobility exercises. The session will be held in the dark, under the glow of UV lights.</p><p><b>Opera arias in the library</b><br>A concert organised by Operaatio ry, presenting well-known opera arias and some of their history.</p><p><b>Malmi/Collective: video installation</b><br>Video art by Demiana Alinets of Malmi/Collective showcased in front of Cultural Centre Malmitalo.</p><p><b>Banca Caribe Helsinki and lobby dances</b><br>The charismatic musicians of Banda Caribe Helsinki play the rhythms of salsa and Latin music. The Dancing Queens will teach the audience the dance steps.</p><p><b>Celebration of light, all week long!</b><br><u><a href=\"https://malmitalo.fi/en/events/event/32FACFF71092F07E8EFC76783F3D9684/Week_of_Light_\">See the full Week of Light programme</a></u></p>"
            },
            "name": {
                "fi": "Valon juhla: Valoa! – Valon viikko",
                "sv": "Ljusets fest: Ljus! – Ljusets vecka",
                "en": "Celebration of light: More light! – Week of Light"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67248/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnjdex6qq",
            "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: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": 7187,
                    "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-11-17T10:31:14.678327Z",
            "last_modified_time": "2025-11-20T10:01:14.276171Z",
            "date_published": null,
            "start_time": "2025-11-22T12:30:00Z",
            "end_time": "2025-11-22T15: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": "Tervetuloa pohtimaan yhdessä ja kehittämään Keski-Espoota lasten ja perheiden näkökulmasta lauantaina 22.11. Entressen kirjastoon Siniseen saliin."
            },
            "info_url": null,
            "description": {
                "fi": "<p>MLL Keski-Espoo kutsuu kaikki lapsiperheiden arjesta kiinnostuneet pohtimaan yhdessä ja kehittämään Keski-Espoota lasten ja perheiden näkökulmasta lauantaina 22.11. Entressen kirjastoon Siniseen huoneeseen. </p><p>Aloitamme yhdistyksen avoimella syyskokouksella klo 14.30 ja jatkamme klo 15.30 keskustelutilaisuudella. Tilaisuudessa saamme kuulla myös Espoon lapsiperhestrategiasta, josta meille tulee kertomaan kaupunginvaltuuston puheenjohtaja <strong>Saara Hyrkkö</strong>.</p><p>Tule mukaan kuuntelemaan ja keskustelemaan!</p>"
            },
            "name": {
                "fi": "MLL:n syyskokous ja keskustelutilaisuus (aiheena lapsiperheiden Keski-Espoo)"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjdex6qq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20545935",
            "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:p1278",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "tanssitaide",
                        "danskonst",
                        "tanssit",
                        "danser"
                    ],
                    "created_time": "2023-08-16T05:19:38.809008Z",
                    "last_modified_time": "2023-08-16T05:19:38.809026Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2848,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "tanssi",
                        "sv": "dans",
                        "en": "dance (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3956234/?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/project-no-2191-helsingin-kaupunginteatteri-20545935/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/project-no-2191-helsingin-kaupunginteatteri-20545935/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/project-no-2191-helsingin-kaupunginteatteri-20545935/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1464814,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-11T21:17:08.652841Z",
                    "last_modified_time": "2025-08-11T21:17:08.652861Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/ee/c7/hkt-tickets_427261_3487596_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/1464814/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-11T21:17:11.741097Z",
            "last_modified_time": "2025-11-20T01:15:40.136215Z",
            "date_published": null,
            "start_time": "2025-11-19T16: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": "Helsinki Dance Company ja kansainvälisesti arvostettu unkarilainen koreografi Adrienn Hód kutsuvat yleisön ainutlaatuiselle liikkeelliselle tutkimusmatkalle ihm"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/project-no-2191-3956234/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/project-no-2191-3956234/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/project-no-2191-3956234/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p><strong>Helsinki Dance Company ja kansainvälisesti arvostettu unkarilainen koreografi Adrienn Hód kutsuvat yleisön ainutlaatuiselle liikkeelliselle tutkimusmatkalle ihmiskehoon ja -mieleen.</strong></p><p>Innovatiivisista teoksissaan tunnettu Hód haastaa kulttuuriset rajat, tavoitteenaan vapauttaa keho tabujen ja ennakkoluulojen otteesta. Näyttämö on Hódille tanssin ja dramaturgisten ratkaisujen leikkikenttä, jossa esiintyjien ja yleisön välille syntyy lukemattomia mahdollisuuksia vuorovaikutukseen sekä yhteyden rakentamiseen.</p><p>Project No. 2191 -teoksen ytimessä on esiintyjien kehoissaan kantama tieto. Pitkien ohjattujen improvisaatioharjoitusten kautta HDC:n valovoimaiset tanssijat tuovat näyttämölle omat ”keholliset arkistonsa”. Yksilölliset esiintymis- ja liikelaadut, historiat, halut ja pelot avautuvat yleisölle kysyen:</p><p>Mitä historiaa kannamme kehoissamme?</p><p>Kuinka yksilöllisiä kokemuksemme todella ovat?</p><p>Miten intohimo syntyy?</p><p>Mikä meitä ajaa eteenpäin?</p><p>Miten voimme antaa tilaa nykyhetkelle?</p><p>Teos näyttäytyy intuition ohjaamana radikaalina leikkinä, joka resonoi myös katsojan kehossa inspiroiden, haastaen ja yllättäen. Tanssijat ja luova työryhmä venyttävät tanssin rajoja ja tutkivat ihmisilmaisun syvyyksiä. Adrienn Hódin sanoin: ”Esityksessä ihmisyys tapahtuu ihmisten edessä.”</p><p>Koreografia: Adrienn Hód<br>Koreografin taiteellinen työpari: Csaba Molnár<br>Sävellys: Áron Porteleki<br>Dramaturgi: Ármin Szabó-Székely<br>Puvut yhdessä työryhmän kanssa: Laura Dammert<br>Äänimestari: Eero Niemi<br>Naamioinnin suunnittelu: Tuula Kuittinen</p>"
            },
            "name": {
                "fi": "Project No. 2191"
            },
            "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:20545935/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20000264",
            "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": 1942,
                    "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-20000264/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000264/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/hyenans-dagar-helsingin-kaupunginteatteri-20000264/?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:40.809655Z",
            "last_modified_time": "2025-11-20T01:15:40.007254Z",
            "date_published": null,
            "start_time": "2025-11-19T16: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:20000264/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19999858",
            "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": 1942,
                    "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-3849158/?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/lets-play-business-helsingin-kaupunginteatteri-19999858/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999858/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999858/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 360031,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-17T22:17:20.182714Z",
                    "last_modified_time": "2025-03-17T22:17:20.182730Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_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/360031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-17T22:17:40.698426Z",
            "last_modified_time": "2025-11-20T01:15:39.877281Z",
            "date_published": null,
            "start_time": "2025-11-19T16: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": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>"
            },
            "name": {
                "en": "Let'S Play Business"
            },
            "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:19999858/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19932492",
            "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": [
                {
                    "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": 1942,
                    "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-967155/?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/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-19932492/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-19932492/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-19932492/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 152460,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T10:16:44.815531Z",
                    "last_modified_time": "2024-09-18T10:16:44.815551Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2017/hkt_kiviataskussa_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/152460/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-05T12:17:22.150679Z",
            "last_modified_time": "2025-11-20T01:15:39.745034Z",
            "date_published": null,
            "start_time": "2025-11-19T16: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": "Marie Jones KIVIÄ TASKUSSA Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Marie Jones<br><strong>KIVIÄ TASKUSSA</strong></p><p>Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän. Pentti Kotkaniemen ohjauksessa ihmiskohtaloihin ja kokemuksiin limittyy myös Irlannin historia. Kiviä taskussa on ilmiö Suomen teatterikentällä – sitä on esitetty loppuunmyytynä jo vuodesta 2002.</p><p>Ohjaaja kehuu näytelmän ideaa: “Ihmettelen sitä, että vasta nyt joku nykykirjailija on käyttänyt keskiajalta tunnettua mysteerio buffo-menetelmää eli näyttelijä siirtyy toiseen rooliin vain rytmiä ja painotusta vaihtamalla.” Tähän hatunvaihtotekniikkaan yltävät nimenomaan Suosalo ja Nuojua. He tekevät yhteensä 15 roolia. “Vaihdot ovat salamannopeita ja roolihahmojen skaala ulottuu hemaisevasta amerikkalaiskaunottaresta 75-vuotiaaseen maalaisukkeliin”, Kotkaniemi kertoo.</p><p>Tarina ei ole silti mikään kahden miehen vitsi-ilta. “Ei, Kiviä taskussa on traaginen komedia ja haastava kahden miehen näytelmä”, Mika Nuojua sanoo. Tarina alkaa siitä, kun 35-vuotiaat luuserit Charlie ja Jake menevät avustajiksi amerikkalaisen elokuvan kuvauksiin ja joutuvatkin tekemään aivan muuta kuin ennakkoon aavistavat.</p><p>Ohjaaja Kotkaniemi sanoo, että näytelmä on tyypillistä näyttelijöiden teatteria. “Siksi molempien herrojen pitää olla virtuooseja. Onneksi he ovat, ja se on ohjaajan lottovoitto.”</p><p>Esitysoikeus: Suomen Teatteritoimisto Teateragenturen i Finland Ab <a href=\"http://www.teatteritoimisto.fi.\">http://www.teatteritoimisto.fi./</a></p><p>Rooleissa:<br>Martti Suosalo ja Mika Nuojua</p><p>Suomentaja: Henri Kapulainen<br>Ohjaaja: Pentti Kotkaniemi<br>Koreografia: Tuovi Rantanen<br>Lavastus ja puvut: Jyrki Seppä<br>Valot: Teppo Saarinen<br>Ääni: Ari-Pekka Saarikko</p><p><a href=\"https://hkt.fi/esitykset/kivia-taskussa\"><strong>Lisätietoa</strong></a></p>"
            },
            "name": {
                "fi": "Kiviä Taskussa"
            },
            "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:19932492/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19528390",
            "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-3613405/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19528390/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19528390/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-19528390/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235429,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:41.062378Z",
                    "last_modified_time": "2025-02-17T11:16:41.062398Z",
                    "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/veljeni-leijonamieli-222.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/235429/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:25.093870Z",
            "last_modified_time": "2025-11-20T01:15:39.591041Z",
            "date_published": null,
            "start_time": "2025-11-19T11: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": "Astrid Lindgren VELJENI LEIJONAMIELI ”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä. Tämä tarina on niin kuin satu, ja vähän myös kummitusjuttu, mutta kaikki on kuitenkin totta.” Astrid Lindgrenin Veljeni Leijonamieli on rakastettu klassikkosatu, maaginen fantasia veljeksistä, jotka kantavat toisiaan vaikeuksien yli. Se on tarina rohkeudesta, veljeydestä ja rakkaudesta. Se on huikea seikkailu, jossa jokainen löytää rohkeutensa.</p><p>Veljeni Leijonamieli kertoo kahdesta veljeksestä, Korpusta (Alexander Wendelin) ja Joonatanista (Mikko Kauppila). Isoveli Joonatan kuolee pelastaessaan sairasta veljeään Korppua tulipalolta, ja pian menehtyy myös Korppu. Veljekset matkaavat lyhyen maanpäällisen elämänsä jälkeen kauniiseen maahan, Nangijalaan, jossa he taistelevat yhdessä pahan voimia vastaan. Matkasta tulee huima ja jännittävä seikkailu, jonka aikana pelokkaasta Korpusta kasvaa rohkea Leijonamieli.</p><p>Veljeni Leijonamieli kertoo surusta kauniisti ja kasvaa maagiseksi fantasiaseikkailuksi, joka on täynnä rohkeutta ja toivoa. Se kertoo valtavasta rakkaudesta, joka voittaa pelot ja jopa kuoleman.</p><p>Astrid Lindgrenin Veljeni Leijonamielen suurelle näyttämölle ohjaa Jakob Höglund. Esitys yhdistelee musiikkiteatteria, nukketeatteria ja koreografiaa fantastiseksi, visuaalisesti henkeäsalpaavaksi kokonaisuudeksi.</p><p>Rooleissa: Mikko Kauppila, Alexander Wendelin, Laura Alajääski, Sofia Hilli, Tuukka Leppänen, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Sanna Majuri, Kari Mattila, Reetta Moilanen, Unto Nuora, Samuli Pajunen, Mikko Paloniemi, Tiina Peltonen, Elena Rekola, Inka Tiitinen, Riina Tikkanen, Risto Kaskilahti, Kalle Lähde</p><p>Muusikko: Senni Valtonen<br>Dramatisointi: Alexander Mørk-Eidem<br>Ohjaus: Jakob Höglund<br>Koreografia: Jakob Höglund &amp; työryhmä<br>Ohjaajan ja koreografin assistentti: Johanna Elovaara<br>Tekstin sovitus, käännös ja laulutekstit: Rasmus Arikka<br>Sävellys ja äänisuunnittelu: Stefan Johansson<br>Lavastus: Vilma Mattila<br>Pukusuunnittelu: Heidi Wikar<br>Valo- ja videosuunnittelu: Toni Haaranen ja William Iles<br>Naamioinnin suunnittelu: Milja Mensonen<br>Nukkien suunnittelu: Heini Maaranen<br>Dramaturgi: Ari-Pekka Lahti<br>Lauluvalmennus: Jukka Nylund<br>Apulaislavastaja: Riku Suvitie</p>",
                "sv": "<p>Astrid Lindgren<br><strong>VELJENI LEIJONAMIELI</strong></p>"
            },
            "name": {
                "fi": "Veljeni Leijonamieli"
            },
            "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:19528390/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}