Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&page=1146&registration__remaining_attendee_capacity__isnull=true
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 26801,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1147&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1145&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:59868",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://forms.gle/eLVwQjytM6XcgD538",
                        "sv": "https://forms.gle/eLVwQjytM6XcgD538",
                        "en": "https://forms.gle/eLVwQjytM6XcgD538"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4434,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:50.274400Z",
                    "last_modified_time": "2023-09-07T14:24:50.274436Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730717.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4434/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:24:50.113561Z",
            "last_modified_time": "2023-11-14T06:13:26.305331Z",
            "date_published": null,
            "start_time": "2023-10-20T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kekäläinen & Company: Avoin tila",
                "sv": "Kekäläinen & Company: Öppet utrymme",
                "en": "Kekäläinen & Company: Shared Space"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Avoin tila on filosofinen tanssiteos kouluikäisille ja heidän aikuisilleen, joka etsii ratkaisua meidän aikamme kohtalonkysymykseen.",
                "sv": "Öppet utrymme är ett filosofiskt dansverk för barn i skolåldern och deras vuxna, som söker en lösning på vår tids ödesfråga.",
                "en": "Shared Space is a philosophical dance piece for school-aged children and their parents, which looks for answers for the questions of fate of our time."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/60EBD11A6D665AAC0D3B94B69F6F1B86/Kekalainen_Company_Avoin_tila",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/60EBD11A6D665AAC0D3B94B69F6F1B86/Kekalainen_Company_Oppet_utrymme",
                "en": "http://www.annantalo.fi/en/events/event/60EBD11A6D665AAC0D3B94B69F6F1B86/Kekalainen_Company_Shared_Space"
            },
            "description": {
                "fi": "<p>Avoin tila on filosofinen tanssiteos kouluikäisille ja heidän aikuisilleen, joka etsii ratkaisua meidän aikamme kohtalonkysymykseen.</p><p>Jokaisella ajalla on oma kohtalonkysymyksensä. Meidän aikanamme tämä kysymys syntyy ilmastokriisistä, massasukupuutosta ja aikaamme leimaavasta väkivallasta.</p><p>Tähän eräänlaiseksi vastaukseksi <i>Avoin tila</i> ehdottaa jakamista ja vieraanvaraisuutta. Jaettua tilaa, materiaaleja, niiden eloperäisyyttä ja niiden hoivaamista. Tila ja kokemus on jaettu samalla tavoin kuin maailma on jaettu ja yhteinen.</p><p>Esitys käyttää kuvataiteilijapari <i>nabbteerin</i> esinemaailmaa. Taiteilijapari <b>Janne Nabb</b> ja <b>Maria Teeri</b> havainnoivat taiteessaan monilajisia kulttuureja ja pyrkivät rakentamaan yhteisöjä ja jakamaan yhteistä tilaa. Avoin tila -teoksessa nähdään <i>nabbteerin</i> erilaisia materiaaleja ja tekstuureja kokeilevaa taidetta yhdessä <b>Sanna Kekäläisen</b> tanssitaiteen kanssa. <br>AVOIN TILA on nuorelle yleisölle suunnattu versio 27.9. ensi-iltansa saaneesta Kekäläinen & Companyn teoksesta Shared Spaces And Things We Need.<br>Teoksen kanta-esitys on saanut hyvän vastaanoton ja mm. Helsingin Sanomissa Maria Säkö kuvaa teosta näin:<br>\"Esitys kysyy: mitä on vieraanvaraisuus ja jakaminen? Esiintyjien eleiden tarkkuus ja herkkyys ovat aivan omaa luokkaansa, ja ne tarttuvat katsojaankin.</p><p>Aivan kuin tanssiteos kykenisi palauttamaan katsojien ruumiisiin tietoa hoivasuhteiden välttämättömyydestä kovassa, väkivaltaisessa, lajikadon ja ilmastokatastrofin keskellä elävässä maailmassa.\"</p><p>Käsikirjoitus, ohjaus ja koreografia, tila: Sanna Kekäläinen<br>Esiintyjät ja yhteistyö: Sanna Kekäläinen, Leila Kourkia, Lara Müller<br>Esinemaailma (paitsi pressut ja kassit): nabbteeri & Riikka Keränen <br>Äänisuunnittelu: Jaakko Kulomaa<br>Valosuunnittelu: Lauri Sirén</p><p>Esityksen kesto: noin 1 tunti<br>Esityksen kieli: sanaton<br>Ikäsuositus: 7+</p><p>Liput 15 €<br></i>Lippuvaraukset linkistä: https://forms.gle/eLVwQjytM6XcgD538</p>",
                "sv": "<p>Öppet utrymme är ett filosofiskt dansverk för barn i skolåldern och deras vuxna, som söker en lösning på vår tids ödesfråga.</p><p>Varje tid har sin ödesfråga. Vår tids fråga är klimatkrisen, massutrotningen och våldet som präglar vår tid.</p><p>Som ett slags svar på detta föreslår Öppet utrymme att vi delar med oss och visar varandra gästfrihet. Ett delat utrymme, delade material, deras organiska härkomst och att ta hand om dem. Vi delar utrymmet och upplevelsen på samma sätt som vi delar vår gemensamma värld.</p><p>Längd: ca. 1 t<br>Språk: ordlöss<br>Åldersrekommedation: 7+</p><p>Biljettär 15 €, https://forms.gle/eLVwQjytM6XcgD538</p>",
                "en": "<p>Shared Space is a philosophical dance piece for school-aged children and their parents, which looks for answers for the questions of fate of our time.</p><p>Each era has its own fateful question. In our time this question arises from the climate crisis, mass extinction and the violence that characterizes our age.</p><p><i>Shared Space</i> suggests sharing and hospitality as kind of an answer to this question. Shared materials, their organocenic quality and taking care of them. The space and experience are shared just as the world is shared between all.</p><p>Script, direction and coreography, space: Sanna Kekäläinen<br>Performers and co-operation: Sanna Kekäläinen, Leila Kourkia, Lara Müller, Johanna Rantanen<br>Objects (excepts bags and tarpaulins): nabbteeri & Riikka Keränen<br>Sound design: Jaakko Kulomaa<br>Light design: Lauri Sirén</p><p>Tickets €15: https://forms.gle/eLVwQjytM6XcgD538</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59868/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61106",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5186,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:47.998039Z",
                    "last_modified_time": "2023-10-09T13:30:47.998066Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737462.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5186/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:47.851822Z",
            "last_modified_time": "2023-11-14T06:13:26.228157Z",
            "date_published": null,
            "start_time": "2023-10-20T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kimpassa 99 (7) – Kino Helios",
                "sv": "Tillsammans 99 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Vuonna 1975 Kimpassa-kollektiivi oli suurperhe. 24 vuotta myöhemmin, vuonna 1999 se on kutistunut kovin pieneksi.",
                "sv": "1975 var kollektivet Tillsammans en storfamilj. 24 år senare, 1999, har det förvandlats till världens minsta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2FB77024059A35274B83250763A8F649/Kimpassa_99_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2FB77024059A35274B83250763A8F649/Tillsammans_99_7_"
            },
            "description": {
                "fi": "<p>Vuonna 1975 Kimpassa-kollektiivi oli suurperhe. 24 vuotta myöhemmin, vuonna 1999 se on kutistunut kovin pieneksi.</p><p>Jäljellä on enää maailman ystävällisin ihminen Göran ja räsymattoja kutova Klasse. Kun Klasse kutsuu salaa kaikki Göranin syntymäpäiväjuhliin, kokoontuvat he taas yhteen yhdeksi illaksi.</p><p>Mitä heidän elämässään on tapahtunut sitten viime näkemän? Onko elämä kohdellut heitä hyvin vai huonosti? Kenestä tuli kuuluisa kirjailija ja kuka päätyi mielisairalaan? Ovatko 70-luvun unelmat yhä elossa? Kuka muistaa Peterin? Syökö Göran yhä puuroa?</p><p>Kimpassa 99 on elokuva ajan kulumisesta ja elämän luonteesta, joka koskettaa ja liikuttaa katsojaa huumorillaan, ilollaan ja jopa surullaan.</p><p>Ruotsi 2023<br>Ikäraja: 7<br>Kesto: 1 t 35 min</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "sv": "<p>1975 var kollektivet Tillsammans en storfamilj. 24 år senare, 1999, har det förvandlats till världens minsta.</p><p>Kvar finns bara Göran, världens snällaste, och Klasse, som väver sina trasmattor. När Klasse i hemlighet bjuder in till Görans födelsedag, återförenas alla för en kväll.</p><p>Vad har hänt i deras liv sen sist? Har det gått bra eller dåligt för dem? Vem blev känd författare och vem hamnade på mentalsjukhus? Lever drömmarna från sjuttiotalet? Vem minns Peter? Äter Göran fortfarande gröt?</p><p>Tillsammans 99 är en film som vill beröra och rycka med biopubliken med sin humor, glädje och även sorg. En komedi och en allvarlig berättelse om tidens gång och om hur det är att leva.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61106/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61104",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5185,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:47.386834Z",
                    "last_modified_time": "2023-10-09T13:30:47.386860Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737454.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5185/?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-10-09T13:30:46.606802Z",
            "last_modified_time": "2023-11-14T06:13:26.149904Z",
            "date_published": null,
            "start_time": "2023-10-20T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Bambi (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Monet sukupolvet ovat rakastaneet tätä ajatonta klassikkoa ja sen kunnioitusta herättävää animaatiota."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78465452C2FBC34C496F3BA62C6C333D/Bambi_7_"
            },
            "description": {
                "fi": "<p>Monet sukupolvet ovat rakastaneet tätä ajatonta klassikkoa ja sen kunnioitusta herättävää animaatiota.</p><p>Elämää mullistavassa seikkailussa Bambi lähtee parhaiden ystäviensä Rumpalin ja Kukan kanssa tutkimaan metsän ihmeitä ja haasteita, sekä täyttämään kohtalonsa metsän prinssinä. Täynnä huumoria ja sydäntä oleva Bambi on edelleen perheiden suosikki.<br> <br>Ikäraja: 7<br>Kesto: 70 min<br>Puhuttu suomeksi</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia ja klassikoita niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61104/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61103",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5184,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:45.384028Z",
                    "last_modified_time": "2023-10-09T13:30:45.384048Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737585.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5184/?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-10-09T13:30:45.094688Z",
            "last_modified_time": "2023-11-14T06:13:26.080132Z",
            "date_published": null,
            "start_time": "2023-10-20T10:00:00Z",
            "end_time": "2023-10-20T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Syysloman ilmaisleffa: Dancing queen (7)",
                "sv": "Höstlovsbio: Dancing queen (7)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "12-vuotias Miina sekoaa, kun kuuluisa hiphop-tanssija ED Win muuttaa kaupunkiin ja aloittaa hänen koulussaan.",
                "sv": "12 åriga Mina blir bli blixtförälskad när hiphop-dansaren ED Win flyttar till stan och börjar i samma skola."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF25DF99422E1CE8CC4C4779DCED2C22/Syysloman_ilmaisleffa_Dancing_queen_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF25DF99422E1CE8CC4C4779DCED2C22/Hostlovsbio_Dancing_queen_7_"
            },
            "description": {
                "fi": "<p>12-vuotias Miina sekoaa, kun kuuluisa hiphop-tanssija ED Win muuttaa kaupunkiin ja aloittaa hänen koulussaan.</p><p>Miina rakastuu ja kun ED ilmoittaa perustavansa uuden tanssiryhmän kaupungin tanssikilpailua varten, Miina päättä mennä koe-esiintymiseen. Ongelma on vain, että hän ei osaa tanssia.</p><p>Dancing Queen on feel-good-elokuva koko perheelle. Elokuva rakkaudesta, tanssista ja siitä että pitää joskus uskaltaa heittäytyä tuntemattomaan saadakseen sen mitä haluaa.</p>",
                "sv": "<p>12 åriga Mina blir bli blixtförälskad när hiphop-dansaren ED Win flyttar till stan och börjar i samma skola.</p><p>Ed berättar att han vill starta en ny dansgrupp som ska ställa upp i en stor tävling. Mina beslutar på direkten att hon ska försöka komma med. Det är bara ett problem: Hon kan inte dansa.</p><p>Dancing Queen är en feelgood-film för hela familjen. En film om kärlek, dans och att våga kasta sig ut i det okända för att få det man vill ha.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61103/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60543",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "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/a-la-malmi-malmitalo-17268567/",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268567/",
                        "en": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268567/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4433,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:49.837758Z",
                    "last_modified_time": "2023-09-07T14:24:49.837782Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727050.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:48.978523Z",
            "last_modified_time": "2023-11-14T06:13:25.996010Z",
            "date_published": null,
            "start_time": "2023-10-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Maija Kauhanen ja Pauanne – A la Malmi",
                "sv": "Maija Kauhanen och Pauanne – A la Malmi",
                "en": "Maija Kauhanen and Pauanne – A la Malmi"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Klubilla luvassa polyrytmien ja beatin kutomaa sykettä ja matka, jolla musiikin aikakaudet sulautuvat luonnollisesti toisiinsa.",
                "sv": "Klubben utlovar en puls vävd av polyrytmer och beats och en resa där musikens epoker naturligt smälter in i varandra.",
                "en": "Unique soundscapes and compelling grooves. Stories of spells and curses, the dreams of a shepherd."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E5A9E5E4002651E54E9087785F4AA9C4/Maija_Kauhanen_ja_Pauanne",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E5A9E5E4002651E54E9087785F4AA9C4/Maija_Kauhanen_och_Pauanne",
                "en": "http://www.malmitalo.fi/en/events/event/E5A9E5E4002651E54E9087785F4AA9C4/Maija_Kauhanen_and_Pauanne"
            },
            "description": {
                "fi": "<p>Klubilla luvassa polyrytmien ja beatin kutomaa sykettä ja matka, jolla musiikin aikakaudet sulautuvat luonnollisesti toisiinsa.</p><p><b>Maija Kauhanen</b></p><p>Vahva laulu, rouhea kantele ja groovaavat lyömäsoittimet. Polyrytmien ja beatin kutoma syke yhdistettynä hypnoottisiin melodioihin luovat ainutlaatuisen soundimaailman vain yhden muusikon voimin.</p><p>Suomen kansainvälisesti menestyneimpiin kansanmuusikoihin lukeutuva Maija Kauhanen julkaisi odotetun toisen albuminsa Menneet toukokuussa 2022. Uuden albumin myötä hän ottaa harppauksen laulaja-lauluntekijyyteen päin, pitäen samalla kiinni juurevasta tyylistään sekä rikkaasta suomalais-karjalaisesta traditiosta. Musiikillisia vaikutteita kuullaan kansanmusiikista, indiepopista ja elokuvamusiikista ja kappaleet pohtivat omaa tilaa ja rajoja. Miten oma tila otetaan ja kuka sinne pääsee?</p><p>Maija Kauhasen erikoistumisalue on 23-kielinen Saarijärven kantele ja sen perinteinen soittotyyli pientä puutikkua plektrana käyttäen. Hän kehittää jatkuvasti uusia soittotekniikoita ja kantelemalleja isänsä, soitinrakentaja <b>Kari Kauhasen</b> kanssa. Kauhasen uuteen soundipalettiin mahtuu matkoilta hankittuja tuulikelloja, emaliasioita kirpputoreilta sekä innovatiivisia soittotekniikoita muun muassa jousta käyttäen.</p><p>Viime vuosina Maija Kauhasen keikkalistalla ovat olleet muun muassa Celtic Connections, FOCUS Wales ja WOMAD Iso-Britanniassa, Folk Alliance International Kanadassa, Il Festival de Músicas del Mundo Kolumbiassa, Korrö Folkfestival, Urkult Folkfest ja Malmöfestivalen Ruotsissa, Tønder Festival Tanskassa, Kalottspel Norjassa, World Culture Festival Hong Kongissa, Roue Baruch Bretagnessa, Festival Notes Polaires Sveitsissä ja Festival Porta Latviassa.</p><p><b>Pauanne</b></p><p>Liikku linnat, järkky järvet, <br>Vuoret vaskiset vapisi <br>jyskäissä Ukon jyrinän, <br>pauantehen pauhatessa.<br> <br>Pauanne keinuttaa kuulijansa matkalle, jossa musiikin aikakaudet sulautuvat luonnollisesti toisiinsa. Viime vuosisadan alkupuolella tallennetut arkistonauhat vievät kuulijan äänimaisemaan, joka on koruton, arkinen mutta samalla lohduttava. Viulu, Hammond-urut sekä erilaiset akustiset ja elektroniset lyömäsoittimet luovat osaltaan ajattoman tunnelman.</p><p>Pauanne puhuu kansanmusiikin kieltä modernilla aksentilla siten, että traditio taipuu meidän vuosituhannen ihmisten ymmärrettäväksi.</p><p><b>Kukka Lehto</b> / viulu, koskettimet, arkistonauhat <br><b>Tero Pennanen</b> / Hammond B3 -urut, koskettimet <br><b>Oskari Lehtonen</b> / rummut ja perkussiot</p><p><i>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia upeissa mutta silti kodikkaissa konserttisalipuitteissa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät, joita maa päällään kantaa.</i></p>",
                "sv": "<p>Klubben utlovar en puls vävd av polyrytmer och beats och en resa där musikens epoker naturligt smälter in i varandra.</p><p><b>Maija Kauhanen</b><br>Kraftfull sång, en ruff kantele och groovy slagverk – polyrytmer och beat som vävs samman och kombineras med hypnotiska melodier skapar en unik soundvärld med bara en musiker bakom styret.   <br>Maija Kauhanen som är en av Finlands internationellt mest framgångsrika folkmusiker släppte sitt efterlängtade andra album i maj 2022.</p><p><b>Pauanne</b><br>Pauanne sätter publiken i gungning och tar den med sig på en resa där olika musikaliska tidsåldrar smälter samman på ett naturligt sätt. Arkivbanden som spelats in under tidigt 1900-tal tar åhöraren till ett ljudlandskap som är flärdfritt, alldagligt men samtidigt trösterikt.</p><p>Kukka Lehto<br>Tero Pennanen<br>Oskari Lehtonen</p><p><i>A la Malmi är Malms kulturhus klubbserie som presenterar den mest intressanta, färskaste och trendigaste inhemska musiken akustiskt i en flott konsertsalsmiljö. A la Malmi struntar i genregränser och låter de allra bästa upphovsmännen till självständig musik kliva upp på scenen.</i></p>",
                "en": "<p>Unique soundscapes and compelling grooves. Stories of spells and curses, the dreams of a shepherd.</p><p><b>Maija Kauhanen – One-Woman Orchestra</b></p><p>Expressive voice, deep-rooted kantele and inventive percussion: fleet-fingered virtuoso and one-woman band Maija Kauhanen specializes in Finnish kantele and its old and rare playing techniques. Weaving together polyrhythms and organic beats, she creates unique soundscapes and compelling grooves.<br>Multi-awarded Maija Kauhanen is one of the most internationally successful folk musicians from Finland and has toured over 30 countries around Europe, Asia and America.</p><p>On her latest album Menneet (The Past, Nordic Notes 2022) Kauhanen takes a step towards being a singer-songwriter without losing the strong roots in tradition. The music draws influences from folk music, indie pop and film scores and tells stories of personal space and setting one’s boundaries. How much space is enough? How can a personal space be maintained and cherished, without letting it hold us back?</p><p>Kauhanen specializes in the rare Saarijärvi kantele from Central Finland. She plays the kantele in various tunings and with different playing styles, using her fingers, tiny wooden sticks as plectrums, a cello bow, an E-bow as well as other preparation materials like Blu Tack. Her percussion set consists of a kick drum, juju bean shaker, cymbals, wind bells, enamel pots and bowls, silver plates, metal muffin tins, trays and assorted kitchen utensils found at flea markets.</p><p>Maija Kauhanen’s vocal technique is inspired by imitating instrument sounds, rural music traditions of Finland and Karelia as well as the Swedish kulning vocal tradition.</p><p><b>Pauanne</b></p><p>Pagan spirits still slumber in the depths of the Finnish forests – Pauanne has set out to awaken them. Stories of spells and curses, the dreams of a shepherd, 17th-century witch hunts and magical iron fences that repel invaders.</p><p>The trio’s archive research has unearthed a wealth of songs from the long-lost, non-Christian tradition of Finnish folk music.</p><p>Violinist <b>Kukka Lehto</b> and <b>Tero Pennanen</b> on Hammond organ and keyboards collect, arrange and further compose the repertoire while percussionist <b>Oskari Lehtonen</b> provides the rhythmic enhancement.</p><p>Pauanne is fascinated by the “outrageous beliefs” of the past and its endemic prejudices, paranoia, fear of foreigners and persecution of women. In their songs and videos they show that these traits are still very much alive, just dressed in modern clothes. The debut album Pauanne was released in 2019 by Nordic Notes (DE).</p><p>In recent times Pauanne has performed at WOMEX The World Music Expo, WOMAD Las Palmas, Folkelarm Oslo, Nordic Folk Alliance Gothenburg and Haapavesi Folk to name a few.<br> <br>Kukka Lehto – violin, keyboards, archive tapes<br>Tero Pennanen – hammond B3 organ, keyboards, archive tapes<br>Oskari Lehtonen – drums, percussions, archive tapes</p><p><i>A la Malmi club series by Malmitalo presents the most interesting new Finnish music on its way to fame in acoustic form in an amazing concert hall environment. A la Malmi does not care about genres. Instead, it serves up the best creators of independent music in the country.</i></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60543/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59894",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "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/name-16978461",
                        "sv": "https://www.lippu.fi/event/name-16978461",
                        "en": "https://www.lippu.fi/event/name-16978461"
                    },
                    "description": null,
                    "price": {
                        "fi": "39,50 €",
                        "sv": "39,50 €",
                        "en": "39,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4432,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:47.840412Z",
                    "last_modified_time": "2023-09-07T14:24:47.840434Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729752.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4432/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:47.261286Z",
            "last_modified_time": "2023-11-14T06:13:25.916964Z",
            "date_published": null,
            "start_time": "2023-10-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Suvi Teräsniska - Särkyneiden sydänten tie",
                "sv": "Suvi Teräsniska - Särkyneiden sydänten tie",
                "en": "Suvi Teräsniska - Särkyneiden sydänten tie"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Warner Music Live",
                "sv": "Warner Music Live",
                "en": "Warner Music Live"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Suvi teräsniska lähtee syksyllä kattavalle konserttisalikiertueelle",
                "sv": "Suvi Teräsniska ut på en omfattande konsertsalsturné i höst",
                "en": "Suvi Teräsniska to set off on an extensive concert hall tour in the autumn"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F9C42004AEBD34642B1EF66BB1796E8F/Suvi_Terasniska_-_Sarkyneiden_sydanten_tie_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F9C42004AEBD34642B1EF66BB1796E8F/Suvi_Terasniska_-_Sarkyneiden_sydanten_tie_",
                "en": "http://www.savoyteatteri.fi/en/events/event/F9C42004AEBD34642B1EF66BB1796E8F/Suvi_Terasniska_-_Sarkyneiden_sydanten_tie_"
            },
            "description": {
                "fi": "<p>Suvi teräsniska lähtee syksyllä kattavalle konserttisalikiertueelle</p><p>Viime syksynä loppuunmyydyllä Ihmisen poika -kiertueellaan hurmannut, upea Suvi Teräsniska lähtee syksyllä kattavalle konserttisalikiertueelle. Särkyneiden sydänten tie nimellä kulkeva kiertue alkaa 29. syyskuuta Varkaudesta ja päättyy 5. Marraskuuta Säkylään. Liput kiertueen konsertteihin ovat nyt myynnissä. Katso tarkemmat paikkakuntakohtaiset konsertti- ja lipunmyyntitiedot osoitteesta: warnermusiclive.fi/suviterasniska</p><p>”Olen laulanut rakkaudesta ja ihmissuhteista läpi urani. Nyt halusin tehdä illan, jonka aikana hoidetaan särkyneitä sydämiä ja lauletaan tarinoita rakastamisen vaikeudesta. Esitän konsertissa omia tuttuja biisejä vuosien varrelta. Lisäksi kuullaan julkaisemattomia lauluja tulevalta albumilta. Mausteena pari minulle tärkeää lainabiisiä oman elämäni soundtrackilta. Lämpimästi tervetuloa konserttiin,” Suvi kuvailee tulevaa kiertuetta.</p><p>Konsertin kesto n. 2 tuntia, sisältää väliajan</p>",
                "sv": "<p>Suvi Teräsniska ut på en omfattande konsertsalsturné i höst</p><p>Fantastiska Suvi Teräsniska, som i höstas stal hjärtan med sin slutsålda turné Ihmisen poika, ger sig ut på en omfattande konsertsalsturné i höst. Turnén som fått namnet Särkyneiden sydänten tie – de brustna hjärtans väg – inleds den 29 september i Varkaus och avslutas den 5 november i Säkylä. Biljetterna till konserterna är ute nu. Se närmare information om konserter och biljettförsäljning på olika orter på: warnermusiclive.fi/suviterasniska</p><p>”Jag har sjungit om kärlek och relationer under hela min karriär. Nu ville jag skapa en kväll för brustna hjärtan, med sånger som handlar om hur svårt det är att älska. Jag framför mina egna låtar från åren som gått. Dessutom spelar vi opublicerade låtar från det kommande albumet. Som krydda tillkommer ett par lånade låtar som är viktiga för mig, låtar som hör till mitt livs soundtrack. Varmt välkomna till konserten,” beskriver Suvi den kommande turnén.</p><p>Längd ca 2 timmar med paus</p>",
                "en": "<p>Suvi Teräsniska to set off on an extensive concert hall tour in the autumn</p><p>The wonderful artist Suvi Teräsniska, who enchanted audiences on her sold-out ‘Ihmisen poika’ tour last autumn, will begin an extensive concert hall tour in the autumn. The new tour, which bears the name ‘Särkyneiden sydänten tie’ (The Road of Broken Hearts), will begin on 29 September in Varkaus and end on 5 November in Säkylä. Tickets for the tour shows are now available. More location-specific concert and ticket sales information is available at: warnermusiclive.fi/suviterasniska.</p><p>“I’ve been singing about love and relationships throughout my career. This time, I wanted to create a show that heals broken hearts and includes songs about the difficulty of loving. During the concert, I will be performing some of my familiar songs from over the years. You will also hear some unreleased tunes from my upcoming album. As an extra treat, I’ve also added some important cover songs from the soundtrack of my own life. Everyone is warmly welcome,” Suvi says, describing her upcoming tour.</p><p>The duration of the concert is approx. 2 h, including intermission.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59894/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59926",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://forms.gle/eLVwQjytM6XcgD538",
                        "sv": "https://forms.gle/eLVwQjytM6XcgD538",
                        "en": "https://forms.gle/eLVwQjytM6XcgD538"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4431,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:46.821422Z",
                    "last_modified_time": "2023-09-07T14:24:46.821462Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731302.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4431/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:24:46.674977Z",
            "last_modified_time": "2023-11-14T06:13:25.838189Z",
            "date_published": null,
            "start_time": "2023-10-19T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kekäläinen & Company: Avoin tila",
                "sv": "Kekäläinen & Company: Öppet utrymme",
                "en": "Kekäläinen & Company: Shared Space"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Avoin tila on filosofinen tanssiteos kouluikäisille ja heidän aikuisilleen, joka etsii ratkaisua meidän aikamme kohtalonkysymykseen.",
                "sv": "Öppet utrymme är ett filosofiskt dansverk för barn i skolåldern och deras vuxna, som söker en lösning på vår tids ödesfråga.",
                "en": "Shared Space is a philosophical dance piece for school-aged children and their parents, which looks for answers for the questions of fate of our time."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7615DD30D597C7D9FB2D6EB1E7E28EBB/Kekalainen_Company_Avoin_tila",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7615DD30D597C7D9FB2D6EB1E7E28EBB/Kekalainen_Company_Oppet_utrymme",
                "en": "http://www.annantalo.fi/en/events/event/7615DD30D597C7D9FB2D6EB1E7E28EBB/Kekalainen_Company_Shared_Space"
            },
            "description": {
                "fi": "<p>Avoin tila on filosofinen tanssiteos kouluikäisille ja heidän aikuisilleen, joka etsii ratkaisua meidän aikamme kohtalonkysymykseen.</p><p>Jokaisella ajalla on oma kohtalonkysymyksensä. Meidän aikanamme tämä kysymys syntyy ilmastokriisistä, massasukupuutosta ja aikaamme leimaavasta väkivallasta.</p><p>Tähän eräänlaiseksi vastaukseksi <i>Avoin tila</i> ehdottaa jakamista ja vieraanvaraisuutta. Jaettua tilaa, materiaaleja, niiden eloperäisyyttä ja niiden hoivaamista. Tila ja kokemus on jaettu samalla tavoin kuin maailma on jaettu ja yhteinen.</p><p>Esitys käyttää kuvataiteilijapari <i>nabbteerin</i> esinemaailmaa. Taiteilijapari <b>Janne Nabb</b> ja <b>Maria Teeri</b> havainnoivat taiteessaan monilajisia kulttuureja ja pyrkivät rakentamaan yhteisöjä ja jakamaan yhteistä tilaa. Avoin tila -teoksessa nähdään <i>nabbteerin</i> erilaisia materiaaleja ja tekstuureja kokeilevaa taidetta yhdessä <b>Sanna Kekäläisen</b> tanssitaiteen kanssa. <br>AVOIN TILA on nuorelle yleisölle suunnattu versio 27.9. ensi-iltansa saaneesta Kekäläinen & Companyn teoksesta Shared Spaces And Things We Need.<br>Teoksen kanta-esitys on saanut hyvän vastaanoton ja mm. Helsingin Sanomissa Maria Säkö kuvaa teosta näin:<br>\"Esitys kysyy: mitä on vieraanvaraisuus ja jakaminen? Esiintyjien eleiden tarkkuus ja herkkyys ovat aivan omaa luokkaansa, ja ne tarttuvat katsojaankin.</p><p>Aivan kuin tanssiteos kykenisi palauttamaan katsojien ruumiisiin tietoa hoivasuhteiden välttämättömyydestä kovassa, väkivaltaisessa, lajikadon ja ilmastokatastrofin keskellä elävässä maailmassa.\"</p><p>Käsikirjoitus, ohjaus ja koreografia, tila: Sanna Kekäläinen<br>Esiintyjät ja yhteistyö: Sanna Kekäläinen, Leila Kourkia, Lara Müller<br>Esinemaailma (paitsi pressut ja kassit): nabbteeri & Riikka Keränen <br>Äänisuunnittelu: Jaakko Kulomaa<br>Valosuunnittelu: Lauri Sirén</p><p>Esityksen kesto: noin 1 tunti<br>Esityksen kieli: sanaton<br>Ikäsuositus: 7+</p><p>Liput 15 €<br></i>Lippuvaraukset linkistä: https://forms.gle/eLVwQjytM6XcgD538</p>",
                "sv": "<p>Öppet utrymme är ett filosofiskt dansverk för barn i skolåldern och deras vuxna, som söker en lösning på vår tids ödesfråga.</p><p>Varje tid har sin ödesfråga. Vår tids fråga är klimatkrisen, massutrotningen och våldet som präglar vår tid.</p><p>Som ett slags svar på detta föreslår Öppet utrymme att vi delar med oss och visar varandra gästfrihet. Ett delat utrymme, delade material, deras organiska härkomst och att ta hand om dem. Vi delar utrymmet och upplevelsen på samma sätt som vi delar vår gemensamma värld.</p><p>Längd: ca. 1 t<br>Språk: ordlöss<br>Åldersrekommedation: 7+</p><p>Biljettär 15 €, https://forms.gle/eLVwQjytM6XcgD538</p>",
                "en": "<p>Shared Space is a philosophical dance piece for school-aged children and their parents, which looks for answers for the questions of fate of our time.</p><p>Each era has its own fateful question. In our time this question arises from the climate crisis, mass extinction and the violence that characterizes our age.</p><p><i>Shared Space</i> suggests sharing and hospitality as kind of an answer to this question. Shared materials, their organocenic quality and taking care of them. The space and experience are shared just as the world is shared between all.</p><p>Script, direction and coreography, space: Sanna Kekäläinen<br>Performers and co-operation: Sanna Kekäläinen, Leila Kourkia, Lara Müller, Johanna Rantanen<br>Objects (excepts bags and tarpaulins): nabbteeri & Riikka Keränen<br>Sound design: Jaakko Kulomaa<br>Light design: Lauri Sirén</p><p>Tickets €15: https://forms.gle/eLVwQjytM6XcgD538</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59926/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61063",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5183,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:44.145451Z",
                    "last_modified_time": "2023-10-09T13:30:44.145471Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737569.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5183/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:44.008266Z",
            "last_modified_time": "2023-11-14T06:13:25.763699Z",
            "date_published": null,
            "start_time": "2023-10-19T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "The Act of Revealing",
                "en": "The Act of Revealing"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Act of Revealing tutkii liikkeen ja äänen avulla collective caringin perusteita solutiedosta ja alkuperämuistoistamme: läsnäolosta, laajentumisesta, yhteydenpidosta ja kosketuksesta.",
                "en": "The Act of Revealing explores through movement and voice the bases of collective caring from the cellular knowledge and the memories of our origins: presence, expansion, connection and touch."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/DB1FE4C0B40C3B42DDDB6042C297D1D5/The_Act_of_Revealing_",
                "en": "http://www.stoa.fi/en/events/event/DB1FE4C0B40C3B42DDDB6042C297D1D5/The_Act_of_Revealing_"
            },
            "description": {
                "fi": "<p>Act of Revealing tutkii liikkeen ja äänen avulla collective caringin perusteita solutiedosta ja alkuperämuistoistamme: läsnäolosta, laajentumisesta, yhteydenpidosta ja kosketuksesta.</p><p>Kutsumme sinut Stoan galleriatilaan ja olemaan, rentoutumaan ja halutessasi osallistumaan omin ehdoin.</p><p>Osana esitystä jaamme mediataiteilija Kati Rooverin kanssa yhteistyönä tehdyn videon.</p><p>Tarjoamme sinulle myös pienen iltapalan avoimen keskustelun ohessa. Tapahtumaan on vapaa pääsy, mutta tarjoilun mitoittamiseksi ilmoittauduthan sähköpostilla osoitteeseen gabrielaarianaart@gmail.com.</p><p>Esitys on osa Mater-projektia 2023, taidetutkimusta hoitotilojen perustamisesta elämyksellisen taiteen avulla, jota tukevat Taiteen edistämiskeskus Taike ja Helsingin kaupunki.</p><p>Kesto: noin 1 t</p><p>Työryhmä:<br>Gabriela Ariana: Alkuperäinen idea, koreografi, video, äänisuunnittelija, esiintyjä<br>Taru Koski ja Riina Huhtanen: Esiintyjät<br>Kati Roover: Video ja ääni</p>",
                "en": "<p>The Act of Revealing explores through movement and voice the bases of collective caring from the cellular knowledge and the memories of our origins: presence, expansion, connection and touch.</p><p>We invite you to come to the space and be there from a state of rest and, if you feel like, to participate in your own terms.<br> <br>As part of the performance we will share a video made as a joint work with the media artist Kati Roover. We will also offer you a small snack that we will be able to enjoy together along with an open conversation. The event is for free but we need your registration to consider you for the snack! Send us a message to gabrielaarianaart@gmail.com.<br> <br>This performance is part of Mater-project 2023, an art research about establishing spaces for care through experiential art, supported by Arts Promotion Centre Finland (Taike) and Helsinki City.</p><p>Duration 1 h.<br> <br>Working group:<br>Gabriela Ariana: Original idea, choreographer, video, sound designer, performer<br>Taru Koski and Riina Huhtanen: Performers<br>Kati Roover: Video and Sound</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61063/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61102",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5182,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:43.785451Z",
                    "last_modified_time": "2023-10-09T13:30:43.785477Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736356.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5182/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-10-09T13:30:42.998909Z",
            "last_modified_time": "2023-11-14T06:13:25.690477Z",
            "date_published": null,
            "start_time": "2023-10-19T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paavo pelastaa Uutelan"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Nuorten tekemä Paavo pelastaa Uutelan -elokuva ensi-illassa!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/635624FB6D585898D1F9163B82EC2DAD/Paavo_pelastaa_Uutelan"
            },
            "description": {
                "fi": "<p>Nuorten tekemä Paavo pelastaa Uutelan -elokuva ensi-illassa!</p><p>AsuntoSatama LKV:n palkkaamien kahdenkymmenen nuoren kesäduunina syntynyt lyhytelokuvan ensi-ilta on syyslomaviikolla 19.10. Vuotalon Vuosalissa.</p><p>Nuorten käsikirjoituksesta lopputeksteihin tuottamassa elokuvassa Paavo-koira pelastaa Uutelan ympäristörikollisten voimalasuunnitelmilta.</p><p>Paavo pelastaa Uutelan -elokuva 19.10. klo 18:00 ja klo 18:45. <br>Elokuvan kesto 13 minuuttia. <br>Vapaa pääsy, mutta halutessasi voit tukea haluamallasi summalla ProUutela-liikettä.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61102/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61112",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5181,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:41.591042Z",
                    "last_modified_time": "2023-10-09T13:30:41.591068Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731925.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5181/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:41.365390Z",
            "last_modified_time": "2023-11-14T06:13:25.618031Z",
            "date_published": null,
            "start_time": "2023-10-19T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Seniornätverksträff: Trolleri med magikern Robert Jägerhorn",
                "sv": "Seniornätverksträff: Trolleri med magikern Robert Jägerhorn"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Taikuri Robert Jägerhorn kutsuu sinut mukaan maagiseen hetkeen Kanneltalon kahvilaan.",
                "sv": "Trollkonstnären Robert Jägerhorn bjuder in till en magisk stund i Gamlasgårdens café. Förvänta dig överraskningar, skratt och oförklarliga trick."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4E8845001DF755C7E6C6E28F003AD2B7/Seniornatverkstraff_Trolleri_med_magikern_Robert_Jagerhorn_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4E8845001DF755C7E6C6E28F003AD2B7/Seniornatverkstraff_Trolleri_med_magikern_Robert_Jagerhorn_"
            },
            "description": {
                "fi": "<p>Taikuri Robert Jägerhorn kutsuu sinut mukaan maagiseen hetkeen Kanneltalon kahvilaan.</p><p>Luvassa on yllätyksiä, naurua ja selittämättömiä temppuja.</p><p>Esityksen kesto: n. 60 min.<br>Kieli: ruotsi</p><p>Lisäksi infotori ja kahvitarjoilu. Ilmainen sisäänpääsy, ei ennakkoilmoittautumista.</p><p>Järj. Senioriverkosto Helsingissä yhteistyössä Kanneltalon kanssa.</p><p>Trollkonstnären Robert Jägerhorn bjuder in till en magisk stund i Gamlasgårdens café. Förvänta dig överraskningar, skratt och oförklarliga trick.</p><p>Föreställningens längd ca 60 min.<br>Språk: svenska</p><p>Dessutom infotorg och kaffeservering. Fri entré, ingen förhandsanmälan.</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>",
                "sv": "<p>Trollkonstnären Robert Jägerhorn bjuder in till en magisk stund i Gamlasgårdens café. Förvänta dig överraskningar, skratt och oförklarliga trick.</p><p>Föreställningens längd ca 60 min.<br>Språk: svenska</p><p>Dessutom infotorg och kaffeservering. Fri entré, ingen förhandsanmälan.</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61112/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60529",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4430,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:46.431052Z",
                    "last_modified_time": "2023-09-07T14:24:46.431073Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731323.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4430/?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-09-07T14:24:46.280344Z",
            "last_modified_time": "2023-11-14T06:13:25.545637Z",
            "date_published": null,
            "start_time": "2023-10-19T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Syyslomaleffa: Mahtava Morris (7)",
                "sv": "Höstlovsfilm: Den makalöse Maurice (7)",
                "en": "Autumn holiday film: The Amazing Maurice (7)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Morris-kissa kiertää rinta rottingilla kaupungista toiseen ratkomassa yllättäen ilmeneviä rottaongelmia, kömpelö pillipiipari Keith vanavedessään.",
                "sv": "Den makalöse Maurice är en berättelse om katten Maurice som reser från stad till stad och erbjuder sig stoltserande att lösa plötsliga råttproblem.",
                "en": "‘The Amazing Maurice’ is the story of Morris the cat, who travels from town to town with his head held high to solve unexpected rat problems, with Keith the clumsy piper in tow."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/53C61F82AC9256D9BCB099F07B9A6935/Syyslomaleffa_Mahtava_Morris_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/53C61F82AC9256D9BCB099F07B9A6935/Hostlovsfilm_Den_makalose_Maurice_7_",
                "en": "http://www.malmitalo.fi/en/events/event/53C61F82AC9256D9BCB099F07B9A6935/Autumn_holiday_film_The_Amazing_Maurice_7_"
            },
            "description": {
                "fi": "<p>Morris-kissa kiertää rinta rottingilla kaupungista toiseen ratkomassa yllättäen ilmeneviä rottaongelmia, kömpelö pillipiipari Keith vanavedessään.</p><p>Kun Keith lurittelee huilullaan, rotat marssivat pois kiitollisten kyläläisten riemuksi. Kyläläiset tosin eivät koskaan saa tietää, että yllättävän oppineet rotat ovat mukana juonessa. Morris, Keith ja rottalauma käärivät myhäillen palkkiorahat taskuihinsa.</p><p>Homma toimii mainiosti, kunnes yllättävä huijareiden joukko saapuu kylään. Siellä he kohtaavat satuja ja tarinoita rakastavan kirjatoukka Malician ja sekalainen seurakunta päätyy ratkomaan yhdessä kylän outoa mysteeriä. Missä ovat kaikki paikalliset rotat?</p><p>Mahtava Morris perustuu fantasiakirjailijan Terry Pratchettin Carnegie-palkittuun lastenkirjaan Mahtava Morris ja sivistyneet siimahännät.</p><p>Kesto: 93 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Den makalöse Maurice är en berättelse om katten Maurice som reser från stad till stad och erbjuder sig stoltserande att lösa plötsliga råttproblem.</p><p>Hans resesällskap är den klumpiga flöjtblåsaren Keith.</p><p>Längd: 93 min <br>Åldersgrän: 7<br>Språk: Finska</p><p>Fritt inträde!</p>",
                "en": "<p>‘The Amazing Maurice’ is the story of Morris the cat, who travels from town to town with his head held high to solve unexpected rat problems, with Keith the clumsy piper in tow.</p><p>Duration: 93 min <br>Age limit: 7<br>Language: Finnish</p><p>Free entry!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60529/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60528",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "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:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4429,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:46.000689Z",
                    "last_modified_time": "2023-09-07T14:24:46.000718Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731711.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4429/?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-09-07T14:24:45.759236Z",
            "last_modified_time": "2023-11-14T06:13:25.469965Z",
            "date_published": null,
            "start_time": "2023-10-19T08:00:00Z",
            "end_time": "2023-10-19T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Syyslomatyöpaja: Ötökkäpiilo – piiloötökkä",
                "sv": "Höstlovsverkstad: Ötökkäpiilo – piiloötökkä",
                "en": "Autumn holiday workshop Bug hide – hiding bug"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Hupsut pomppuötökät piiloutuvat boksiin!",
                "sv": "De tokiga skuttande småkrypen gömmer sig i asken!",
                "en": "Silly bugs hide in a box!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B7FAFEE64D994ECABC789BC368A2BE0F/Syyslomatyopaja_Otokkapiilo_piilootokka",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B7FAFEE64D994ECABC789BC368A2BE0F/Hostlovsverkstad_Otokkapiilo_piilootokka",
                "en": "http://www.malmitalo.fi/en/events/event/B7FAFEE64D994ECABC789BC368A2BE0F/Autumn_holiday_workshop_Bug_hide_hiding_bug"
            },
            "description": {
                "fi": "<p>Hupsut pomppuötökät piiloutuvat boksiin!</p><p>Taittele taskukokoinen rasia paperista ja talleta rasiaan aivan yllättävä öttiäinen!</p><p>Työpajan suunnittelu ja toteutus: Runoropinoita</p><p>Malmitalon aulassa</p><p>Vapaa pääsy!</p>",
                "sv": "<p>De tokiga skuttande småkrypen gömmer sig i asken!</p><p>Vik en pappersask i fickstorlek och spara en överraskande varelse i den!</p>",
                "en": "<p>Silly bugs hide in a box!</p><p>Fold a pocket-sized box out of paper and store a surprising little bug in the box!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60528/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60527",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "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/the-great-helsinki-swing-big-band/",
                        "sv": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "en": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 14,50 €",
                        "sv": "22 € / 14,50 €",
                        "en": "22 € / 14,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4428,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:44.733559Z",
                    "last_modified_time": "2023-09-07T14:24:44.733584Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_720852.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4428/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:43.858766Z",
            "last_modified_time": "2023-11-14T06:13:25.388360Z",
            "date_published": null,
            "start_time": "2023-10-18T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "The Great Helsinki Swing Big Band: Swingin' Jubilee!",
                "sv": "The Great Helsinki Swing Big Band: Swingin' Jubilee!",
                "en": "The Great Helsinki Swing Big Band: Swingin’ Jubilee!"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Suomen big band -musiikin elävä kapellimestarilegenda Petri Juutilainen ja swing big bandin luottosolisti Juki Välipakka yhdistävät voimansa juhlavuosiensa merkeissä!",
                "sv": "Den levande dirigentlegenden inom finsk storbandsmusik Petri Juutilainen och Swing Big Bands go to-solist Juki Välipakka förenar krafterna i firandet av sina jubileumsår!",
                "en": "Petri Juutilainen, the living conductor legend of Finnish big band music, and Juki Välipakka, the swing big band’s trusted soloist, join forces to celebrate their anniversaries!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/77EEA2B24ADBBB5246D50825070B40A2/The_Great_Helsinki_Swing_Big_Band_Swingin_Jubilee_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/77EEA2B24ADBBB5246D50825070B40A2/The_Great_Helsinki_Swing_Big_Band_Swingin_Jubilee_",
                "en": "http://www.malmitalo.fi/en/events/event/77EEA2B24ADBBB5246D50825070B40A2/The_Great_Helsinki_Swing_Big_Band_Swingin_Jubilee_"
            },
            "description": {
                "fi": "<p>Suomen big band -musiikin elävä kapellimestarilegenda Petri Juutilainen ja swing big bandin luottosolisti Juki Välipakka yhdistävät voimansa juhlavuosiensa merkeissä!</p><p>Luvassa on autenttinen swing-show, jossa svengataan mm. Nat King Colen ja Frank Sinatran tahtiin!</p>",
                "sv": "<p>Den levande dirigentlegenden inom finsk storbandsmusik Petri Juutilainen och Swing Big Bands go to-solist Juki Välipakka förenar krafterna i firandet av sina jubileumsår!</p>",
                "en": "<p>Petri Juutilainen, the living conductor legend of Finnish big band music, and Juki Välipakka, the swing big band’s trusted soloist, join forces to celebrate their anniversaries!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60527/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61014",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.pathfindertravels.se/tickets-fi/tc-events/helsinki-18-october-2023-blue-program/",
                        "sv": "https://www.pathfindertravels.se/tickets-fi/tc-events/helsinki-18-october-2023-blue-program/",
                        "en": "https://www.pathfindertravels.se/tickets-fi/tc-events/helsinki-18-october-2023-blue-program/"
                    },
                    "description": null,
                    "price": {
                        "fi": "19 €",
                        "sv": "19 €",
                        "en": "19 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5180,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:40.534381Z",
                    "last_modified_time": "2023-10-09T13:30:40.534400Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737513.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5180/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:40.395922Z",
            "last_modified_time": "2023-11-14T06:13:25.313930Z",
            "date_published": null,
            "start_time": "2023-10-18T15:30:00Z",
            "end_time": "2023-10-18T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "BANFF Mountain Film Festival – BLUE FILM PROGRAM",
                "sv": "BANFF Mountain Film Festival – BLUE FILM PROGRAM",
                "en": "BANFF Mountain Film Festival – BLUE FILM PROGRAM"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Pathfinder Travels",
                "sv": "Pathfinder Travels",
                "en": "Pathfinder Travels"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.",
                "sv": "It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.",
                "en": "It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/BB8D921FD2345C2591EA9F4196436ED8/BANFF_Mountain_Film_Festival",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/BB8D921FD2345C2591EA9F4196436ED8/BANFF_Mountain_Film_Festival",
                "en": "http://www.savoyteatteri.fi/en/events/event/BB8D921FD2345C2591EA9F4196436ED8/BANFF_Mountain_Film_Festival"
            },
            "description": {
                "fi": "<p>It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.</p><p>The BLUE film program brings you 9 films straight from the Canadian festival scene. It’s a diverse mix of films with different themes and lengths that will keep you glued to the screen. Our awesome host will be there to introduce the festival and each film, plus they’ll be rockin’ some great giveaways and more. We’ll take a break around halfway through the evening for about 20 minutes. And don’t worry about the language barrier, because all the films either have English audio or English subtitles.</p><p>https://pathfindertravels.eu/blue-film-program/</p>",
                "sv": "<p>It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.</p><p>The BLUE film program brings you 9 films straight from the Canadian festival scene. It’s a diverse mix of films with different themes and lengths that will keep you glued to the screen. Our awesome host will be there to introduce the festival and each film, plus they’ll be rockin’ some great giveaways and more. We’ll take a break around halfway through the evening for about 20 minutes. And don’t worry about the language barrier, because all the films either have English audio or English subtitles.</p><p>https://pathfindertravels.eu/blue-film-program/</p>",
                "en": "<p>It is with great pleasure that we present this year’s two film programs. Here you can see a selection of the best festival entries, prize winners and audience favorites from the festival in Canada.</p><p>The BLUE film program brings you 9 films straight from the Canadian festival scene. It’s a diverse mix of films with different themes and lengths that will keep you glued to the screen. Our awesome host will be there to introduce the festival and each film, plus they’ll be rockin’ some great giveaways and more. We’ll take a break around halfway through the evening for about 20 minutes. And don’t worry about the language barrier, because all the films either have English audio or English subtitles.</p><p>https://pathfindertravels.eu/blue-film-program/</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61014/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61052",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5179,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:40.086930Z",
                    "last_modified_time": "2023-10-09T13:30:40.086955Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737387.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5179/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:39.103538Z",
            "last_modified_time": "2023-11-14T06:13:25.245570Z",
            "date_published": null,
            "start_time": "2023-10-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,
            "name": {
                "fi": "Valoa valoa valoa (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/234DF88F7638A659E89583170C839DB6/Valoa_valoa_valoa_12_"
            },
            "description": {
                "fi": "<p>Valoa valoa valoa on elokuva ensirakkaudesta, sen häikäisevästä valosta ja elämänpituiseksi venyneistä varjoista.</p><p>Elokuva perustuu kirjailija <b>Vilja-Tuulia Huotarisen</b> samannimiseen romaaniin, joka voitti Finlandia Juniorin ilmestyessään vuonna 2011.</p><p>Keväällä 1986 Tsernobylin ydinvoimalassa Neuvostoliitossa räjähtää ja hämäläiseen pikkukylään saapuu tyttö nimeltä Mimi, joka saa teini-ikäisen Mariian elämän hetkeksi täyteen valoa. Kahdenkymmenen vuoden jälkeen aikuistunut Mariia tulee vierailulle lapsuudenkotiinsa ja palaa muistoissaan nuoruutensa kesään ja sitä seuranneeseen traagiseen syksyyn.</p><p>Ensirakkauden kasarikesään palatessa, Mariian on päästettävä irti syyllisyydestä sekä annettava anteeksi muillekin kuin itselleen.</p><p>Kesto 91 min<br>Ikäraja 12<br>Ensi-ilta 13.10.2023<br>Tekstitys suomeksi</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61052/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61077",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5178,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:37.987674Z",
                    "last_modified_time": "2023-10-09T13:30:37.987699Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736308.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5178/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:37.718367Z",
            "last_modified_time": "2023-11-14T06:13:25.167371Z",
            "date_published": null,
            "start_time": "2023-10-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,
            "name": {
                "fi": "Syyslomaleffa: Ufo Sweden (12)",
                "sv": "Höstlovsbio: Ufo Sweden (12)",
                "en": "Autumn holiday film: Ufo Sweden (12)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "UFO Sweden on yliluonnollisia ilmiöitä tutkiva järjestö.",
                "sv": "UFO Sweden är en förening som utreder övernaturliga fenomen.",
                "en": "The association UFO Sweden investigates super­ natural phenomena."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/392B214680CBCD6DD5D1DA3403534467/Syyslomaleffa_Ufo_Sweden_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/392B214680CBCD6DD5D1DA3403534467/Hostlovsbio_Ufo_Sweden_12_",
                "en": "http://www.vuotalo.fi/en/events/event/392B214680CBCD6DD5D1DA3403534467/Autumn_holiday_film_Ufo_Sweden_12_"
            },
            "description": {
                "fi": "<p>UFO Sweden on yliluonnollisia ilmiöitä tutkiva järjestö.</p><p>Eräänä päivänä teinikapinallinen, Denise, saapuu mukanaan tapaus, jollaista ei ole ennen nähty.</p><p>Yhdessä he heittäytyvät riskialttiiseen seikkailuun, joka johtaa heidät kauas lakien ulkopuolelle – maailmaan täynnä selittämättömiä ilmiöitä.</p><p>Ruotsi 2022<br>Genre: Adventure, Sci-fi<br>Ohjaus: Crazy Pictires / Victor Danell<br>Näyttelijät: Inez Torhaug, Jesper Barkselius, Eva Melander, Sara Shirpey, Oscar Töringe, Håkan Ehn, Isabelle Kyed, Mathias Lithner, Joakim Sällquist, Niklas Jönsson<br>Kesto: 1 h 55 min<br>Alkuperäiskieli: ruotsi<br>Tekstitys: suomi<br>K 12<br>Vapaa pääsy</p><p>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa</p>",
                "sv": "<p>UFO Sweden är en förening som utreder övernaturliga fenomen.</p><p>En dag dyker tonårsrebellen Denise upp med ett fall som inte liknar något de sett tidigare.</p><p>Tillsammans ger de sig ut på ett riskfyllt äventyr, som tar dem långt utanför lagens gränser och in i en värld av oförklarliga fenomen.</p><p>Sverige 2022<br>Genre: Äventyr, Sci-fi<br>Regi: Crazy Pictires / Victor Danell<br>Skådespelare: Inez Torhaug, Jesper Barkselius, Eva Melander, Sara Shirpey, Oscar Töringe, Håkan Ehn, Isabelle Kyed, Mathias Lithner, Joakim Sällquist, Niklas Jönsson<br>Längd: 1h 55 min.<br>Original språk: svenska<br>Text: finska<br>F 12<br>Fritt inträde</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>",
                "en": "<p>The association UFO Sweden investigates super­ natural phenomena.</p><p>One day, teenage rebel Denise shows up with a case unlike anything they've seen before. Together they embark on a risky adventure, which takes them far beyond the law's borders and into a world of unexplained phenomena.</p><p>UFO SWEDEN is a story about ordinary people in an extraordinary adventure filled with tension, drama and action.</p><p>Sweden 2022<br>Genre: Adventure, Sci-fi<br>Director: Crazy Pictires / Victor Danell<br>Actors: Inez Torhaug, Jesper Barkselius, Eva Melander, Sara Shirpey, Oscar Töringe, Håkan Ehn, Isabelle Kyed, Mathias Lithner, Joakim Sällquist, Niklas Jönsson<br>Runtime: 1h 55 min. <br>Original Language: Swedish<br>Subtitles: Finnish<br>Age limit: 12<br>Free entry</p><p>Org. Finlandssvenskt filmcentrum in cooperation with Vuotalo</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61077/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60052",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "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:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4427,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:43.240951Z",
                    "last_modified_time": "2023-09-07T14:24:43.240972Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732383.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4427/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:42.859758Z",
            "last_modified_time": "2023-11-14T06:13:25.099619Z",
            "date_published": null,
            "start_time": "2023-10-18T14:00:00Z",
            "end_time": "2023-10-18T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kansantansseja elävän musiikin säestyksellä – Chile ja Espanja",
                "sv": "Folkdans till tonerna av livemusik – Chile och Spanien",
                "en": "Folk dances accompanied by live music – Chile and Spain"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Opi musiikkia äidinkielenä! Työpajassa voit opetella soittamaan tanssien taustalla tai tanssimaan itse.",
                "sv": "Lär dig musik som modersmål! I den här verkstaden får du lära dig att spela till dans eller själv dansa.",
                "en": "Learn music as your native language! In this workshop, you can either learn to play in the background of the dances or dance yourself."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/A291628F94C8E64EB56D326C52831594/Kansantansseja_elavan_musiikin_saestyksella",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A291628F94C8E64EB56D326C52831594/Folkdans_till_tonerna_av_livemusik_",
                "en": "http://www.caisa.fi/en/events/event/A291628F94C8E64EB56D326C52831594/Folk_dances_accompanied_by_live_music"
            },
            "description": {
                "fi": "<p>Opi musiikkia äidinkielenä! Työpajassa voit opetella soittamaan tanssien taustalla tai tanssimaan itse.</p><p>Kaikenlaiset soittimet ja tanssitaidot ovat tervetulleita. Et tarvitse muuta kuin soittimesi, äänesi ja kehosi!<br> <br>Aiempaa tanssikokemusta ei tarvita.<br> <br>Tapahtuman kesto: 2 t<br>Ikäsuositus: sopii kaikenikäisille<br>Ohjauskielet: englanti, portugali ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Lär dig musik som modersmål! I den här verkstaden får du lära dig att spela till dans eller själv dansa.</p><p>Alla instrument och dansfärdigheter är välkomna. Du behöver inget annat än ditt instrument, din röst och din kropp!</p><p>Ingen tidigare danserfarenhet behövs.</p><p>Längd: 2 t.<br>För alla åldrar<br>Språk: engelska, portugisiska, finska</p>",
                "en": "<p>Learn music as your native language! In this workshop, you can either learn to play in the background of the dances or dance yourself.</p><p>People with all kinds of instruments and dancing skills are welcome. All you need is your instrument, your voice and your body!</p><p>No prior experience in dance is required.</p><p>Duration: 2 hours<br>For all ages<br>Language of instuction: English, Portugese and Finnish</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60052/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61151",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "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:u4804001050",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-17T08:17:38.858157Z",
            "last_modified_time": "2023-11-14T06:13:25.020744Z",
            "date_published": null,
            "start_time": "2023-10-18T11:00:00Z",
            "end_time": "2023-10-18T11: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,
            "name": {
                "fi": "Tutustu Kekäläinen Companyn AVOIN Tila Esitykseen"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C29531E1C22801E0D6DB80AF9E8884F1/Tutustu_Kekalainen_Companyn_AVOIN_Tila_Esitykseen"
            },
            "description": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61151/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61090",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5177,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:37.311230Z",
                    "last_modified_time": "2023-10-09T13:30:37.311255Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736307.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5177/?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-10-09T13:30:37.166201Z",
            "last_modified_time": "2023-11-14T06:13:24.951565Z",
            "date_published": null,
            "start_time": "2023-10-18T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Syyslomaleffa: Ronja Rövardotter (7)",
                "sv": "Höstlovsbio: Ronja Rövardotter (7)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Ronjan syntymä oli yhtä suurta juhlaa. Salamat leimusivat ja ukkosen jylinä kiiri halki vuorten ja metsien.",
                "sv": "Den natt rövarhövdingen Mattis dotter Ronja föds drar ett väldigt oväder över Mattisskogen. Så otäckt är det att endast de grymma Vildvittrorna kan vistas ute."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DA2BB1DB498C9A8B313127E8AACFEA8B/Syyslomaleffa_Ronja_Rovardotter_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/DA2BB1DB498C9A8B313127E8AACFEA8B/Hostlovsbio_Ronja_Rovardotter_7_"
            },
            "description": {
                "fi": "<p>Ronjan syntymä oli yhtä suurta juhlaa. Salamat leimusivat ja ukkosen jylinä kiiri halki vuorten ja metsien.</p><p>Ryöväripäällikkö Mattis oli haljeta onnesta! Mattisin suku jatkuisi ja Ronjasta tulisi uusi ryöväripäällikkö. Niin hän ainakin luuli. Hän ei nimittäin tiennyt, että samana yönä syntyi toinenkin ryöväripäällikkö...</p><p>Maa: Ruotsi 1984<br>Genre: Koko perheen elokuva <br>Ohjaus: Tage Danielsson<br>Kesto n. 2 h ja 20 min.<br>Puhumme ruotsia<br>Tekstitys: ruotsi<br>Ikäsuositus alkaen 7 vuotta<br>Vapaa pääsy  <br>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa</p>",
                "sv": "<p>Den natt rövarhövdingen Mattis dotter Ronja föds drar ett väldigt oväder över Mattisskogen. Så otäckt är det att endast de grymma Vildvittrorna kan vistas ute.</p><p>Blixtarna korsar den becksvarta himlen – och plötsligt slår åskan ned och klyver den mäktiga Mattisborgen i två delar.</p><p>Trots sin dramatiska ankomst växer Ronja upp till en ganska fridsam liten rövarflicka. Men modig är hon och när hon blivit stor nog skickas hon ut i Mattisskogen för att lära känna alla faror som lurar där. Här finns grådvärgar och rumpnissar, den farliga älven och det hemska Djävulsgapet. Men den största faran känner inte ens Mattis till – i skogen finns också Birk, son till Mattis ärkefiende Borka… Och Mattis som trodde att Borkaätten var på väg att dö ut! Inte blir det bättre av att Borka och hans rövarband bosatt sig i den del av Mattisborgen som ligger på andra sidan Djävulsgapet. Den gamla fejden blossar upp igen, men till de båda hövdingarnas förtret vägrar barnen att delta. Istället blir de bästa vänner och när det upptäcks blir det omöjligt att bo kvar i borgen.</p><p>Ronja och Birk väljer att ge sig ut i Mattisskogen där de bor i en gammal björngrotta och lever på det naturen ger. Ännu är det sommar, men hur ska det gå när vintern kommer? Och hur ska Mattis överleva sorgen över att ha förlorat sin älskade Ronja? Kanske måste han till slut följa den kloke Skalle-Pers råd: att försonas med Borka. Mattis slits mellan sin längtan efter Ronja och sitt hat mot Borkaätten. Och Ronja, hon har ärvt sin fars envishet och ger inte vika för något.</p><p>Land: Sverige 1984<br>Genre: Familjefilm<br>Regi: Tage Danielsson <br>Längd: 2 h 20 min.<br>Språk: svenska<br>Text: svenska<br>Åldersrekommendation: 7 år<br>Fritt inträde<br>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61090/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60526",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4426,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:42.630207Z",
                    "last_modified_time": "2023-09-07T14:24:42.630229Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731290.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4426/?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-09-07T14:24:42.473830Z",
            "last_modified_time": "2023-11-14T06:13:24.878765Z",
            "date_published": null,
            "start_time": "2023-10-18T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Syyslomaleffa: Kaksin karkuteillä (7)",
                "sv": "Höstlovsfilm: Trassel (7)",
                "en": "Autumn holiday film: Tangled (7)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Valtakunnan etsityin ja hurmaavin varas Flynn Rider piiloutuu syrjäiseen torniin.",
                "sv": "Rikets mest eftersökta och charmanta tjuv Flynn Rider gömmer sig i ett ensamt torn, där han träffar Rapunzel, en vacker och ettrig flicka vars 20 meter långa, gyllene hårsvall ger henne magiska krafter.",
                "en": "Flynn Rider, the most wanted and charming thief in the kingdom, hides in a remote tower and meets Rapunzel, a beautiful and feisty girl with superpowers thanks to her 20-metre-long golden hair."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6DA981C5060E6A8B953275D72BCD1231/Syyslomaleffa_Kaksin_karkuteilla_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6DA981C5060E6A8B953275D72BCD1231/Hostlovsfilm_Trassel_7_",
                "en": "http://www.malmitalo.fi/en/events/event/6DA981C5060E6A8B953275D72BCD1231/Autumn_holiday_film_Tangled_7_"
            },
            "description": {
                "fi": "<p>Valtakunnan etsityin ja hurmaavin varas Flynn Rider piiloutuu syrjäiseen torniin.</p><p>Siellä hän tapaa Tähkäpään, kauniin ja kipakan tytön, jolla on 20-metristen kultaisten kutriensa ansiosta supervoimia.</p><p>Kesto: 100 min<br>Ikäraja: 7<br>Puhuttu suomeksi</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Rikets mest eftersökta och charmanta tjuv Flynn Rider gömmer sig i ett ensamt torn, där han träffar Rapunzel, en vacker och ettrig flicka vars 20 meter långa, gyllene hårsvall ger henne magiska krafter.</p><p>Längd: 100 min<br>Åldersgräns: 7<br>Språk: finska</p><p>Fritt inträde!</p>",
                "en": "<p>Flynn Rider, the most wanted and charming thief in the kingdom, hides in a remote tower and meets Rapunzel, a beautiful and feisty girl with superpowers thanks to her 20-metre-long golden hair.</p><p>Duration: 100 min<br>Age limit: 7<br>Language: Finnish</p><p>Free entry!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60526/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}