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

{
    "meta": {
        "count": 32746,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1242",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1240"
    },
    "data": [
        {
            "id": "kulke:61179",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 977,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke: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": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 651,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 982,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 1941,
                    "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": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3476929/",
                        "sv": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3476929/",
                        "en": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3476929/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5571,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-20T13:15:12.902718Z",
                    "last_modified_time": "2024-02-06T13:22:55.231192Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738358.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5571/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-20T13:15:12.880143Z",
            "last_modified_time": "2024-02-06T13:22:55.269528Z",
            "date_published": null,
            "start_time": "2024-01-20T17:00:00Z",
            "end_time": "2024-01-20T17:50: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/772D6EDB355ABE1A2EF55033DCDE2E2F/Kauri_Honkakoski_Company_HINTERLAND_joutomaa_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/772D6EDB355ABE1A2EF55033DCDE2E2F/Kauri_Honkakoski_Company_HINTERLAND_odemark_",
                "en": "http://www.stoa.fi/en/events/event/772D6EDB355ABE1A2EF55033DCDE2E2F/Kauri_Honkakoski_Company_HINTERLAND"
            },
            "description": {
                "fi": "<p>HINTERLAND [joutomaa] on ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.</p><p>HINTERLAND tulee taas! Syksyllä 2023 loppuunmyyty esitys palaa ohjelmistoon yleisön pyynnöstä.</p><p>Yleisön kommentteja: <br><i>”Kertakaikkisen vaikuttava.”<br>”Taitavasti toteutettu, lohduton ja hikinen painajainen.”<br>”Kaunista ja tarkkaa ilmaisua.”<br>”Merkitykset virtasivat katsojan tajuntaan kaikkien aistien kautta.”<br>”Mua niin itketti.”<br>”Rankka esitys ei tuntunut kauhulla ja tuholla mässäilyltä, vaan enemmän sen inhimilliseltä tarkastelulta.”<br>”Upea, maaginen.”<br>”Vaikea löytää sanoja, niin hienoa liikettä ja kerrontaa.”<br>”Mielikuvituksen totaalista immersiota!”<br>”Nautin tutusta mutta kummasta, tarinallisesta mutta abstraktista.”<br>”Bravo! Tämä oli niin hyvä!!!”<br> <br> ”Elokuvien ryöstöviljelemät kohtaukset tuntuivat taas vaikuttavilta, eräänlainen puhdistus ja pölyjen pyyhkiminen … kohtasi uutena ja järkyttävänä sen, mihin on tavallaan jo ehtinyt turtua.”</i><br>- Maria Säkö, tanssi- ja teatterikriitikko</p><p>HINTERLAND on välähdys mielen joutomaasta – maisemasta, jonne varastoimme pitkät varjomme. Yhteisö sinnittelee tukalissa olosuhteissa ei-kenenkään-maalla, sokeina tekojensa seurauksille.</p><p>Esitys edustaa Corporeal Mime -näyttämötaidetta, jota Suomessa harvoin nähdään. Inspiraationa on ollut Samuel Beckettin toisen maailmansodan jälkeen kirjoittama tummanpuhuva novellituotanto. <br>  <br>Kansainvälisesti palkittu Kauri Honkakoski Company tunnetaan tunnelmallisista fyysisen teatterin teoksista, joissa rikas kehollinen ilmaisu yhdistyy inhimillisiin teemoihin.  HINTERLANDissä esiintyy Companyn taitava kansainvälinen ensemble.</p><p>Ohjaus, dramaturgia: Kauri Honkakoski <br>Esiintyjät: Oona Jama, Sonja Järvisalo, Ines Kakkonen, Liv Meijer Nordgren, Ruben Nagore Santandreu, Freia Stenbäck, Valter Sui  <br>Valosuunnittelu, lavastus: Sisu Nojonen <br>Äänisuunnittelu: Tuuli Kyttälä <br>Puvustus: Kauri Honkakoski, Liv Meijer Nordgren <br>Kuvat: Laura Vuoma <br>Traileri: Laura Vuoma, Kauri Honkakoski, Tuuli Kyttälä <br>Yhteistuotanto: Kauri Honkakoski Company & Stoa</p><p>Tukijat: Taiteen edistämiskeskus, Jenny & Antti Wihurin rahasto, Svenska kulturfonden, Nygréns stiftelse, Föreningen Konstsamfundet, Suomalais-ruotsalainen kulttuurirahasto, Pohjoismainen kulttuuripiste, Per Jonsson Dance Centre, Vantaan tanssiopisto</p><p>Kesto: 50 min <br>Ikäsuositus: 12+ <br>Teos ei sisällä puhetta</p><p>https://www.kaurihonkakoski.com <br>Instagram: @kauri.honkakoski <br>Facebook: Kauri Honkakoski Company</p>",
                "sv": "<p>En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.</p><p>HINTERLAND  är en glimt av sinnets impediment – ett landskap där vi lagrar våra långa skuggor. Gemenskapen hankar sig fram i obekväma förhållanden i ingenmansland, blinda för följderna av sina gärningar.</p><p>Föreställningen representerar stilen Corporeal Mime, som vi sällan ser i Finland. Inspirationen har varit Samuel Becketts mörka novellproduktion som han skrev efter andra världskriget.</p><p>Internationellt prisade Kauri Honkakoski Company känns igen på sina stämningsfulla verk av fysisk teater, där ett rikt kroppsligt uttryck förenas med mänskliga teman.  I HINTERLAND  uppträder Companys begåvade internationella ensemble.</p><p>Längd: 50 min<br>Åldersrekommendation: 12+<br>Verket är ordlöst.</p><p>https://www.kaurihonkakoski.com <br>Instagram: @kauri.honkakoski <br>Facebook: Kauri Honkakoski Company</p>",
                "en": "<p>A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows.</p><p>A community perseveres under dire circumstances on no man’s land, blind to the consequences of its own actions. A show emerging from our time but created in a timeless style, Hinterland explores painful collective themes in tragicomical tones. <br>  <br>The show was created through the art of Corporeal Mime, a form of physical theatre rarely seen in Finland. The starting point was a collection of sombre short stories by Samuel Beckett written immediately after the Second World War.  <br>  <br>Kauri Honkakoski Company is an internationally awarded physical theatre group. They are known for their atmospheric shows that combine rich physical expression with deep human themes. HINTERLAND features the Company’s talented international ensemble.</p><p>Duration: 50 min<br>Age recommendation: 12+<br>The piece does not contain speech.<br>  <br>MORE INFO and SOCIAL MEDIA:  <br>Homepage: https://www.kaurihonkakoski.com  <br>Instagram: @kauri.honkakoski <br>Facebook: Kauri Honkakoski Company</p>"
            },
            "short_description": {
                "fi": "HINTERLAND [joutomaa] on ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.",
                "sv": "En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.",
                "en": "A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Kauri Honkakoski Company: HINTERLAND [joutomaa]",
                "sv": "Kauri Honkakoski Company: HINTERLAND [ödemark]",
                "en": "Kauri Honkakoski Company: HINTERLAND"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61911",
            "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": 1345,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "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."
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1153,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1332,
                    "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": 5954,
                    "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": "yso:p16327",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "elokuva (taiteet)",
                        "film (konstarter)",
                        "spelfilm"
                    ],
                    "created_time": "2023-08-16T05:17:37.994244Z",
                    "last_modified_time": "2023-08-16T05:17:37.994289Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 351,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvataide",
                        "sv": "filmkonst",
                        "en": "cinema (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-poor-things-3570483/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7175,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-15T12:13:47.965173Z",
                    "last_modified_time": "2024-02-06T13:22:55.136382Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743825.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7175/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-15T12:13:47.921247Z",
            "last_modified_time": "2024-02-06T13:22:55.176880Z",
            "date_published": null,
            "start_time": "2024-01-20T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A41FC132774C80E6227BDB9BCA88F58/Poor_things_16_"
            },
            "description": {
                "fi": "<p>Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta.</p><p>Bella on nuori nainen, jonka nerokas mutta omintakeinen tiedemies tri Godwin Baxter (Willem Dafoe) herättää henkiin. Aluksi Bella on innokas opettelemaan elämää Baxterin siipien suojassa. Elämänjanossaan hän kuitenkin karkaa sliipatun ja paheellisen lakimiehen Duncan Wedderburnin (Mark Ruffalo) mukana myrskyisälle matkalle halki mantereiden. Sen myötä aikansa ennakkoluulot karistaneesta Bellasta kasvaa vankkumaton vapauden ja tasa-arvon puolustaja.</p><p>Poor Things voitti Venetsian elokuvajuhlien pääpalkinnon ja se sai Suomen ensiesityksensä tuoreeltaan Rakkautta ja Anarkiaa -festivaalin R&A-gaalan elokuvana syyskuussa. Emma Stone palkittin Golden Globella suorituksestaan parhaana naisnäyttelijänä komediassa tai musikaalissa. Elokuva voitti myös parhaan elokuvan (komedia tai musikaali) Golden Globe -palkinnon.</p><p>Ikäraja 16<br>Kesto 142 min</p><p>Ensi-ilta 12.1.2024</p>"
            },
            "short_description": {
                "fi": "Elokuvantekijä Yorgos Lanthimos ja tuottaja Emma Stone tuovat valkokankaalle mielikuvituksellisen tarinan Bella Baxterin (Stone) uskomattomasta evoluutiosta."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Poor things (16) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61911/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61243",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 575,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 651,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 575,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 1941,
                    "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": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3522488",
                        "sv": "https://www.lippu.fi/eventseries/name-3522488",
                        "en": "https://www.lippu.fi/eventseries/name-3522488"
                    },
                    "description": null,
                    "price": {
                        "fi": "22/16 €, Kannatuslippu 26 €",
                        "sv": "22/16 €, Kannatuslippu 26 €",
                        "en": "22/16 €, Kannatuslippu 26 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5905,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-08T11:13:29.935876Z",
                    "last_modified_time": "2024-02-06T13:22:55.040904Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739347.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5905/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-08T11:13:29.923180Z",
            "last_modified_time": "2024-02-06T13:22:55.083286Z",
            "date_published": null,
            "start_time": "2024-01-20T16: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/11B689C993217ECA951AF16162339A85/Pykalan_Spex_2023_Kaikki_hoviin_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/11B689C993217ECA951AF16162339A85/Pykalan_Spex_2023_Kaikki_hoviin_",
                "en": "http://www.savoyteatteri.fi/en/events/event/11B689C993217ECA951AF16162339A85/Pykalan_Spex_2023_Kaikki_hoviin_"
            },
            "description": {
                "fi": "<p>Tervetuloa Rosamonten hoviin, jossa ruusut ja nuori lempi kukoistavat kilpaa!</p><p>Kaksikymmentä vuotta sitten kauhea kulkutauti pyyhkäisi koko eteläisen läänin yli vieden ruhtinasparin hautaan ja jättäen vallanperijä Ofelian vaille vanhempiaan. Hänen varttuessaan vastuu hovista on levännyt vastuullisen sijaisruhtinatar Silvian harteilla. Nyt aikuiseksi kasvanut Ofelia on astumassa avioon hovinsa puutarhurin kanssa - ennenkuulumatonta!</p><p>Kuherruskuukauden huolettomuus joutuu kuitenkin väistymään, kun mystinen vieras raottaa iäisyyden verhoa, eikä elämä hovissa ole enää pelkkää ruusuilla tanssimista. Kiviset käytävät täyttyvät kuiskauksista, mutta onko kaiku vääristänyt viestin ennen kuin se tavoittaa kuulijansa?</p><p>Pykälän Spex 2023 kutsuu Kaikki hoviin! Avaa sinäkin ovet omalaatuiseen linnaan, jossa narrien hupailun lomassa voit kuulla jopa kohtalon äänen…</p><p>Ikäsuositus: 12+</p><p>Kesto n. 2 h 40 min, sisältää väliajan</p>",
                "sv": "<p>Välkommen till Rosamontes hov, där rosorna och den unga kärleken blomstrar i kapp!</p><p>För tjugo år sedan svepte över hela södra länet en fruktansvärd pest som skickade fursten och furstinnan i graven och tronarvingen Ofelia blev föräldralös. Under hennes uppväxt har ansvaret för hovet legat på den ansvarsfulla ställföreträdande furstinnan Silvias axlar. Nu har dock Ofelia blivit vuxen och hon ska snart gifta sig med hovets trädgårdsmästare – skandalöst!</p><p>Dock får den sorglösa smekmånaden avbrytas i förtid när en mystisk gäst gläntar på evighetens slöja och livet vid hovet inte längre är en dans på rosor. Stenkorridorerna fylls av viskningar, men har ekot förvrängt budskapet innan det når mottagaren?</p><p>Pykälän Spex 2023 bjuder alla med till hovet! Stig in du också i det märkliga slottet där narrarnas spexande blandar sig med ödets röst ...</p><p>Rekommenderad ålder: 12+</p><p>Längd cirka 2 h 40 min. med paus</p>",
                "en": "<p>Welcome to Rosamonte’s Court, where roses and young love blossom in competition!</p><p>Twenty years ago, a terrible plague swept across the entire southern province, sending the Prince and Princess to their graves and leaving the heir to the throne, Ofelia, without her parents. As she has grown up, the responsibility for the court has rested on the shoulders of substitute princess Silvia. Now grown up, Ofelia is about to marry her court gardener – how unheard of!</p><p>But the carefree honeymoon is about to be cut short when a mysterious visitor opens the veil of eternity, and life at court is no longer a bed of roses. Whispers fill the stone corridors, but has an echo distorted the message before it reaches its listener?</p><p>Pykälän Spex 2023 invites everyone to the court! Open the doors to the peculiar castle where, amidst the antics of jesters, you can even hear the voice of destiny...</p><p>Age recommendation: 12 and older</p><p>Duration approx. 2 h 40 min with intermission.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa Rosamonten hoviin, jossa ruusut ja nuori lempi kukoistavat kilpaa!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Pykälä ry",
                "sv": "Pykälä ry",
                "en": "Pykälä ry"
            },
            "name": {
                "fi": "Pykälän Spex 2023 – Kaikki hoviin!",
                "sv": "Pykälän Spex 2023 – Kaikki hoviin!",
                "en": "Pykälän Spex 2023 – Kaikki hoviin!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61243/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61472",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2026-02-13T06:09:13.632215Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 594,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.959616,
                        60.183193
                    ]
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:32",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.496484Z",
                    "last_modified_time": "2024-02-06T13:19:13.818300Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 790,
                    "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: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": 761,
                    "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:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:51",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.725686Z",
                    "last_modified_time": "2024-02-06T13:19:14.175381Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 264,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5007",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of circus",
                        "sirkus (taidelajit)",
                        "cirkus (konstart)",
                        "cirkuskonst"
                    ],
                    "created_time": "2023-08-16T05:18:56.386288Z",
                    "last_modified_time": "2023-08-16T05:18:56.386306Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 179,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sirkustaide",
                        "sv": "cirkus (konstarter)",
                        "en": "circus (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/omia-ruhje-3547466/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/omia-ruhje-3547466/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/omia-ruhje-3547466/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6289,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-28T10:13:30.585164Z",
                    "last_modified_time": "2024-02-06T13:22:54.934768Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738527.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6289/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-28T10:13:30.563826Z",
            "last_modified_time": "2024-02-06T13:22:54.976217Z",
            "date_published": null,
            "start_time": "2024-01-20T16: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/6085A842574B0B3DA5AC398049447974/Omia_ruhje",
                "sv": "http://www.caisa.fi/sv/evenemang/event/6085A842574B0B3DA5AC398049447974/Omia_ruhje_",
                "en": "http://www.caisa.fi/en/events/event/6085A842574B0B3DA5AC398049447974/Omia_ruhje"
            },
            "description": {
                "fi": "<p>Omiaruhje-kollektiivin teos, Omia ruhje, rakentaa tanssin, sirkuksen ja lavarunouden keinoin kuvauksen ihmisenä olemisen iloista ja vastoinkäymisistä.</p><p>Kollektiivin taiteilijat luovat tunnelmallisen kokoelman hetkiä ihmisenä olemisen iloista ja ahdistuksista ammentaen inspiraatiota kohtaamistaan odotuksista ja vastoinkäymisistä. Esityksessä ruhjeet ja tunteenpurkaukset muovautuvat synkkyyttä vaalien eteenpäin työntäväksi voimaksi, kun taiteilijat kyseenalaistavat omaksumiaan rooleja ja olemisen tapoja pehmeyden, rohkeuden ja leikin avulla. Kuka keksi säännöt ja kuinka niitä muutetaan? <br> <br>Omiaruhje-kollektiivi yhdistää osaamisensa ja kiinnostuksen kohteensa jakaen yhteisen tavoitteen: luoda voimakkaita, fyysisiä ja visuaalisia teoksia, jotka kurkottavat genrerajojen yli.</p><p>Työryhmä:<br>Teoksen konsepti ja toteutus: Omiaruhje-kollektiivi – Emilia Ahopelto, Milla Kurronen, Ines Masanti, Meri Salmela<br>Esiintyjät: tanssitaiteilija Emilia Ahopelto, sirkustaiteilija Milla Kurronen, visuaalinen suunnittelija Ines Masanti, tanssitaiteilija Meri Salmela<br>Äänisuunnittelu: Emilia Ahopelto<br>Visuaalinen suunnittelu ja toteutus: Ines Masanti<br>Puvustus: Hanna Laiho</p><p>Tukijat: Cirko - Uuden Sirkuksen Keskus, Centre de Création Les Joncailles, Tanssiteatteri Hurjaruuth, Vanhan Kaivoksen Residenssi, Taidetehtaan Tanssikoulu, NÄYTTÄMÖ, Taiteen edistämiskeskus</p><p>Kesto: 60 min<br>Ikäsuositus: 12+<br>Esitys sisältää välkkyviä valoja, savukoneen käyttöä sekä voimakasta kielenkäyttöä</p><p>Kieli: teos sisältää suomen- ja englannin kieltä sekä sanattomia osuuksia. Esityksissä on tekstejä suomeksi ja englanniksi. Torstain 18.1. ja lauantain 20.1. esitykset kuvailutulkataan näkörajoitteisille suomen kielellä.</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi. Avustaja tai tulkki ilmaiseksi.</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Omiaruhje-kollektivets verk, Omia ruhje, bygger genom dans, cirkus och scenpoesi en beskrivning av glädjen av och motgångarna i att vara människa.</p>",
                "en": "<p>Omiaruhje collective’s Omia ruhje creates a description of the joys and hardships of being a human by means of dance, circus and spoken word.</p>"
            },
            "short_description": {
                "fi": "Omiaruhje-kollektiivin teos, Omia ruhje, rakentaa tanssin, sirkuksen ja lavarunouden keinoin kuvauksen ihmisenä olemisen iloista ja vastoinkäymisistä.",
                "sv": "Omiaruhje-kollektivets verk, Omia ruhje, bygger genom dans, cirkus och scenpoesi en beskrivning av glädjen av och motgångarna i att vara människa.",
                "en": "Omiaruhje collective’s Omia ruhje creates a description of the joys and hardships of being a human by means of dance, circus and spoken word."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Omia ruhje",
                "sv": "Omia ruhje",
                "en": "Omia ruhje"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61472/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61529",
            "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": 1345,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "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."
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1332,
                    "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:51",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.725686Z",
                    "last_modified_time": "2024-02-06T13:19:14.175381Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 264,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5007",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of circus",
                        "sirkus (taidelajit)",
                        "cirkus (konstart)",
                        "cirkuskonst"
                    ],
                    "created_time": "2023-08-16T05:18:56.386288Z",
                    "last_modified_time": "2023-08-16T05:18:56.386306Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 179,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sirkustaide",
                        "sv": "cirkus (konstarter)",
                        "en": "circus (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://lippu.fi/event/agit-cirk-cirko-kadonnut-malmitalo-17877601/",
                        "sv": "https://lippu.fi/event/agit-cirk-cirko-kadonnut-malmitalo-17877601/",
                        "en": "https://lippu.fi/event/agit-cirk-cirko-kadonnut-malmitalo-17877601/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6341,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T12:13:42.253535Z",
                    "last_modified_time": "2024-02-06T13:22:54.841822Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739487.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6341/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-30T12:13:42.225206Z",
            "last_modified_time": "2024-02-06T13:22:54.881649Z",
            "date_published": null,
            "start_time": "2024-01-20T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F7F9696FDC714A0DCB10357E5E1C081C/Agit-Cirk_Cirko_Kadonnut_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F7F9696FDC714A0DCB10357E5E1C081C/Agit-Cirk_Cirko_Kadonnut_",
                "en": "http://www.malmitalo.fi/en/events/event/F7F9696FDC714A0DCB10357E5E1C081C/Agit-Cirk_Cirko_Kadonnut_"
            },
            "description": {
                "fi": "<p>Kadonnut on koko perheen kaunis, hauska ja toisinaan hivenen vakavakin sanaton nykysirkusteos.</p><p>Herkät tasapainot ja ihmeellinen pariakrobatia herättelevät ajattelemaan, kuinka tärkeää on välittää toisesta ja arvostaa jokaisen omaa erityistä tapaa loistaa.</p><p>Kadonnut kahmaisee sinut mukaan sisäisen valonsa ja toisensa kadottaneiden sirkustaiteilijoiden muistojen ja toiveiden maailmaan, jossa uskomaton on jokapäiväistä. Matka sirkusseurueen kanssa vie sinut hersyvän naurun, pienten kommellusten ja muutamien piilotettujen kyynelten poluille, joiden päässä kajastaa yhteinen loisto.</p><p>Teos on Cirko – Uuden sirkuksen keskuksen ja Agit-Cirkin yhteistuotanto.</p><p>Konsepti ja esiintyjät: Jenni Lehtinen ja Sasu Peistola<br>Valosuunnittelu: Jere Mönkkönen<br>Äänisuunnittelu: Sami Tammela<br>Puku- ja lavastesuunnittelu: Reeta Tuoresmäki<br>Dramaturgia ja liikeohjaus: Jarkko Lehmus<br>Taikuuden konsultaatio: Robert Jägerhorn<br>Ohjaus: Työryhmä</p><p>Kesto: n. 50 minuuttia<br>Ikäsuositus: kaikille yli 3-vuotiaille</p>",
                "sv": "<p>Kadonnut (Försvunnen) är ett vackert, roligt och stundom något allvarsamt nutidscirkusverk för hela familjen.</p><p>Känsliga balanser och fantastisk parakrobatik väcker tanken på hur viktigt det är att bry sig om den andra och uppskatta var och ens eget speciella sätt att stråla.</p><p>Längd: ca. 50 min<br>Åldersrekommendation: 3+</p>",
                "en": "<p>Kadonnut is a beautiful, funny and, at times, slightly serious non-verbal contemporary circus performance for the whole family.</p><p>Tender balances and amazing pair acrobatics make you reflect on how important it is to care for each other and to value everyone’s unique way to shine.</p><p>Duration: 50 min<br> Age recommendation 3 and up</p>"
            },
            "short_description": {
                "fi": "Kadonnut on koko perheen kaunis, hauska ja toisinaan hivenen vakavakin sanaton nykysirkusteos.",
                "sv": "Kadonnut (Försvunnen) är ett vackert, roligt och stundom något allvarsamt nutidscirkusverk för hela familjen.",
                "en": "Kadonnut is a beautiful, funny and, at times, slightly serious non-verbal contemporary circus performance for the whole family."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Agit-Cirk & Cirko: Kadonnut",
                "sv": "Agit-Cirk & Cirko: Kadonnut",
                "en": "Agit-Cirk & Cirko: Kadonnut"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61529/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61744",
            "has_user_editable_resources": false,
            "location": null,
            "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": 1314,
                    "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": 1953,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:348",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.541371Z",
                    "last_modified_time": "2024-02-06T13:19:15.204233Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1061,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:45",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.630975Z",
                    "last_modified_time": "2024-02-06T13:19:14.040714Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 792,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Vuotalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 13446,
                    "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/vuotalo-sanger-foer-sma-oeron-kulttuuritila-merirasti-18075593/",
                        "sv": "https://www.lippu.fi/event/vuotalo-sanger-foer-sma-oeron-kulttuuritila-merirasti-18075593/",
                        "en": "https://www.lippu.fi/event/vuotalo-sanger-foer-sma-oeron-kulttuuritila-merirasti-18075593/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6807,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-22T11:12:04.005751Z",
                    "last_modified_time": "2024-02-06T13:22:54.753641Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740365.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6807/?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": "2023-12-22T11:12:03.977992Z",
            "last_modified_time": "2024-02-06T13:22:54.790742Z",
            "date_published": null,
            "start_time": "2024-01-20T13: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6D20662FB8A784492684E4F9C2E2CE74/Teater_Nara_Sanger_for_sma_oron_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6D20662FB8A784492684E4F9C2E2CE74/Teater_Nara_Sanger_for_sma_oron_",
                "en": "http://www.vuotalo.fi/en/events/event/6D20662FB8A784492684E4F9C2E2CE74/Teater_Nara_Sanger_for_sma_oron_"
            },
            "description": {
                "fi": "<p>Sånger för små öron – Lauluja pienille korville on ruotsinkielinen sanaleikkikonsertti, jossa lapset kohtaavat erilaisia ovelia otuksia.</p><p>Annika Cleo on säveltänyt musiikin Nina Granin kirjan <i>Runoja pienille korville</i> teksteihin, ja yhdessä Nicklas Lantzin kanssa hän vie lapset musiikilliseen seikkailuun sanojen maailmaan. Konsertti on leikkisä ja vuorovaikutteinen, ja tavoitteena on herätellä lasten luovuutta ja kielitaitoa.</p><p>Konsertti järjestetään Kulttuuritila Merirastissa (Jaluspolku 3).</p><p>Runot: Nina Gran<br>Projektinjohto & sävellys: Annika Cleo<br>Lavalla: Annika Cleo & Nicklas Lantz<br>Lavastus: Nicklas Lantz<br>Kuvat: Sanna Mander<br>Layout: Nanne Nylund<br>Tuottaja: Anki Hellberg-Sågfors</p><p>Ikäsuositus: 4–7 vuotta<br>Kesto: 30 minuuttia<br>Kieli: ruotsi</p>",
                "sv": "<p>En ordlekskonsert där barnen får möta Vrålapan, Smilfinken, Snorvalpen och andra underfundiga filurer.</p><p>Annika Cleo har tonsatt Nina Grans bok <i>Dikter för små öron</i> och tillsammans med Nicklas Lantz tar hon med sig barnen på ett musikaliskt äventyr i ordens värld. Konserten är lekfull och interaktiv och målsättningen är att väcka barnens kreativitet och språkkänsla.</p><p>Konserten hålls på <b>Kulttuuritila Merirasti</b> (Skotstigen 3).</p><p>Dikter: Nina Gran<br>Projektledning & tonsättning: Annika Cleo<br>På scen: Annika Cleo & Nicklas Lantz<br>Scenografi: Nicklas Lantz<br>Bilder: Sanna Mander<br>Layout: Nanne Nylund<br>Producent: Anki Hellberg-Sågfors</p><p>för åldern: 4–7 år<br>Längd: 30 minuter<br>Språk: svenska</p>",
                "en": "<p>Sånger for små öron – Songs for Small Ears – is a Swedish-language wordplay concert where children encounter various clever creatures.</p><p>Annika Cleo has composed music for Nina Gran's poetry book <i>Runoja pienille korville</i>, and together with Nicklas Lantz, they take children on a musical adventure into the world of words. The concert is playful and interactive, with the aim of sparking children's creativity and language skills.</p><p>The concert is held at Kulttuuritila Merirasti (Jaluspolku 3).</p><p>Poems: Nina Gran<br>Project Management & Composition: Annika Cleo<br>On Stage: Annika Cleo & Nicklas Lantz<br>Stage Design: Nicklas Lantz<br>Images: Sanna Mander<br>Layout: Nanne Nylund<br>Producer: Anki Hellberg-Sågfors</p><p>Age Recommendation: 4–7 years<br>Duration: 30 minutes<br>Language: Swedish</p>"
            },
            "short_description": {
                "fi": "Sånger för små öron – Lauluja pienille korville on ruotsinkielinen sanaleikkikonsertti, jossa lapset kohtaavat erilaisia ovelia otuksia.",
                "sv": "En ordlekskonsert där barnen får möta Vrålapan, Smilfinken, Snorvalpen och andra underfundiga filurer.",
                "en": "Sånger for små öron – Songs for Small Ears – is a Swedish-language wordplay concert where children encounter various clever creatures."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Teater Nära: Sånger för små öron – Lastenmusiikkikonsertti Kulttuuritila Merirastissa",
                "sv": "Teater Nära: Sånger för små öron – En barnkonsert i Kulttuuritila Merirasti",
                "en": "Teater Nära: Sånger för små öron – Children's concert at Kulttuuritila Merirasti"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61744/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61751",
            "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": 1345,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "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."
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "name": {
                    "fi": "Malmitalo",
                    "sv": "Malms kulturhus",
                    "en": "Cultural Centre Malmitalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:29",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.424657Z",
                    "last_modified_time": "2024-02-06T13:19:13.738407Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1153,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Elokuvat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:42",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.601092Z",
                    "last_modified_time": "2024-02-06T13:19:13.998256Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1332,
                    "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": 5954,
                    "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": "yso:p16327",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "elokuva (taiteet)",
                        "film (konstarter)",
                        "spelfilm"
                    ],
                    "created_time": "2023-08-16T05:17:37.994244Z",
                    "last_modified_time": "2023-08-16T05:17:37.994289Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 351,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "elokuvataide",
                        "sv": "filmkonst",
                        "en": "cinema (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6823,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T08:12:25.730130Z",
                    "last_modified_time": "2024-02-06T13:22:54.654184Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743123.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6823/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-27T08:12:25.717750Z",
            "last_modified_time": "2024-02-06T13:22:54.694633Z",
            "date_published": null,
            "start_time": "2024-01-20T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CBAB42AE2524E291127760DB08AD991C/Huijarit_7_"
            },
            "description": {
                "fi": "<p>Huijarit kertoo pätkätöiden ja rahapulan rasittamasta Sirusta, joka saa väärinymmärrysten seurauksena keploteltua itsensä valelääkäriksi hyvinvointiklinikalle.</p><p>Uusi parisuhde asianajaja Nikon kanssa on toivottavasti totta, vaikka muuten vaikuttaa siltä, että Sirun lisäksi useampi lähipiiristä valehtelee, jotkut jopa ammatikseen.<br> <br>Ikäsuositus: 7<br>Kesto: 93 min<br>Ensi-ilta: 26.12.2023</p><p>Elokuva on tekstitetty suomeksi.</p>"
            },
            "short_description": {
                "fi": "Huijarit kertoo pätkätöiden ja rahapulan rasittamasta Sirusta, joka saa väärinymmärrysten seurauksena keploteltua itsensä valelääkäriksi hyvinvointiklinikalle."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Huijarit (7)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61751/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61730",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "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:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "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": 862,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:350",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.556582Z",
                    "last_modified_time": "2024-02-06T13:19:15.225361Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 429,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Tanssi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 712,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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": 5954,
                    "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": 4807,
                    "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": 5010,
                    "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"
                }
            ],
            "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": 6717,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-19T12:12:57.065142Z",
                    "last_modified_time": "2024-02-06T13:22:54.554486Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741021.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6717/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-19T12:12:57.039387Z",
            "last_modified_time": "2024-02-06T13:22:54.597778Z",
            "date_published": null,
            "start_time": "2024-01-20T12:00:00Z",
            "end_time": "2024-01-20T13: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DF4A1725C8237F7C2352BD34D3CEB607/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/DF4A1725C8237F7C2352BD34D3CEB607/Barnens_DanceAbility_dansworkshops",
                "en": "http://www.annantalo.fi/en/events/event/DF4A1725C8237F7C2352BD34D3CEB607/Children_s_DanceAbility_workshops"
            },
            "description": {
                "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Muut inklusiiviset tanssitunnit: 3.2., 17.2., 2.3.,16.3., 30.3., 20.4., 11.5., 25.5. klo 14–15.</p><p>Tiedustelut: daf@danceabilityfinland.com</p>",
                "sv": "<p>DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.</p><p>Klasserna är öppna för alla barn och deras närstående vuxna oavsett funktionsnedsättning eller inte.</p><p>Lokalerna är tillgängliga.</p><p>Efterfrågningar: daf@danceabilityfinland.com</p>",
                "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Enquiries: daf@danceabilityfinland.com</p>"
            },
            "short_description": {
                "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.",
                "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Barnens DanceAbility dansworkshops",
                "en": "Children's DanceAbility workshops"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61730/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61242",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 575,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 651,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 575,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 1941,
                    "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": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3522488",
                        "sv": "https://www.lippu.fi/eventseries/name-3522488",
                        "en": "https://www.lippu.fi/eventseries/name-3522488"
                    },
                    "description": null,
                    "price": {
                        "fi": "22/16 €, Kannatuslippu 26 €",
                        "sv": "22/16 €, Kannatuslippu 26 €",
                        "en": "22/16 €, Kannatuslippu 26 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5904,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-08T11:13:29.807193Z",
                    "last_modified_time": "2024-02-06T13:22:54.458880Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739346.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5904/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-08T11:13:29.795527Z",
            "last_modified_time": "2024-02-06T13:22:54.501281Z",
            "date_published": null,
            "start_time": "2024-01-19T17: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7E2FA4C53F3A5196CC77F238CB6234E0/Pykalan_Spex_2023_Kaikki_hoviin_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7E2FA4C53F3A5196CC77F238CB6234E0/Pykalan_Spex_2023_Kaikki_hoviin_",
                "en": "http://www.savoyteatteri.fi/en/events/event/7E2FA4C53F3A5196CC77F238CB6234E0/Pykalan_Spex_2023_Kaikki_hoviin_"
            },
            "description": {
                "fi": "<p>Tervetuloa Rosamonten hoviin, jossa ruusut ja nuori lempi kukoistavat kilpaa!</p><p>Kaksikymmentä vuotta sitten kauhea kulkutauti pyyhkäisi koko eteläisen läänin yli vieden ruhtinasparin hautaan ja jättäen vallanperijä Ofelian vaille vanhempiaan. Hänen varttuessaan vastuu hovista on levännyt vastuullisen sijaisruhtinatar Silvian harteilla. Nyt aikuiseksi kasvanut Ofelia on astumassa avioon hovinsa puutarhurin kanssa - ennenkuulumatonta!</p><p>Kuherruskuukauden huolettomuus joutuu kuitenkin väistymään, kun mystinen vieras raottaa iäisyyden verhoa, eikä elämä hovissa ole enää pelkkää ruusuilla tanssimista. Kiviset käytävät täyttyvät kuiskauksista, mutta onko kaiku vääristänyt viestin ennen kuin se tavoittaa kuulijansa?</p><p>Pykälän Spex 2023 kutsuu Kaikki hoviin! Avaa sinäkin ovet omalaatuiseen linnaan, jossa narrien hupailun lomassa voit kuulla jopa kohtalon äänen…</p><p>Ikäsuositus: 12+</p><p>Kesto n. 2 h 40 min, sisältää väliajan</p>",
                "sv": "<p>Välkommen till Rosamontes hov, där rosorna och den unga kärleken blomstrar i kapp!</p><p>För tjugo år sedan svepte över hela södra länet en fruktansvärd pest som skickade fursten och furstinnan i graven och tronarvingen Ofelia blev föräldralös. Under hennes uppväxt har ansvaret för hovet legat på den ansvarsfulla ställföreträdande furstinnan Silvias axlar. Nu har dock Ofelia blivit vuxen och hon ska snart gifta sig med hovets trädgårdsmästare – skandalöst!</p><p>Dock får den sorglösa smekmånaden avbrytas i förtid när en mystisk gäst gläntar på evighetens slöja och livet vid hovet inte längre är en dans på rosor. Stenkorridorerna fylls av viskningar, men har ekot förvrängt budskapet innan det når mottagaren?</p><p>Pykälän Spex 2023 bjuder alla med till hovet! Stig in du också i det märkliga slottet där narrarnas spexande blandar sig med ödets röst ...</p><p>Rekommenderad ålder: 12+</p><p>Längd cirka 2 h 40 min. med paus</p>",
                "en": "<p>Welcome to Rosamonte’s Court, where roses and young love blossom in competition!</p><p>Twenty years ago, a terrible plague swept across the entire southern province, sending the Prince and Princess to their graves and leaving the heir to the throne, Ofelia, without her parents. As she has grown up, the responsibility for the court has rested on the shoulders of substitute princess Silvia. Now grown up, Ofelia is about to marry her court gardener – how unheard of!</p><p>But the carefree honeymoon is about to be cut short when a mysterious visitor opens the veil of eternity, and life at court is no longer a bed of roses. Whispers fill the stone corridors, but has an echo distorted the message before it reaches its listener?</p><p>Pykälän Spex 2023 invites everyone to the court! Open the doors to the peculiar castle where, amidst the antics of jesters, you can even hear the voice of destiny...</p><p>Age recommendation: 12 and older</p><p>Duration approx. 2 h 40 min with intermission.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa Rosamonten hoviin, jossa ruusut ja nuori lempi kukoistavat kilpaa!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Pykälä ry",
                "sv": "Pykälä ry",
                "en": "Pykälä ry"
            },
            "name": {
                "fi": "Pykälän Spex 2023 – Kaikki hoviin!",
                "sv": "Pykälän Spex 2023 – Kaikki hoviin!",
                "en": "Pykälän Spex 2023 – Kaikki hoviin!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61242/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61471",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2026-02-13T06:09:13.632215Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 594,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.959616,
                        60.183193
                    ]
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:32",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.496484Z",
                    "last_modified_time": "2024-02-06T13:19:13.818300Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 790,
                    "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: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": 761,
                    "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:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:51",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.725686Z",
                    "last_modified_time": "2024-02-06T13:19:14.175381Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 264,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5007",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of circus",
                        "sirkus (taidelajit)",
                        "cirkus (konstart)",
                        "cirkuskonst"
                    ],
                    "created_time": "2023-08-16T05:18:56.386288Z",
                    "last_modified_time": "2023-08-16T05:18:56.386306Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 179,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sirkustaide",
                        "sv": "cirkus (konstarter)",
                        "en": "circus (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/omia-ruhje-3547466/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/omia-ruhje-3547466/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/omia-ruhje-3547466/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6288,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-28T10:13:30.257456Z",
                    "last_modified_time": "2024-02-06T13:22:54.358819Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738526.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6288/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-28T10:13:30.236304Z",
            "last_modified_time": "2024-02-06T13:22:54.404145Z",
            "date_published": null,
            "start_time": "2024-01-19T17: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/278398D1BA9572024D9BBE96BB0B181A/Omia_ruhje",
                "sv": "http://www.caisa.fi/sv/evenemang/event/278398D1BA9572024D9BBE96BB0B181A/Omia_ruhje_",
                "en": "http://www.caisa.fi/en/events/event/278398D1BA9572024D9BBE96BB0B181A/Omia_ruhje"
            },
            "description": {
                "fi": "<p>Omiaruhje-kollektiivin teos, Omia ruhje, rakentaa tanssin, sirkuksen ja lavarunouden keinoin kuvauksen ihmisenä olemisen iloista ja vastoinkäymisistä.</p><p>Kollektiivin taiteilijat luovat tunnelmallisen kokoelman hetkiä ihmisenä olemisen iloista ja ahdistuksista ammentaen inspiraatiota kohtaamistaan odotuksista ja vastoinkäymisistä. Esityksessä ruhjeet ja tunteenpurkaukset muovautuvat synkkyyttä vaalien eteenpäin työntäväksi voimaksi, kun taiteilijat kyseenalaistavat omaksumiaan rooleja ja olemisen tapoja pehmeyden, rohkeuden ja leikin avulla. Kuka keksi säännöt ja kuinka niitä muutetaan? <br> <br>Omiaruhje-kollektiivi yhdistää osaamisensa ja kiinnostuksen kohteensa jakaen yhteisen tavoitteen: luoda voimakkaita, fyysisiä ja visuaalisia teoksia, jotka kurkottavat genrerajojen yli.</p><p>Työryhmä:<br>Teoksen konsepti ja toteutus: Omiaruhje-kollektiivi – Emilia Ahopelto, Milla Kurronen, Ines Masanti, Meri Salmela<br>Esiintyjät: tanssitaiteilija Emilia Ahopelto, sirkustaiteilija Milla Kurronen, visuaalinen suunnittelija Ines Masanti, tanssitaiteilija Meri Salmela<br>Äänisuunnittelu: Emilia Ahopelto<br>Visuaalinen suunnittelu ja toteutus: Ines Masanti<br>Puvustus: Hanna Laiho</p><p>Tukijat: Cirko - Uuden Sirkuksen Keskus, Centre de Création Les Joncailles, Tanssiteatteri Hurjaruuth, Vanhan Kaivoksen Residenssi, Taidetehtaan Tanssikoulu, NÄYTTÄMÖ, Taiteen edistämiskeskus</p><p>Kesto: 60 min<br>Ikäsuositus: 12+<br>Esitys sisältää välkkyviä valoja, savukoneen käyttöä sekä voimakasta kielenkäyttöä</p><p>Kieli: teos sisältää suomen- ja englannin kieltä sekä sanattomia osuuksia. Esityksissä on tekstejä suomeksi ja englanniksi. Torstain 18.1. ja lauantain 20.1. esitykset kuvailutulkataan näkörajoitteisille suomen kielellä.</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi. Avustaja tai tulkki ilmaiseksi.</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Omiaruhje-kollektivets verk, Omia ruhje, bygger genom dans, cirkus och scenpoesi en beskrivning av glädjen av och motgångarna i att vara människa.</p>",
                "en": "<p>Omiaruhje collective’s Omia ruhje creates a description of the joys and hardships of being a human by means of dance, circus and spoken word.</p>"
            },
            "short_description": {
                "fi": "Omiaruhje-kollektiivin teos, Omia ruhje, rakentaa tanssin, sirkuksen ja lavarunouden keinoin kuvauksen ihmisenä olemisen iloista ja vastoinkäymisistä.",
                "sv": "Omiaruhje-kollektivets verk, Omia ruhje, bygger genom dans, cirkus och scenpoesi en beskrivning av glädjen av och motgångarna i att vara människa.",
                "en": "Omiaruhje collective’s Omia ruhje creates a description of the joys and hardships of being a human by means of dance, circus and spoken word."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Omia ruhje",
                "sv": "Omia ruhje",
                "en": "Omia ruhje"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61471/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61178",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 977,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke: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": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 651,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 982,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 1941,
                    "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": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3476929/",
                        "sv": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3476929/",
                        "en": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3476929/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5570,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-20T13:15:12.787321Z",
                    "last_modified_time": "2024-02-06T13:22:54.260915Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738356.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5570/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-20T13:15:12.766238Z",
            "last_modified_time": "2024-02-06T13:22:54.303635Z",
            "date_published": null,
            "start_time": "2024-01-19T17: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/1F0CE112A454CA30E4AE4ECA6DD7BBC5/LOPPUUNMYYTY_Kauri_Honkakoski_Company_HINTERLAND_joutomaa_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/1F0CE112A454CA30E4AE4ECA6DD7BBC5/SLUTSALD_Kauri_Honkakoski_Company_HINTERLAND_odemark_",
                "en": "http://www.stoa.fi/en/events/event/1F0CE112A454CA30E4AE4ECA6DD7BBC5/SOLD_OUT_Kauri_Honkakoski_Company_HINTERLAND"
            },
            "description": {
                "fi": "<p>HINTERLAND [joutomaa] on ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.</p><p>HINTERLAND tulee taas! Syksyllä 2023 loppuunmyyty esitys palaa ohjelmistoon yleisön pyynnöstä.</p><p>Yleisön kommentteja: <br><i>”Kertakaikkisen vaikuttava.”<br>”Taitavasti toteutettu, lohduton ja hikinen painajainen.”<br>”Kaunista ja tarkkaa ilmaisua.”<br>”Merkitykset virtasivat katsojan tajuntaan kaikkien aistien kautta.”<br>”Mua niin itketti.”<br>”Rankka esitys ei tuntunut kauhulla ja tuholla mässäilyltä, vaan enemmän sen inhimilliseltä tarkastelulta.”<br>”Upea, maaginen.”<br>”Vaikea löytää sanoja, niin hienoa liikettä ja kerrontaa.”<br>”Mielikuvituksen totaalista immersiota!”<br>”Nautin tutusta mutta kummasta, tarinallisesta mutta abstraktista.”<br>”Bravo! Tämä oli niin hyvä!!!”<br> <br> ”Elokuvien ryöstöviljelemät kohtaukset tuntuivat taas vaikuttavilta, eräänlainen puhdistus ja pölyjen pyyhkiminen … kohtasi uutena ja järkyttävänä sen, mihin on tavallaan jo ehtinyt turtua.”</i><br>- Maria Säkö, tanssi- ja teatterikriitikko</p><p>HINTERLAND on välähdys mielen joutomaasta – maisemasta, jonne varastoimme pitkät varjomme. Yhteisö sinnittelee tukalissa olosuhteissa ei-kenenkään-maalla, sokeina tekojensa seurauksille.</p><p>Esitys edustaa Corporeal Mime -näyttämötaidetta, jota Suomessa harvoin nähdään. Inspiraationa on ollut Samuel Beckettin toisen maailmansodan jälkeen kirjoittama tummanpuhuva novellituotanto. <br>  <br>Kansainvälisesti palkittu Kauri Honkakoski Company tunnetaan tunnelmallisista fyysisen teatterin teoksista, joissa rikas kehollinen ilmaisu yhdistyy inhimillisiin teemoihin.  HINTERLANDissä esiintyy Companyn taitava kansainvälinen ensemble.</p><p>Ohjaus, dramaturgia: Kauri Honkakoski <br>Esiintyjät: Oona Jama, Sonja Järvisalo, Ines Kakkonen, Liv Meijer Nordgren, Ruben Nagore Santandreu, Freia Stenbäck, Valter Sui  <br>Valosuunnittelu, lavastus: Sisu Nojonen <br>Äänisuunnittelu: Tuuli Kyttälä <br>Puvustus: Kauri Honkakoski, Liv Meijer Nordgren <br>Kuvat: Laura Vuoma <br>Traileri: Laura Vuoma, Kauri Honkakoski, Tuuli Kyttälä <br>Yhteistuotanto: Kauri Honkakoski Company & Stoa</p><p>Tukijat: Taiteen edistämiskeskus, Jenny & Antti Wihurin rahasto, Svenska kulturfonden, Nygréns stiftelse, Föreningen Konstsamfundet, Suomalais-ruotsalainen kulttuurirahasto, Pohjoismainen kulttuuripiste, Per Jonsson Dance Centre, Vantaan tanssiopisto</p><p>Kesto: 50 min <br>Ikäsuositus: 12+ <br>Teos ei sisällä puhetta</p><p>https://www.kaurihonkakoski.com <br>Instagram: @kauri.honkakoski <br>Facebook: Kauri Honkakoski Company</p>",
                "sv": "<p>En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.</p><p>HINTERLAND  är en glimt av sinnets impediment – ett landskap där vi lagrar våra långa skuggor. Gemenskapen hankar sig fram i obekväma förhållanden i ingenmansland, blinda för följderna av sina gärningar.</p><p>Föreställningen representerar stilen Corporeal Mime, som vi sällan ser i Finland. Inspirationen har varit Samuel Becketts mörka novellproduktion som han skrev efter andra världskriget.</p><p>Internationellt prisade Kauri Honkakoski Company känns igen på sina stämningsfulla verk av fysisk teater, där ett rikt kroppsligt uttryck förenas med mänskliga teman.  I HINTERLAND  uppträder Companys begåvade internationella ensemble.</p><p>Längd: 50 min<br>Åldersrekommendation: 12+<br>Verket är ordlöst.</p><p>https://www.kaurihonkakoski.com <br>Instagram: @kauri.honkakoski <br>Facebook: Kauri Honkakoski Company</p>",
                "en": "<p>A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows.</p><p>A community perseveres under dire circumstances on no man’s land, blind to the consequences of its own actions. A show emerging from our time but created in a timeless style, Hinterland explores painful collective themes in tragicomical tones. <br>  <br>The show was created through the art of Corporeal Mime, a form of physical theatre rarely seen in Finland. The starting point was a collection of sombre short stories by Samuel Beckett written immediately after the Second World War.  <br>  <br>Kauri Honkakoski Company is an internationally awarded physical theatre group. They are known for their atmospheric shows that combine rich physical expression with deep human themes. HINTERLAND features the Company’s talented international ensemble.</p><p>Duration: 50 min<br>Age recommendation: 12+<br>The piece does not contain speech.<br>  <br>MORE INFO and SOCIAL MEDIA:  <br>Homepage: https://www.kaurihonkakoski.com  <br>Instagram: @kauri.honkakoski <br>Facebook: Kauri Honkakoski Company</p>"
            },
            "short_description": {
                "fi": "HINTERLAND [joutomaa] on ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.",
                "sv": "En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.",
                "en": "A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "LOPPUUNMYYTY Kauri Honkakoski Company: HINTERLAND [joutomaa]",
                "sv": "SLUTSÅLD Kauri Honkakoski Company: HINTERLAND [ödemark]",
                "en": "SOLD OUT Kauri Honkakoski Company: HINTERLAND"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61178/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61566",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 977,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke: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": 790,
                    "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:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 982,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:50",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.712175Z",
                    "last_modified_time": "2024-02-06T13:19:14.155029Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 380,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Näyttelyt"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "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"
                }
            ],
            "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": 6435,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-05T15:13:34.658927Z",
                    "last_modified_time": "2024-02-06T13:22:54.059871Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741346.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6435/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-05T15:13:34.615022Z",
            "last_modified_time": "2024-02-06T13:22:54.109648Z",
            "date_published": null,
            "start_time": "2024-01-19",
            "end_time": "2024-02-18",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6BAD9CE5B3C8595B67AEAF00A28AF3AE/Minna_Harri_Viiva",
                "sv": "http://www.stoa.fi/sv/evenemang/event/6BAD9CE5B3C8595B67AEAF00A28AF3AE/Minna_Harri_Viiva_Linje",
                "en": "http://www.stoa.fi/en/events/event/6BAD9CE5B3C8595B67AEAF00A28AF3AE/Minna_Harri_Viiva_Line"
            },
            "description": {
                "fi": "<p>Piirtämisen paljain elementti, viiva, kykenee luomaan moniulotteisia maailmoja tyhjälle pinnalle. Tämän kokemuksen synnyttämä uteliaisuus ja ihastus on näyttelyn teosten takana.</p><p>Jännite hyvin yksinkertaisen ja loputtoman kerroksellisen, tai henkilökohtaisen ja moninaisen välillä kiehtoo minua. Niiden samanaikainen olemassaolo tuntuu ratkaisevan tärkeältä. Sellaisenaan viivalla voi olla loputtomasti erilaisia luonteita tai suhteita paperiin.</p><p>Piirrin voi olla jokaisesta toimistosta ja koulusta löytyvä halpa kynä yhtä hyvin kuin taiteilijalle käsityönä valmistettu työkalu. Viivaa ei voi erottaa sen piirtäjästä: tämän liikkeestä, hänen käyttämästään painosta alustaa vasten, hengityksestään.</p><p>Näyttelyn töissä olen määrittänyt tietyt säännöt, ensimmäisenä niistä paperin laadun ja formaatin. Ainoa aihe on abstrakti tehtävä, jonka pohjalta olen aloittanut jokaisen piirroksen. Valitsin materiaaleiksi musteen, tussit, puuvärit ja pehmeät pastellit. Värit tulivat mukaan niiden antaman ilon kautta. Osaan töistä olen maalannut akvarellein. Se muistuttaa muun muassa, ettei piirtäminen ole ainoa tapa luoda viivoja.</p>",
                "sv": "<p>Ritningens baraste element, linjen, kan skapa flerdimensionella världar på en tom yta. Den nyfikenhet och förtjusning som denna erfarenhet ger upphov till ligger bakom utställningens verk.</p>",
                "en": "<p>The barest element of drawing, The Line, is able to create multidimensional worlds on an empty surface. The curiosity and admiration generated by this experience is behind the works in the exhibition.</p>"
            },
            "short_description": {
                "fi": "Piirtämisen paljain elementti, viiva, kykenee luomaan moniulotteisia maailmoja tyhjälle pinnalle. Tämän kokemuksen synnyttämä uteliaisuus ja ihastus on näyttelyn teosten takana.",
                "sv": "Ritningens baraste element, linjen, kan skapa flerdimensionella världar på en tom yta. Den nyfikenhet och förtjusning som denna erfarenhet ger upphov till ligger bakom utställningens verk.",
                "en": "The barest element of drawing, The Line, is able to create multidimensional worlds on an empty surface. The curiosity and admiration generated by this experience is behind the works in the exhibition."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Minna Harri: Viiva",
                "sv": "Minna Harri: Viiva – Linje",
                "en": "Minna Harri: Viiva – Line"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61566/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61177",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7259",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Itäkeskus",
                            "sv": "Östra centrum"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vartiokylä",
                            "sv": "Botby"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.357900Z",
                "last_modified_time": "2025-03-27T09:09:26.797975Z",
                "custom_data": null,
                "email": "stoa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00900",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 977,
                "image": 414656,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.07989,
                        60.212097
                    ]
                },
                "info_url": {
                    "fi": "http://www.stoa.fi/",
                    "sv": "https://www.stoa.fi/sv/framsidan",
                    "en": "https://www.stoa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.",
                    "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.",
                    "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa."
                },
                "street_address": {
                    "fi": "Turunlinnantie 1",
                    "sv": "Åbohusvägen 1",
                    "en": "Turunlinnantie 1"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 40 160 3755"
                },
                "name": {
                    "fi": "Stoa",
                    "sv": "Stoa",
                    "en": "Cultural Centre Stoa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke: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": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 651,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:44",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.615362Z",
                    "last_modified_time": "2024-02-06T13:19:14.019369Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 982,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Stoa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 1941,
                    "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": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3476929/",
                        "sv": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3476929/",
                        "en": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3476929/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5569,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-20T13:15:12.630934Z",
                    "last_modified_time": "2024-02-06T13:22:53.961781Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738359.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5569/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-20T13:15:12.600846Z",
            "last_modified_time": "2024-02-06T13:22:54.001051Z",
            "date_published": null,
            "start_time": "2024-01-18T17: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/941A4D1C4D96ADE384A74796FE410279/LOPPUUNMYYTY_Kauri_Honkakoski_Company_HINTERLAND_joutomaa_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/941A4D1C4D96ADE384A74796FE410279/SLUTSALD_Kauri_Honkakoski_Company_HINTERLAND_odemark_",
                "en": "http://www.stoa.fi/en/events/event/941A4D1C4D96ADE384A74796FE410279/SOLD_OUT_Kauri_Honkakoski_Company_HINTERLAND"
            },
            "description": {
                "fi": "<p>HINTERLAND [joutomaa] on ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.</p><p>HINTERLAND tulee taas! Syksyllä 2023 loppuunmyyty esitys palaa ohjelmistoon yleisön pyynnöstä.</p><p>Yleisön kommentteja: <br><i>”Kertakaikkisen vaikuttava.”<br>”Taitavasti toteutettu, lohduton ja hikinen painajainen.”<br>”Kaunista ja tarkkaa ilmaisua.”<br>”Merkitykset virtasivat katsojan tajuntaan kaikkien aistien kautta.”<br>”Mua niin itketti.”<br>”Rankka esitys ei tuntunut kauhulla ja tuholla mässäilyltä, vaan enemmän sen inhimilliseltä tarkastelulta.”<br>”Upea, maaginen.”<br>”Vaikea löytää sanoja, niin hienoa liikettä ja kerrontaa.”<br>”Mielikuvituksen totaalista immersiota!”<br>”Nautin tutusta mutta kummasta, tarinallisesta mutta abstraktista.”<br>”Bravo! Tämä oli niin hyvä!!!”<br> <br> ”Elokuvien ryöstöviljelemät kohtaukset tuntuivat taas vaikuttavilta, eräänlainen puhdistus ja pölyjen pyyhkiminen … kohtasi uutena ja järkyttävänä sen, mihin on tavallaan jo ehtinyt turtua.”</i><br>- Maria Säkö, tanssi- ja teatterikriitikko</p><p>HINTERLAND on välähdys mielen joutomaasta – maisemasta, jonne varastoimme pitkät varjomme. Yhteisö sinnittelee tukalissa olosuhteissa ei-kenenkään-maalla, sokeina tekojensa seurauksille.</p><p>Esitys edustaa Corporeal Mime -näyttämötaidetta, jota Suomessa harvoin nähdään. Inspiraationa on ollut Samuel Beckettin toisen maailmansodan jälkeen kirjoittama tummanpuhuva novellituotanto. <br>  <br>Kansainvälisesti palkittu Kauri Honkakoski Company tunnetaan tunnelmallisista fyysisen teatterin teoksista, joissa rikas kehollinen ilmaisu yhdistyy inhimillisiin teemoihin.  HINTERLANDissä esiintyy Companyn taitava kansainvälinen ensemble.</p><p>Ohjaus, dramaturgia: Kauri Honkakoski <br>Esiintyjät: Oona Jama, Sonja Järvisalo, Ines Kakkonen, Liv Meijer Nordgren, Ruben Nagore Santandreu, Freia Stenbäck, Valter Sui  <br>Valosuunnittelu, lavastus: Sisu Nojonen <br>Äänisuunnittelu: Tuuli Kyttälä <br>Puvustus: Kauri Honkakoski, Liv Meijer Nordgren <br>Kuvat: Laura Vuoma <br>Traileri: Laura Vuoma, Kauri Honkakoski, Tuuli Kyttälä <br>Yhteistuotanto: Kauri Honkakoski Company & Stoa</p><p>Tukijat: Taiteen edistämiskeskus, Jenny & Antti Wihurin rahasto, Svenska kulturfonden, Nygréns stiftelse, Föreningen Konstsamfundet, Suomalais-ruotsalainen kulttuurirahasto, Pohjoismainen kulttuuripiste, Per Jonsson Dance Centre, Vantaan tanssiopisto</p><p>Kesto: 50 min <br>Ikäsuositus: 12+ <br>Teos ei sisällä puhetta</p><p>https://www.kaurihonkakoski.com <br>Instagram: @kauri.honkakoski <br>Facebook: Kauri Honkakoski Company</p>",
                "sv": "<p>En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.</p><p>HINTERLAND  är en glimt av sinnets impediment – ett landskap där vi lagrar våra långa skuggor. Gemenskapen hankar sig fram i obekväma förhållanden i ingenmansland, blinda för följderna av sina gärningar.</p><p>Föreställningen representerar stilen Corporeal Mime, som vi sällan ser i Finland. Inspirationen har varit Samuel Becketts mörka novellproduktion som han skrev efter andra världskriget.</p><p>Internationellt prisade Kauri Honkakoski Company känns igen på sina stämningsfulla verk av fysisk teater, där ett rikt kroppsligt uttryck förenas med mänskliga teman.  I HINTERLAND  uppträder Companys begåvade internationella ensemble.</p><p>Längd: 50 min<br>Åldersrekommendation: 12+<br>Verket är ordlöst.</p><p>https://www.kaurihonkakoski.com <br>Instagram: @kauri.honkakoski <br>Facebook: Kauri Honkakoski Company</p>",
                "en": "<p>A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows.</p><p>A community perseveres under dire circumstances on no man’s land, blind to the consequences of its own actions. A show emerging from our time but created in a timeless style, Hinterland explores painful collective themes in tragicomical tones. <br>  <br>The show was created through the art of Corporeal Mime, a form of physical theatre rarely seen in Finland. The starting point was a collection of sombre short stories by Samuel Beckett written immediately after the Second World War.  <br>  <br>Kauri Honkakoski Company is an internationally awarded physical theatre group. They are known for their atmospheric shows that combine rich physical expression with deep human themes. HINTERLAND features the Company’s talented international ensemble.</p><p>Duration: 50 min<br>Age recommendation: 12+<br>The piece does not contain speech.<br>  <br>MORE INFO and SOCIAL MEDIA:  <br>Homepage: https://www.kaurihonkakoski.com  <br>Instagram: @kauri.honkakoski <br>Facebook: Kauri Honkakoski Company</p>"
            },
            "short_description": {
                "fi": "HINTERLAND [joutomaa] on ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.",
                "sv": "En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.",
                "en": "A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "LOPPUUNMYYTY Kauri Honkakoski Company: HINTERLAND [joutomaa]",
                "sv": "SLUTSÅLD Kauri Honkakoski Company: HINTERLAND [ödemark]",
                "en": "SOLD OUT Kauri Honkakoski Company: HINTERLAND"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61177/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61470",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2026-02-13T06:09:13.632215Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 594,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.959616,
                        60.183193
                    ]
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:32",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.496484Z",
                    "last_modified_time": "2024-02-06T13:19:13.818300Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 790,
                    "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: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": 761,
                    "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:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:51",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.725686Z",
                    "last_modified_time": "2024-02-06T13:19:14.175381Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 264,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5007",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "art of circus",
                        "sirkus (taidelajit)",
                        "cirkus (konstart)",
                        "cirkuskonst"
                    ],
                    "created_time": "2023-08-16T05:18:56.386288Z",
                    "last_modified_time": "2023-08-16T05:18:56.386306Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 179,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "sirkustaide",
                        "sv": "cirkus (konstarter)",
                        "en": "circus (performing arts)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/omia-ruhje-3547466/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/omia-ruhje-3547466/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/omia-ruhje-3547466/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6287,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-28T10:13:29.962141Z",
                    "last_modified_time": "2024-02-06T13:22:53.870548Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738513.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6287/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-28T10:13:29.929866Z",
            "last_modified_time": "2024-02-06T13:22:53.910795Z",
            "date_published": null,
            "start_time": "2024-01-18T17: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/298A4D50D222EAD34050851BB2E06FC4/Omia_ruhje_ENSI-ILTA",
                "sv": "http://www.caisa.fi/sv/evenemang/event/298A4D50D222EAD34050851BB2E06FC4/Omia_ruhje_PREMIAR",
                "en": "http://www.caisa.fi/en/events/event/298A4D50D222EAD34050851BB2E06FC4/Omia_ruhje_PREMIERE"
            },
            "description": {
                "fi": "<p>Omiaruhje-kollektiivin teos, Omia ruhje, rakentaa tanssin, sirkuksen ja lavarunouden keinoin kuvauksen ihmisenä olemisen iloista ja vastoinkäymisistä.</p><p>Kollektiivin taiteilijat luovat tunnelmallisen kokoelman hetkiä ihmisenä olemisen iloista ja ahdistuksista ammentaen inspiraatiota kohtaamistaan odotuksista ja vastoinkäymisistä. Esityksessä ruhjeet ja tunteenpurkaukset muovautuvat synkkyyttä vaalien eteenpäin työntäväksi voimaksi, kun taiteilijat kyseenalaistavat omaksumiaan rooleja ja olemisen tapoja pehmeyden, rohkeuden ja leikin avulla. Kuka keksi säännöt ja kuinka niitä muutetaan? <br> <br>Omiaruhje-kollektiivi yhdistää osaamisensa ja kiinnostuksen kohteensa jakaen yhteisen tavoitteen: luoda voimakkaita, fyysisiä ja visuaalisia teoksia, jotka kurkottavat genrerajojen yli.</p><p>Työryhmä:<br>Teoksen konsepti ja toteutus: Omiaruhje-kollektiivi – Emilia Ahopelto, Milla Kurronen, Ines Masanti, Meri Salmela<br>Esiintyjät: tanssitaiteilija Emilia Ahopelto, sirkustaiteilija Milla Kurronen, visuaalinen suunnittelija Ines Masanti, tanssitaiteilija Meri Salmela<br>Äänisuunnittelu: Emilia Ahopelto<br>Visuaalinen suunnittelu ja toteutus: Ines Masanti<br>Puvustus: Hanna Laiho</p><p>Tukijat: Cirko - Uuden Sirkuksen Keskus, Centre de Création Les Joncailles, Tanssiteatteri Hurjaruuth, Vanhan Kaivoksen Residenssi, Taidetehtaan Tanssikoulu, NÄYTTÄMÖ, Taiteen edistämiskeskus</p><p>Kesto: 60 min<br>Ikäsuositus: 12+<br>Esitys sisältää välkkyviä valoja, savukoneen käyttöä sekä voimakasta kielenkäyttöä</p><p>Kieli: teos sisältää suomen- ja englannin kieltä sekä sanattomia osuuksia. Esityksissä on tekstejä suomeksi ja englanniksi. Torstain 18.1. ja lauantain 20.1. esitykset kuvailutulkataan näkörajoitteisille suomen kielellä.</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi. Avustaja tai tulkki ilmaiseksi.</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Omiaruhje-kollektivets verk, Omia ruhje, bygger genom dans, cirkus och scenpoesi en beskrivning av glädjen av och motgångarna i att vara människa.</p>",
                "en": "<p>Omiaruhje collective’s Omia ruhje creates a description of the joys and hardships of being a human by means of dance, circus and spoken word.</p>"
            },
            "short_description": {
                "fi": "Omiaruhje-kollektiivin teos, Omia ruhje, rakentaa tanssin, sirkuksen ja lavarunouden keinoin kuvauksen ihmisenä olemisen iloista ja vastoinkäymisistä.",
                "sv": "Omiaruhje-kollektivets verk, Omia ruhje, bygger genom dans, cirkus och scenpoesi en beskrivning av glädjen av och motgångarna i att vara människa.",
                "en": "Omiaruhje collective’s Omia ruhje creates a description of the joys and hardships of being a human by means of dance, circus and spoken word."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Omia ruhje | ENSI-ILTA",
                "sv": "Omia ruhje | PREMIÄR",
                "en": "Omia ruhje | PREMIERE"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61470/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61241",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 575,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 651,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 575,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 1941,
                    "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": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3522488",
                        "sv": "https://www.lippu.fi/eventseries/name-3522488",
                        "en": "https://www.lippu.fi/eventseries/name-3522488"
                    },
                    "description": null,
                    "price": {
                        "fi": "22/16 €, Kannatuslippu 26 €",
                        "sv": "22/16 €, Kannatuslippu 26 €",
                        "en": "22/16 €, Kannatuslippu 26 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5903,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-08T11:13:29.736104Z",
                    "last_modified_time": "2024-02-06T13:22:53.776396Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739345.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5903/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-08T11:13:29.723509Z",
            "last_modified_time": "2024-02-06T13:22:53.816571Z",
            "date_published": null,
            "start_time": "2024-01-18T17: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C7CE116E0A3C83154F59580EF1744063/Pykalan_Spex_2023_Kaikki_hoviin_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C7CE116E0A3C83154F59580EF1744063/Pykalan_Spex_2023_Kaikki_hoviin_",
                "en": "http://www.savoyteatteri.fi/en/events/event/C7CE116E0A3C83154F59580EF1744063/Pykalan_Spex_2023_Kaikki_hoviin_"
            },
            "description": {
                "fi": "<p>Tervetuloa Rosamonten hoviin, jossa ruusut ja nuori lempi kukoistavat kilpaa!</p><p>Kaksikymmentä vuotta sitten kauhea kulkutauti pyyhkäisi koko eteläisen läänin yli vieden ruhtinasparin hautaan ja jättäen vallanperijä Ofelian vaille vanhempiaan. Hänen varttuessaan vastuu hovista on levännyt vastuullisen sijaisruhtinatar Silvian harteilla. Nyt aikuiseksi kasvanut Ofelia on astumassa avioon hovinsa puutarhurin kanssa - ennenkuulumatonta!</p><p>Kuherruskuukauden huolettomuus joutuu kuitenkin väistymään, kun mystinen vieras raottaa iäisyyden verhoa, eikä elämä hovissa ole enää pelkkää ruusuilla tanssimista. Kiviset käytävät täyttyvät kuiskauksista, mutta onko kaiku vääristänyt viestin ennen kuin se tavoittaa kuulijansa?</p><p>Pykälän Spex 2023 kutsuu Kaikki hoviin! Avaa sinäkin ovet omalaatuiseen linnaan, jossa narrien hupailun lomassa voit kuulla jopa kohtalon äänen…</p><p>Ikäsuositus: 12+</p><p>Kesto n. 2 h 40 min, sisältää väliajan</p>",
                "sv": "<p>Välkommen till Rosamontes hov, där rosorna och den unga kärleken blomstrar i kapp!</p><p>För tjugo år sedan svepte över hela södra länet en fruktansvärd pest som skickade fursten och furstinnan i graven och tronarvingen Ofelia blev föräldralös. Under hennes uppväxt har ansvaret för hovet legat på den ansvarsfulla ställföreträdande furstinnan Silvias axlar. Nu har dock Ofelia blivit vuxen och hon ska snart gifta sig med hovets trädgårdsmästare – skandalöst!</p><p>Dock får den sorglösa smekmånaden avbrytas i förtid när en mystisk gäst gläntar på evighetens slöja och livet vid hovet inte längre är en dans på rosor. Stenkorridorerna fylls av viskningar, men har ekot förvrängt budskapet innan det når mottagaren?</p><p>Pykälän Spex 2023 bjuder alla med till hovet! Stig in du också i det märkliga slottet där narrarnas spexande blandar sig med ödets röst ...</p><p>Rekommenderad ålder: 12+</p><p>Längd cirka 2 h 40 min. med paus</p>",
                "en": "<p>Welcome to Rosamonte’s Court, where roses and young love blossom in competition!</p><p>Twenty years ago, a terrible plague swept across the entire southern province, sending the Prince and Princess to their graves and leaving the heir to the throne, Ofelia, without her parents. As she has grown up, the responsibility for the court has rested on the shoulders of substitute princess Silvia. Now grown up, Ofelia is about to marry her court gardener – how unheard of!</p><p>But the carefree honeymoon is about to be cut short when a mysterious visitor opens the veil of eternity, and life at court is no longer a bed of roses. Whispers fill the stone corridors, but has an echo distorted the message before it reaches its listener?</p><p>Pykälän Spex 2023 invites everyone to the court! Open the doors to the peculiar castle where, amidst the antics of jesters, you can even hear the voice of destiny...</p><p>Age recommendation: 12 and older</p><p>Duration approx. 2 h 40 min with intermission.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa Rosamonten hoviin, jossa ruusut ja nuori lempi kukoistavat kilpaa!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Pykälä ry",
                "sv": "Pykälä ry",
                "en": "Pykälä ry"
            },
            "name": {
                "fi": "Pykälän Spex 2023 – Kaikki hoviin!",
                "sv": "Pykälän Spex 2023 – Kaikki hoviin!",
                "en": "Pykälän Spex 2023 – Kaikki hoviin!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61241/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61695",
            "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": 1345,
                "image": 414658,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        25.01497,
                        60.250507
                    ]
                },
                "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."
                },
                "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"
                },
                "telephone": {
                    "fi": "+358 9 310 80831"
                },
                "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": 1953,
                    "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": 1332,
                    "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": 5954,
                    "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/manueldunkelquartet/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6632,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-14T12:13:41.697257Z",
                    "last_modified_time": "2024-02-06T13:22:53.682593Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740386.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6632/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-14T12:13:41.647477Z",
            "last_modified_time": "2024-02-06T13:22:53.723901Z",
            "date_published": null,
            "start_time": "2024-01-18T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/12564D7BD86C7C1A1494FBB9706675D6/Manuel_Dunkel_Quartet_"
            },
            "description": {
                "fi": "<p>Maamme arvostetuimpiin saksofonisteihin lukeutuvan Dunkelin kvartetin kokeneet ja arvostetut muusikot loistavat virtuoosisella ja svengaavalla soitollaan vastustamattomalla tavalla.</p><p>Dunkelin sävellyksien tunnuspiirteitä ovat vahvat melodiat, vaikutteet jazzin perinteistä sekä modernitkin sävyt. Yhtyeen keskiössä on Dunkelin voimakas ja vivahteikas saksofonisoundi, joka taipuu luontevasti intensiivisestä post-bop-tyylistä aina herkimpiin balladi-tunnelmiin asti.</p><p>Kvartetin uusin albumi \"Northern Journey\" (Eclipse Music) julkaistiin marraskuun lopulla 2021.</p><p>\"Dunkelin seitsemäs oma albumi, omista koukuttavista sävellyksistä koottu Northern Journey saattaa olla tämän työn tähänastinen huippu – kokonaisuus, jonka summa on kirkkaasti osiaan suurempi. Näin käy, kun kvartetin kaikki palat loksahtavat paikoilleen.”<br>- Harri Uusitorppa, HS 19.1.2022</p><p>Manuel Dunkel – tenorisaksofoni<br>Alexi Tuomarila – piano<br>Joonas Tuuri – basso<br>Jaska Lukkarinen – rummut</p>"
            },
            "short_description": {
                "fi": "Maamme arvostetuimpiin saksofonisteihin lukeutuvan Dunkelin kvartetin kokeneet ja arvostetut muusikot loistavat virtuoosisella ja svengaavalla soitollaan vastustamattomalla tavalla."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Manuel Dunkel Quartet – MalmiJazz"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61695/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61546",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7255",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kannelmäki",
                            "sv": "Gamlas"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.976796Z",
                "last_modified_time": "2025-03-27T09:09:26.704708Z",
                "custom_data": null,
                "email": "kanneltalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00420",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 559,
                "image": 414654,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.876202,
                        60.23885
                    ]
                },
                "info_url": {
                    "fi": "http://www.kanneltalo.fi/",
                    "sv": "https://www.kanneltalo.fi/sv/framsidan",
                    "en": "https://www.kanneltalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.",
                    "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.",
                    "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre."
                },
                "street_address": {
                    "fi": "Klaneettitie 5",
                    "sv": "Klarinettvägen 5",
                    "en": "Klaneettitie 5"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 40 822 8918"
                },
                "name": {
                    "fi": "Kanneltalo",
                    "sv": "Gamlasgården",
                    "en": "Cultural Centre Kanneltalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke: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": 1953,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:348",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.541371Z",
                    "last_modified_time": "2024-02-06T13:19:15.204233Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1061,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Musiikki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:41",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.583027Z",
                    "last_modified_time": "2024-02-06T13:19:13.977719Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 554,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kanneltalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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": 5954,
                    "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": 4807,
                    "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": 5010,
                    "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"
                }
            ],
            "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": 6381,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T13:13:59.037561Z",
                    "last_modified_time": "2024-02-06T13:22:53.568084Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739515.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6381/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-30T13:13:59.011252Z",
            "last_modified_time": "2024-02-06T13:22:53.611101Z",
            "date_published": null,
            "start_time": "2024-01-18T15: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/AF0A73A5F87F08B880842C84502AE40B/Nordic_Banjo",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/AF0A73A5F87F08B880842C84502AE40B/Nordic_Banjo",
                "en": "http://www.kanneltalo.fi/en/events/event/AF0A73A5F87F08B880842C84502AE40B/Nordic_Banjo"
            },
            "description": {
                "fi": "<p>Perinteistä pohjoismaista kansanmusiikkia uudelleensovitettuna 5-kieliselle banjolle ja kitaralle.</p><p>Musiikin lisäksi konsertissa kuullaan tarinoita taianomaisten sävelmien juurista ja ikiaikaisesta pohjoisesta kulttuurista sekä banjon myyttisestä matkasta Afrikasta Amerikan kautta Eurooppaan.</p><p>Nordic Banjo on kahden suomalaisen huippubanjistin muodostama duo, jonka ohjelmisto koostuu tunnetuista pohjoismaisen kansanmusiikin kappaleista sovitettuna viisikieliselle bluegrass-banjolle ja kitaralle. Duon tavoitteena on tuoda amerikkalainen banjo osaksi pohjoismaista pelimannikulttuuria ja toisaalta tehdä suomalaista perinnemusiikkia tunnetuksi maailmalla.</p><p>Nordic Banjo yhdistää useat pohjoiseurooppalaiset perinteet, jotka juontavat juurensa metsäsuomalaisten savuisista saunoista ja muinaisten skandinaavien yhteisöllisistä pitkätaloista. Sovitukset laajentavat kunnioittavasti satojen vuosien ajan perheiden, sukulaisten ja naapureiden kautta säilyneitä melodisia ja rytmisiä tekstuureja.</p><p>Afroamerikkalaisen viisikielisen kertomana Nordic Banjo osuu maailmanmusiikin ytimeen. Banjolle idiomaattiset näppäilykuviot ja bordunat yhdistettynä boreaaliseen ääni-ilmastoon luovat mystisen ilmapiirin, jossa voi samanaikaisesti kuulla lukemattomia arkaaisia tarinoita eri kielillä ja murteilla kerrottuna. Nordic Banjon syvin olemus kiteytyy osuvasti suomen kielen sanassa viisikielinen: universaali ääni, joka puhuttelee ihmisiä mantereiden välillä.</p><p>Lauri Häme, banjo<br>Miihkali Jaatinen, kitara ja banjo</p><p><b>Lauri Häme</b> on helsinkiläinen muusikko ja lauluntekijä. Vuodesta 2004 hän on esiintynyt banjistina ja laulajana indie folk -yhtye Rautakourassa. Instrumentalistina hän kokeilee jatkuvasti uusia perinteisten ja nykyaikaisten äänimaisemien yhdistelmiä.</p><p><b>Miihkali Jaatinen</b> on monipuolinen musiikin ammattilainen ja yksi Suomen arvostetuimmista banjisteista. Toimi hän sitten kitaristina, banjistina tai tuottajana leimaa hänen työskentelyään toisaalta tekemisen tinkimättömyys, toisaalta ennakkoluuloton luova heittäytyminen.</p><p>Kanneltalon Nordic Banjo -konsertin erikoisvieraana esiintyy <b>Paula Wolski</b>, jonka tuotannossa punoutuvat yhteen vaikutteet suomalaisesta kansanmusiikista ja amerikkalaisesta juurimusiikista.</p>",
                "sv": "<p>Traditionell nordisk folkmusik omarrangerad för 5-strängad banjo och gitarr.</p><p>Förutom musiken hörs på konserten historier om de magiska melodiernas rötter och uråldriga nordliga kultur samt om banjos mytiska resa från Afrika via Amerika till Europa.</p><p>Lauri Häme, banjo<br>Miihkali Jaatinen, gitarr ja banjo</p><p>Nattens speciell gäst Paula Wolski.</p>",
                "en": "<p>Nordic Banjo is a duo formed by two Finnish banjoists, whose repertoire consists of well-known pieces of Nordic folk music arranged for the five-string bluegrass banjo and guitar.</p><p>The goal of the duo is to bring the American banjo into the Nordic fiddle-driven folk culture and on the other hand to increase the recognition of Finnish traditional music worldwide.</p><p>The hand-picked Nordic Banjo collection mixes together several Northern European traditions originating from the smoky saunas of Forest Finns and the shared longhouses of Norsemen. The work respectfully extends the melodic and rhythmic textures passed down through families, relatives and neighbors over hundreds of years.</p><p>Narrated by the Afro-American five-string, the Nordic Banjo melange settles itself in the core of what is known as World Music. The rolls and drones which are idiomatic to the banjo combined with the boreal sound climate create a mystical atmosphere where a myriad of archaic story layers are being told concurrently in different languages and dialects. This spirit of Nordic Banjo is aptly captured by the Finnish word viisikielinen, which refers to both five-stringed and pentalingual: A universal voice that speaks to people across the continents.</p><p>Lauri Häme is a musician and songwriter from Helsinki, Finland. Since 2004 he has been performing with the indie folk band Rautakoura on banjo and vocals. As an instrumentalist he is constantly experimenting with new combinations of traditional and contemporary sounds.</p><p>Miihkali Jaatinen is a versatile music professional and one of the most respected banjo pickers in Finland. Whether he is working as a guitarist, banjoist or producer, he is known for both ambitious work ethics and unprejudiced creativity.</p><p>Paula Wolski will be performing as a special guest in the concert. Wolski's music is a fusion of Finnish traditional music and American roots music.</p><p>Line up<br>Lauri Häme – banjo<br>Miihkali Jaatinen - guitar and banjo</p>"
            },
            "short_description": {
                "fi": "Perinteistä pohjoismaista kansanmusiikkia uudelleensovitettuna 5-kieliselle banjolle ja kitaralle.",
                "sv": "Traditionell nordisk folkmusik omarrangerad för 5-strängad banjo och gitarr.",
                "en": "Nordic Banjo is a duo formed by two Finnish banjoists, whose repertoire consists of well-known pieces of Nordic folk music arranged for the five-string bluegrass banjo and guitar."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Nordic Banjo",
                "sv": "Nordic Banjo",
                "en": "Nordic Banjo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61546/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61336",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7255",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kannelmäki",
                            "sv": "Gamlas"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaarela",
                            "sv": "Kårböle"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.976796Z",
                "last_modified_time": "2025-03-27T09:09:26.704708Z",
                "custom_data": null,
                "email": "kanneltalo.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00420",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 559,
                "image": 414654,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.876202,
                        60.23885
                    ]
                },
                "info_url": {
                    "fi": "http://www.kanneltalo.fi/",
                    "sv": "https://www.kanneltalo.fi/sv/framsidan",
                    "en": "https://www.kanneltalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Kanneltalon salissa esitetään vuosittain useita kantaesityksiä sekä monipuolista vierailuohjelmistoa. Esitystoiminnan lisäksi Kanneltalo on Kaarelan alueen asukkaiden yhteinen olohuone. Viihtyisä aula tarjoaa vapaata oleskelutilaa, korkea galleria kutsuu tutustumaan vaihtuviin näyttelyihin ja kahvilassa järjestetään maksuttomia esityksiä ja tapahtumia. Saman katon alta löytyy myös kirjasto, työväenopisto ja nuorisotalo.",
                    "sv": "Flera urpremiärer och mångsidigt med gästprogram syns varje år på Gamlasgårdens scen. Utöver teater- och konsertverksamheten är Gamlasgården också ett gemensamt vardagsrum för områdets invånare. Den trivsamma aulan har rum för fri vistelse, det höga galleriet bjuder in till olika utställningar och i caféet arrangeras avgiftsfria uppträdanden och evenemang. Under samma tak finns också ett bibliotek, ett arbetarinstitut och en ungdomsgård.",
                    "en": "In addition to a performance venue, Kanneltalo also serves as the shared living room of the residents of the Kaarela area. The pleasant lobby has space for simply hanging around, the high gallery invites visitors to enjoy changing exhibitions and the café is used to hold free-of-charge performances and events. The building also houses a library, an adult education centre and a youth centre."
                },
                "street_address": {
                    "fi": "Klaneettitie 5",
                    "sv": "Klarinettvägen 5",
                    "en": "Klaneettitie 5"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 40 822 8918"
                },
                "name": {
                    "fi": "Kanneltalo",
                    "sv": "Gamlasgården",
                    "en": "Cultural Centre Kanneltalo"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:41",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.583027Z",
                    "last_modified_time": "2024-02-06T13:19:13.977719Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 554,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kanneltalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke: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": 618,
                    "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": 5954,
                    "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": 4807,
                    "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": 5010,
                    "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:596",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:59.781294Z",
                    "last_modified_time": "2024-02-06T13:19:16.916968Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 325,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muu"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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": 673,
                    "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6380,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T13:13:58.910427Z",
                    "last_modified_time": "2024-02-06T13:22:53.471538Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739964.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-30T13:13:58.883084Z",
            "last_modified_time": "2024-02-06T13:22:53.511165Z",
            "date_published": null,
            "start_time": "2024-01-18",
            "end_time": "2024-05-23",
            "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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/830A3C5C328E2538E3D6F6AB1F00F595/Taidejumppa_anna_taiteen_liikuttaa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/830A3C5C328E2538E3D6F6AB1F00F595/Konstgympa_lat_konsten_rora_och_berora_dig_",
                "en": "http://www.kanneltalo.fi/en/events/event/830A3C5C328E2538E3D6F6AB1F00F595/Art_workout_let_art_move_you_"
            },
            "description": {
                "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta vaihtuvin teemoin Kanneltalon galleriaan.</p><p>Kevään aikana mm. vahvistetaan lihasvoimaa kuminauhaa apuna käyttäen, tanssahdellaan villasukat jalassa sekä tasapainoillaan ja venytellään livemusiikin säestämänä. Ota oma alusta mukaan ja anna taiteen liikuttaa.</p><p>Taidejumppaa ei järjestetä talvilomaviikolla to 22.2.</p><p>Yhteistyössä Kanneltalo ja Helsingin kaupungin liikuntapalvelut</p><p>Kieli: suomi<br>Tunneille osallistuminen edellyttää alueliikuntapassin (30 €) ostamista. Lisätiedot: www.hel.fi/alueliikunta</p>",
                "sv": "<p>Kom och njut av ledd motion med varierande teman i Gamlasgårdens galleri. Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>För att delta i passen behöver du köpa ett förortsmotionspass (30 euro). Mer information: www.hel.fi/alueliikunta</p><p>OBS! Konsgympa ordnas inte tors. 22.2.</p>",
                "en": "<p>Come and enjoy instructor-led physical activity with a changing theme at Kanneltalo Gallery. Bring your own exercise mat and let art get you moving!</p><p>You need a regional exercise service pass (€30) to participate in the art workout sessions. Enquiries: https://liikunta.hel.fi/en/pages/support-for-physical-activity/regional-exercise-services</p><p>NB! Art workout is not held on Thursday 22 February.</p>"
            },
            "short_description": {
                "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta vaihtuvin teemoin Kanneltalon galleriaan.",
                "sv": "Kom och njut av ledd motion med varierande teman i Gamlasgårdens galleri. Ta med dig ett underlag och låt konsten sätta dig i rörelse!",
                "en": "Come and enjoy instructor-led physical activity with a changing theme at Kanneltalo Gallery. Bring your own exercise mat and let art get you moving!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Taidejumppa – anna taiteen liikuttaa! – Torstaisin klo 13–13.50",
                "sv": "Konstgympa – låt konsten röra och beröra dig! – Torsdagar kl. 13–13.50",
                "en": "Art workout – let art move you! – On Thursdays 13–13:50"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61336/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61493",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7256",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kallio",
                            "sv": "Berghäll"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vilhonvuori",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Vilhonvuori",
                            "sv": "Vilhemsberg"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:sörnäinen",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Sörnäinen",
                            "sv": "Sörnäs"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.104501Z",
                "last_modified_time": "2026-02-13T06:09:13.632215Z",
                "custom_data": null,
                "email": "caisa.vahtimestarit@hel.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "00530",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 594,
                "image": 414655,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.959616,
                        60.183193
                    ]
                },
                "info_url": {
                    "fi": "https://www.caisa.fi/fi/etusivu",
                    "sv": "https://www.caisa.fi/sv/framsidan",
                    "en": "https://www.caisa.fi/en/frontpage"
                },
                "description": {
                    "fi": "Caisassa järjestetään esityksiä, tapahtumia ja näyttelyitä sekä annetaan taideopetusta. Tiloja voi myös vuokrata.",
                    "sv": "På Caisa ordnas föreställningar, evenemang och utställningar samt ges konstundervisning. Lokalerna kan också hyras.",
                    "en": "Caisa hosts performances, events and exhibitions, and also provides teaching in the arts. The facilities are also available for rent."
                },
                "street_address": {
                    "fi": "Kaikukatu 4, Helsinki",
                    "sv": "Ekogatan 4, Helsinki",
                    "en": "Kaikukatu 4, Helsinki"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 9 310 80008"
                },
                "name": {
                    "fi": "Caisa",
                    "sv": "Caisa",
                    "en": "Cultural Centre Caisa"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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": 1314,
                    "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:47",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.667596Z",
                    "last_modified_time": "2024-02-06T13:19:14.083984Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 618,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Caisa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5954,
                    "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": 4807,
                    "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": 5010,
                    "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: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": 1168,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 1132,
                    "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": 13446,
                    "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/linkedevents:agg-7/?format=api"
            },
            "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": 6334,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-30T11:13:32.860317Z",
                    "last_modified_time": "2024-02-06T13:22:53.379750Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736500.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6334/?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": "2023-11-30T11:13:32.838206Z",
            "last_modified_time": "2024-02-06T13:22:53.419224Z",
            "date_published": null,
            "start_time": "2024-01-18T08:00:00Z",
            "end_time": "2024-01-18T10: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/307982DB10351713E28A7144B35F8741/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/307982DB10351713E28A7144B35F8741/Konst_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/307982DB10351713E28A7144B35F8741/Open_Art_Studio_for_Toddlers"
            },
            "description": {
                "fi": "<p>Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.<br> <br><b>Osallistuminen </b><br>Taidetta taaperoille- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "short_description": {
                "fi": "Työpajat 1,5–3-vuotiaille lapsille ja heidän aikuisillensa tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen åldrar 1,5–3 får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children ages 1.5.–3 are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": null,
            "name": {
                "fi": "Taidetta taaperoille",
                "sv": "Konst för småbarn",
                "en": "Open Art Studio for Toddlers"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61493/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61224",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7258",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:ullanlinna",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Ullanlinna",
                            "sv": "Ulrikasborg"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kaartinkaupunki",
                            "sv": "Gardesstaden"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:16.221655Z",
                "last_modified_time": "2024-02-06T13:09:51.033692Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00130",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 575,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.947306,
                        60.16663
                    ]
                },
                "info_url": {
                    "fi": "http://www.savoyteatteri.fi/",
                    "sv": "http://www.savoyteatteri.fi/",
                    "en": "http://www.savoyteatteri.fi/"
                },
                "description": null,
                "street_address": {
                    "fi": "Kasarmikatu 46-48",
                    "sv": "Kaserngatan 46-48",
                    "en": "Kasarmikatu 46-48"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "telephone": {
                    "fi": "+358 9 310 36563"
                },
                "name": {
                    "fi": "Savoy-teatteri",
                    "sv": "Savoy-teatern",
                    "en": "Savoy Theatre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "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": 761,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:351",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.568885Z",
                    "last_modified_time": "2024-02-06T13:19:15.244248Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 651,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Teatteri ja sirkus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:49",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.697675Z",
                    "last_modified_time": "2024-02-06T13:19:14.132899Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 575,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Savoy-teatteri"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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": 5954,
                    "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": 4807,
                    "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": 5010,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso: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": 1941,
                    "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": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3522488",
                        "sv": "https://www.lippu.fi/eventseries/name-3522488",
                        "en": "https://www.lippu.fi/eventseries/name-3522488"
                    },
                    "description": null,
                    "price": {
                        "fi": "22/16 €, Kannatuslippu 26 €",
                        "sv": "22/16 €, Kannatuslippu 26 €",
                        "en": "22/16 €, Kannatuslippu 26 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 5902,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-08T11:13:29.581377Z",
                    "last_modified_time": "2024-02-06T13:22:53.268917Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739344.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5902/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-08T11:13:29.563473Z",
            "last_modified_time": "2024-02-06T13:22:53.312417Z",
            "date_published": null,
            "start_time": "2024-01-17T17: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/ED11AA10F3F4EA028AFD640EE9632A08/Pykalan_Spex_2023_Kaikki_hoviin_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/ED11AA10F3F4EA028AFD640EE9632A08/Pykalan_Spex_2023_Kaikki_hoviin_",
                "en": "http://www.savoyteatteri.fi/en/events/event/ED11AA10F3F4EA028AFD640EE9632A08/Pykalan_Spex_2023_Kaikki_hoviin_"
            },
            "description": {
                "fi": "<p>Tervetuloa Rosamonten hoviin, jossa ruusut ja nuori lempi kukoistavat kilpaa!</p><p>Kaksikymmentä vuotta sitten kauhea kulkutauti pyyhkäisi koko eteläisen läänin yli vieden ruhtinasparin hautaan ja jättäen vallanperijä Ofelian vaille vanhempiaan. Hänen varttuessaan vastuu hovista on levännyt vastuullisen sijaisruhtinatar Silvian harteilla. Nyt aikuiseksi kasvanut Ofelia on astumassa avioon hovinsa puutarhurin kanssa - ennenkuulumatonta!</p><p>Kuherruskuukauden huolettomuus joutuu kuitenkin väistymään, kun mystinen vieras raottaa iäisyyden verhoa, eikä elämä hovissa ole enää pelkkää ruusuilla tanssimista. Kiviset käytävät täyttyvät kuiskauksista, mutta onko kaiku vääristänyt viestin ennen kuin se tavoittaa kuulijansa?</p><p>Pykälän Spex 2023 kutsuu Kaikki hoviin! Avaa sinäkin ovet omalaatuiseen linnaan, jossa narrien hupailun lomassa voit kuulla jopa kohtalon äänen…</p><p>Ikäsuositus: 12+</p><p>Kesto n. 2 h 40 min, sisältää väliajan</p>",
                "sv": "<p>Välkommen till Rosamontes hov, där rosorna och den unga kärleken blomstrar i kapp!</p><p>För tjugo år sedan svepte över hela södra länet en fruktansvärd pest som skickade fursten och furstinnan i graven och tronarvingen Ofelia blev föräldralös. Under hennes uppväxt har ansvaret för hovet legat på den ansvarsfulla ställföreträdande furstinnan Silvias axlar. Nu har dock Ofelia blivit vuxen och hon ska snart gifta sig med hovets trädgårdsmästare – skandalöst!</p><p>Dock får den sorglösa smekmånaden avbrytas i förtid när en mystisk gäst gläntar på evighetens slöja och livet vid hovet inte längre är en dans på rosor. Stenkorridorerna fylls av viskningar, men har ekot förvrängt budskapet innan det når mottagaren?</p><p>Pykälän Spex 2023 bjuder alla med till hovet! Stig in du också i det märkliga slottet där narrarnas spexande blandar sig med ödets röst ...</p><p>Rekommenderad ålder: 12+</p><p>Längd cirka 2 h 40 min. med paus</p>",
                "en": "<p>Welcome to Rosamonte’s Court, where roses and young love blossom in competition!</p><p>Twenty years ago, a terrible plague swept across the entire southern province, sending the Prince and Princess to their graves and leaving the heir to the throne, Ofelia, without her parents. As she has grown up, the responsibility for the court has rested on the shoulders of substitute princess Silvia. Now grown up, Ofelia is about to marry her court gardener – how unheard of!</p><p>But the carefree honeymoon is about to be cut short when a mysterious visitor opens the veil of eternity, and life at court is no longer a bed of roses. Whispers fill the stone corridors, but has an echo distorted the message before it reaches its listener?</p><p>Pykälän Spex 2023 invites everyone to the court! Open the doors to the peculiar castle where, amidst the antics of jesters, you can even hear the voice of destiny...</p><p>Age recommendation: 12 and older</p><p>Duration approx. 2 h 40 min with intermission.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa Rosamonten hoviin, jossa ruusut ja nuori lempi kukoistavat kilpaa!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Pykälä ry",
                "sv": "Pykälä ry",
                "en": "Pykälä ry"
            },
            "name": {
                "fi": "Pykälän Spex 2023 – Kaikki hoviin!",
                "sv": "Pykälän Spex 2023 – Kaikki hoviin!",
                "en": "Pykälän Spex 2023 – Kaikki hoviin!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61224/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}