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=1158&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": 26825,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1159&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1157&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:59425",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "31,50€",
                        "sv": "31,50€",
                        "en": "31,50€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/topmost/",
                        "sv": "https://www.lippu.fi/artist/topmost/",
                        "en": "https://www.lippu.fi/artist/topmost/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4262,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:27.852679Z",
                    "last_modified_time": "2023-09-07T14:22:27.852708Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728158.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4262/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:27.261054Z",
            "last_modified_time": "2023-11-14T06:13:09.300458Z",
            "date_published": null,
            "start_time": "2023-09-21T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Vierivät kivet eivät vieläkään sammaloidu!</p><p>Kevään 2019 <i>Topmost 55 v Happy together</i> -konserttikiertue oli suurmenestys. Topmost esittäytyy vuoden 2019 loppuunmyytyjen konserttien <i>Happy Together</i> ja <i>Hold Me</i> innoittamana jälleen kaikille 60’s-musan diggareille ja ikuisesti uskollisille Topmost-faneille.</p><p>Koulupojista koostunut Topmost oli heti perustamisestaan lähtien kovaa vauhtia matkalla kohti Suomen popmaailman huippua. Vuonna 1967 Topmost oli Suomen suosituin nuorisoyhtye ja keikkamatkat ulottuivat myös ulkomaille, Ruotsiin ja Tanskaan saakka. Topmostin suosio perustui suurelta osin puhtaaseen yhteislaulantaan sekä rhythm and blues- ja soul-musiikin hallitsemiseen. Nuoret soittajat olivat myös tyttöjen mieleen, tätä edesauttoi huoliteltu pukeutuminen sillä esiintymisasut ostettiin Tukholman sen ajan huippuvaatekaupoista.</p><p>Yhtyeen levytyksistä <i>Merisairaat kasvot</i>, <i>Näen mustaa vain</i> ja <i>Hän sinut jättää</i> nousivat listoille ja saavuttivat suuren suosion. Koko Topmostin levytyshistoria löytyy vuonna 2012 julkaistulta albumilta Topmost Years. Albumi on kokoelma yhtyeen levytyksistä ja live-nauhoituksista 1960-luvulta. Topmostin tuorein single <i>Hold Me</i> on vuodelta 2019 se on tullut tutuksi mm. Happy Together ja Hold Me -kiertueilta.</p><p>Topmostin kokoonpanoon kuuluvat <b>Gugi Kokljuschkin</b> (laulu), <b>Harri Saksala</b> (laulu), <b>Kisu Jernström</b> (rummut ja laulu), <b>Holle Holopainen</b> (basso ja laulu), <b>Eero Lupari</b> (kitara ja laulu) ja <b>Tommi Lindell</b> (koskettimet v. 2004-). Yhtyeen alkuperäinen kosketinsoittaja <b>Arto ”Poku” Tarkkonen</b> menehtyi syksyllä 2007.</p><p>Esityksen kesto n. 2 tuntia, sisältäen väliajan.</p>",
                "sv": "<p>Topmost har blivit uppmuntrat av de slutsålda konserterna i 2019 och uppträder igen för alla som diggar 60-talsmusik och för evigt trogna Topmost-fans.</p><p>Topmost bestod av skolpojkar, och sedan det grundades gick det snabbt mot popeliten i Finland. I 1967 var Topmost Finlands populäraste ungdomsband och reste till gig även utomlands, till Sverige och Danmark.</p>",
                "en": "<p>Inspired by their sold-out concerts in 2019, Topmost is back to play for the lovers of 1960s music and the eternally loyal Topmost fans.</p><p>At the time of its founding, Topmost consisted of school boys. The band was immediately headed to the top of Finland’s pop world. In 1967, Topmost was Finland’s most popular youth group, and the band even toured all the way in Sweden and Denmark.</p>"
            },
            "short_description": {
                "fi": "Vierivät kivet eivät vieläkään sammaloidu!",
                "sv": "Topmost har blivit uppmuntrat av de slutsålda konserterna i 2019 och uppträder igen för alla som diggar 60-talsmusik och för evigt trogna Topmost-fans.",
                "en": "Inspired by their sold-out concerts in 2019, Topmost is back to play for the lovers of 1960s music and the eternally loyal Topmost fans."
            },
            "name": {
                "fi": "Topmost: Hold me & Love me | LOPPUUNMYYTY",
                "sv": "Topmost: Hold me & Love me | SLUTSÅLD",
                "en": "Topmost: Hold me & Love me | SOLD OUT"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F44A87866BB721AACDA94EBF0ABC16C1/Topmost_Hold_me_Love_me_LOPPUUNMYYTY",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F44A87866BB721AACDA94EBF0ABC16C1/Topmost_Hold_me_Love_me_SLUTSALD",
                "en": "http://www.malmitalo.fi/en/events/event/F44A87866BB721AACDA94EBF0ABC16C1/Topmost_Hold_me_Love_me_SOLD_OUT"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59425/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59879",
            "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: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: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": [],
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3409163/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3409163/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/stoa/hinterland-joutomaa-3409163/?affiliate=ADV"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4261,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:26.541949Z",
                    "last_modified_time": "2023-09-07T14:22:26.541970Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730825.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4261/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:25.760136Z",
            "last_modified_time": "2023-11-14T06:13:09.217344Z",
            "date_published": null,
            "start_time": "2023-09-21T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.</p><p>Hinterland on välähdys mielen joutomaasta – maisemasta, jonne varastoimme pitkät varjomme. Yhteisö sinnittelee tukalissa olosuhteissa ei-kenenkään-maalla, sokeina tekojensa seurauksille.<br> <br>Esitys edustaa miimin Corporeal Mime -tyyliä, jota Suomessa harvoin nähdään. Inspiraationa on ollut Samuel Beckettin toisen maailmansodan jälkeen kirjoittama tummanpuhuva novellituotanto.<br> <br>Kansainvälisesti palkittu Kauri Honkakoski Company tunnetaan tunnelmallisista fyysisen teatterin teoksista, joissa rikas kehollinen ilmaisu yhdistyy inhimillisiin teemoihin. Hinterlandissä esiintyy Companyn taitava kansainvälinen ensemble.</p><p>Lisätiedot: <u><a href=\"https://www.kaurihonkakoski.com\">www.kaurihonkakoski.com</u></a><br>Instagram: @kauri.honkakoski<br>Facebook: Kauri Honkakoski Company<br> <br>La 23.9. ja su 24.9. esitysten jälkeen järjestetään taiteilijatapaaminen.</p><p>Teos on sanaton.<br> <br>Ohjaus, dramaturgia: Kauri Honkakoski<br>Esiintyjät: Oona Jama, Sonja Järvisalo, Ines Kakkonen, Liv Meijer Nordgren, Ruben Nagore Santandreu, Freia Stenbäck, Valter Sui <br>Valosuunnittelu, lavastus: Sisu Nojonen<br>Äänisuunnittelu: Tuuli Kyttälä<br>Puvustus: Kauri Honkakoski, Liv Meijer Nordgren<br>Kuvat: Laura Vuoma<br>Traileri: Laura Vuoma, Kauri Honkakoski, Tuuli Kyttälä<br>Yhteistuotanto: Kauri Honkakoski Company & Stoa<br>Tukijat: Taiteen edistämiskeskus, Jenny & Antti Wihurin rahasto, Svenska kulturfonden, Nygréns stiftelse, Föreningen Konstsamfundet, Suomalais-ruotsalainen kulttuurirahasto, Pohjoismainen kulttuuripiste, Per Jonsson Dance Centre, Vantaan tanssiopisto<br> <br>Liput 20/15 €<br>Kesto 50 min<br>Ikäsuositus 12+</p>",
                "sv": "<p>En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.</p><p>Hinterland är en glimt av sinnets impediment – ett landskap där vi lagrar våra långa skuggor. Gemenskapen hankar sig fram i obekväma förhållanden i ingenmansland, blinda för följderna av sina gärningar.</p><p>Föreställningen representerar stilen Corporeal Mime, som vi sällan ser i Finland. Inspirationen har varit Samuel Becketts mörka novellproduktion som han skrev efter andra världskriget.<br>Internationellt prisade Kauri Honkakoski Company känns igen på sina stämningsfulla verk av fysisk teater, där ett rikt kroppsligt uttryck förenas med mänskliga teman.  I Hinterland uppträder Companys begåvade internationella ensemble.</p><p>Verket är ordlöst.</p><p><u><a href=\"https://www.kaurihonkakoski.com\">www.kaurihonkakoski.com</u></a><br>Instagram: @kauri.honkakoski<br>Facebook: Kauri Honkakoski Company</p>",
                "en": "<p>A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows.</p><p>A community perseveres under dire circumstances on no man’s land, blind to the consequences of its own actions. A show emerging from our time but created in a timeless style, Hinterland explores painful collective themes in tragicomical tones.<br> <br>The show was created through the art of Corporeal Mime, a form of physical theatre rarely seen in Finland. The starting point was a collection of sombre short stories by Samuel Beckett written immediately after the Second World War. <br> <br>Kauri Honkakoski Company is an internationally awarded physical theatre group. They are known for their atmospheric shows that combine rich physical expression with deep human themes. Hinterland features the Company’s talented international ensemble.</p><p><u><a href=\"https://www.kaurihonkakoski.com\">www.kaurihonkakoski.com</u></a><br>Instagram: @kauri.honkakoski<br>Facebook: Kauri Honkakoski Company</p><p>LANGUAGE: non-verbal<br>LENGTH: 50 min<br>AGE RECOMMENDATION: 12 yrs +<br>GENRE: physical theatre, dance theatre</p><p>ARTISTIC TEAM:<br>Director, dramaturg: Kauri Honkakoski<br>Performers: Oona Jama, Sonja Järvisalo, Ines Kakkonen, Liv Meijer Nordgren, Ruben Nagore Santandreu, Freia Stenbäck, Valter Sui <br>Lighting design, set design: Sisu Nojonen<br>Sound design: Tuuli Kyttälä<br>Costume: Kauri Honkakoski, Liv Meijer Nordgren<br>Photos: Laura Vuoma<br>Trailer: Laura Vuoma, Kauri Honkakoski, Tuuli Kyttälä<br>Co-production: Kauri Honkakoski Company & Cultural Centre Stoa<br> <br>Supporters: Arts Promotion Centre Finland, Jenny and Antti Wihuri Foundation, The Swedish Cultural Foundation in Finland, Nygréns stiftelse, Föreningen Konstsamfundet, Suomalais-ruotsalainen kulttuurirahasto, Nordic Culture Point, Per Jonsson Dance Centre, Vantaan tanssiopisto</p><p>MORE INFO and SOCIAL MEDIA: <br>Homepage: www.kaurihonkakoski.com<br>Instagram: @kauri.honkakoski<br>Facebook: Kauri Honkakoski Company</p>"
            },
            "short_description": {
                "fi": "Ajastamme nouseva, tyyliltään ajaton fyysisen teatterin esitys, joka käsittelee kipeitä kollektiivisia aiheita tragikoomisin sävyin.",
                "sv": "En fysisk teaterföreställning som springer ur tiden, har en tidlös stil och behandlar smärtsamma kollektiva ämnen med tragikomiska toner.",
                "en": "A glimpse of the wasteland of our minds - the landscape where we like to store our long shadows."
            },
            "name": {
                "fi": "Kauri Honkakoski Company: HINTERLAND [joutomaa]",
                "sv": "Kauri Honkakoski Company: HINTERLAND [ödemark]",
                "en": "Kauri Honkakoski Company: HINTERLAND"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/30BA0CD718C8919BE3375A67B3716957/Kauri_Honkakoski_Company_HINTERLAND_joutomaa_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/30BA0CD718C8919BE3375A67B3716957/Kauri_Honkakoski_Company_HINTERLAND_odemark_",
                "en": "http://www.stoa.fi/en/events/event/30BA0CD718C8919BE3375A67B3716957/Kauri_Honkakoski_Company_HINTERLAND_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59879/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60916",
            "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: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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "info_url": {
                        "fi": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca03f4b4c5350038b4567",
                        "en": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca03f4b4c5350038b4567"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4260,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:25.319605Z",
                    "last_modified_time": "2023-09-07T14:22:25.319629Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737012.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4260/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:25.154692Z",
            "last_modified_time": "2023-11-14T06:13:09.139416Z",
            "date_published": null,
            "start_time": "2023-09-21T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Lontoolainen virkamies Williams (Oscar-ehdokkuuden roolistaan saanut Bill Nighy) sairastuu parantumattomasti. Pölyyntyvät asiakirjapinot saavat jäädä, kun Williams selvittää, mitä tarkoittikaan olla elossa. Perheessä asioista on oltu hiljaa, ja myös epäselvä syyllisyys kalvaa, joten sairaudesta kertominen pojalle ei onnistu.</p><p>Oppaaksi elämään löytyvät kuitenkin kirjailijanrenttu Sutherland (Tom Burke, The Souvenir) ja kunnantalon elämäniloinen neiti Harris (Aimee Lou Wood; Sex Education). Myös toimiston tulokas herra Wakeling (Alex Sharp) saa Williamsin ajattelemaan asioita uudelleen.</p><p>Lopulta kunnantalon hierarkiaa ikänsä kunnioittanut Williams tietää, mitä haluaa. Hän poikkeaa byrokraattien kohteliaasta tavasta välttää vastuuta saadakseen rauhan.</p><p>Eteläafrikkalaisen Oliver Hermanusin uudelleenohjaus Kurosawan Tolstoi-sovituksesta Ikiru (1952) kylpee ihastuttavissa 50-luvun väreissä. Käsikirjoittaja on Nobel-voittaja Kazuo Ishiguro.</p><p>Hermanusin pääasiana ei tällä kertaa ole ahdistavien normien kuvaus vaan ylistys kunnollisuudelle. Silti teeman voi nähdä samana kuin ohjaajan Cannesissa Queer Palmin voittaneessa Beautyssa (2011). Paikkansa löytänyt yksilö onkin kyvytön elämään haluamaansa elämää.</p><p>Justus Pitkänen</p><p>Teema: Lifestyle<br>Maa: Japani, Ruotsi<br>Ohjaus: Oliver Hermanus<br>Käsikirjoitus: Kazuo Ishiguro<br>Näyttelijät: Bill Nighy, Aimee Lou Wood, Alex Sharp, Tom Burke, Adrian Rawlins, Oliver Chris, Michael Cochrane<br>Tuotanto: Elizabeth Karlsen, Stephen Woolley / Film4, Number 9 Films, County Hall<br>Kesto: 102 min<br>Ikäraja: S<br>Kieli: englanti<br>Levittäjä: Park Circus<br>Esityskopio: Park Circus<br>Kuvaus: Jamie Ramsay<br>Leikkaus: Chris Wyatt<br>Musiikki: Emilie Levienaise-Farrouch<br>Äänisuunnittelu: Stephen Griffiths, Andy Shelley<br>Lavastus: Helen Scott<br>Pukusuunnittelu: Ashleigh Lennox, Sinead Smith, Kate-Beth Walling<br>Maskeeraus: Carolyn Cousins, Nadia Stacey</p>",
                "en": "<p>Exquisitely directed by Oliver Hermanus from a spare, elegant script by the Nobel Prize-winning novelist Kazuo Ishiguro, the movie is a faithful English-language reimagining of Ikiru, Akira Kurosawa’s 1952 film about a Tokyo widower who receives a terminal stomach-cancer diagnosis and turns over a startling new leaf.</p><p>Justin Chang, Los Angeles Times</p><p>The terrible conversation in the hospital consulting room – that final rite of passage – is the starting point for this deeply felt, beautifully acted movie from screenwriter Kazuo Ishiguro and director Oliver Hermanus: a remake of Akira Kurosawa’s 1952 film Ikiru, or To Live.</p><p>A buttoned-up civil servant works joylessly in the town planning department; he is a lonely widower estranged from his grasping son and daughter-in-law. In the original, he was Mr Watanabe, played by Takashi Shimura. Now he is Mr Williams, played by Bill Nighy. (…)</p><p>Nighy is heartbreakingly shy and sensitive, his refined, almost birdlike profile presented to the camera in occasional stark and enigmatic closeups. This is a man who has had to suppress a natural wit and affectionate raillery all his life in the service of a dull job which meant nothing.</p><p>Peter Bradshaw, The Guardian</p><p>Theme: Lifestyle<br>Country: Japan, Sweden<br>Director: Oliver Hermanus<br>Screenplay: Kazuo Ishiguro<br>Starring: Bill Nighy, Aimee Lou Wood, Alex Sharp, Tom Burke, Adrian Rawlins, Oliver Chris, Michael Cochrane<br>Production: Elizabeth Karlsen, Stephen Woolley / Film4, Number 9 Films, County Hall<br>Duration: 102 min<br>Age limit: S<br>Language: English<br>Distribution: Park Circus<br>Print source: Park Circus<br>Cinematography: Jamie Ramsay<br>Editing: Chris Wyatt<br>Music: Emilie Levienaise-Farrouch<br>Sound: Stephen Griffiths, Andy Shelley<br>Production design: Helen Scott<br>Costume design: Ashleigh Lennox, Sinead Smith, Kate-Beth Walling<br>Make-up: Carolyn Cousins, Nadia Stacey</p>"
            },
            "short_description": {
                "fi": "Lontoolainen virkamies Williams (Oscar-ehdokkuuden roolistaan saanut Bill Nighy) sairastuu parantumattomasti. Pölyyntyvät asiakirjapinot saavat jäädä, kun Williams selvittää, mitä tarkoittikaan olla elossa. Perheessä asioista on oltu hiljaa, ja myös epäselvä syyllisyys kalvaa, joten sairaudesta kertominen pojalle ei onnistu."
            },
            "name": {
                "fi": "Living (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Living (2022) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9E81A584A51880C83D2292B5EB38F2D7/Living_2022_",
                "en": "http://www.savoyteatteri.fi/en/events/event/9E81A584A51880C83D2292B5EB38F2D7/Living_2022_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60916/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60352",
            "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: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: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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-17457072",
                        "sv": "https://www.lippu.fi/event/name-17457072",
                        "en": "https://www.lippu.fi/event/name-17457072"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4259,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:24.912425Z",
                    "last_modified_time": "2023-09-07T14:22:24.912446Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731331.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4259/?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:22:24.766116Z",
            "last_modified_time": "2023-11-14T06:13:09.059274Z",
            "date_published": null,
            "start_time": "2023-09-21T15: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,
            "description": {
                "fi": "<p>Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.</p><p>Nuorille suunnatussa teoksessa neljä katutanssitaustaista esiintyjää kohtaavat näyttämöllä. Yksinkertaisesta lähtökohdasta rakentuu rikas kokonaisuus, jossa kohtaukset rakentuvat katsojien silmien edessä. Moninaisista taustoista tulevat esiintyjät tanssivat, kertovat tarinoita ja pitävät hauskaa – yhdessä. Tällä näyttämöllä monenlaisille tarinoille on tilaa.</p><p><i>Something like this</i> tekee näyttämöstä tanssilattian, jossa moninaiset tarinat, identiteetit ja tekemisen tavat voivat kohdata. Teos kysyy yhdessä katsojien kanssa: Miten esitys tulisi katsoa tai kokea, miten tanssi tai liike siirtyy kehosta toiseen, millaisia asioita tanssilla tai liikkeellä voi kertoa? Millainen on yhteisöllinen dramaturgia? <br> <br>Työryhmä: <br>Konsepti ja ohjaus: Sonya Lindfors <br>Koreografia: Sonya Lindfors & työryhmä<br>Äänisuunnittelu: Sebastian Kurtén<br>Valosuunnittelu: Erno Aaltonen<br>Esiintyjät: Akim Bakhtaoui, Linda Ilves, Ramona Panula ja Sophia Wekesa<br>Tuotanto: Zodiak – Uuden tanssin keskus <br>Esitys ja kiertue toteutetaan Jane ja Aatos Erkon säätiön tuella, osana Zodiak-nuoret-hanketta</p><p>Kohderyhmä: 13-vuotiaista / 7. lk ylöspäin<br>Esityksen kesto: noin 40 minuuttia</p><p>21.9. klo 13 ja 22.9. klo 9.30 opiskelijanäytöksiin ilmoittautuminen osoitteessa kultus.fi.</p><p>21.9. klo 18 liput myynnissä lippu.fi hintaan 15/11 €</p>",
                "sv": "<p>Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>",
                "en": "<p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>"
            },
            "short_description": {
                "fi": "Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.",
                "sv": "Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.",
                "en": "Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality."
            },
            "name": {
                "fi": "Zodiak-nuoret: Something like this",
                "sv": "Zodiak-unga: Something like this",
                "en": "Zodiak Youth: Something Like This"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6D1221700F9EAD1F037E3DE3BB7DFFAD/Zodiak-nuoret_Something_like_this_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6D1221700F9EAD1F037E3DE3BB7DFFAD/Zodiak-unga_Something_like_this_",
                "en": "http://www.vuotalo.fi/en/events/event/6D1221700F9EAD1F037E3DE3BB7DFFAD/Zodiak_Youth_Something_Like_This_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60352/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60410",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "14 €",
                        "sv": "14 €",
                        "en": "14 €"
                    },
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4258,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:24.512394Z",
                    "last_modified_time": "2023-09-07T14:22:24.512419Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732130.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4258/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:24.357133Z",
            "last_modified_time": "2023-11-14T06:13:08.970612Z",
            "date_published": null,
            "start_time": "2023-09-21T12:30:00Z",
            "end_time": "2023-09-21T15: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,
            "description": {
                "fi": "<p>Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.</p><p>Esimerkiksi kyyhkyä on pidetty uskollisuuden ja romanttisen rakkauden symbolina sen pitkän parisiteen takia, minkä perusteella avioliittoa ja ydinperhettä on pidetty luonnollisina. Miksi vaikkapa lutkamaista rautiaista ei pidetä polyamorian symbolina tai kalalokkia lesbouden?</p><p>Queer-linturetkellä katsotaan ja kuunnellaan lähiluonnossa esiintyviä lintuja ja perehdytään siihen, miten läpikotaisesti yleiset käsitykset \"luonnollisesta\" ja katsomisen tavat ovat rakentuneet cis- ja heteronormien ympärille. Oppaana toimii Camille Auer.</p><p>Kurssi järjestetään yhteistyössä Helsingin työväenopiston, Baltic Circle -teatterifestivaalin ja Kanneltalon kanssa.</p><p>Linturetket ovat osa työväenopiston kurssitarjontaa ja niille ilmoittaudutaan osoitteessa https://www.ilmonet.fi. Ilmoittautuminen avautuu myöhemmin. Löydät kunkin retken seuraavien kurssitunnisteiden avulla:</p><p>H235444 Töölönlahti, ke 13.9. klo 7.30–10, kurssimaksu 14 €<br>H235445 Vanhankaupunginlahti, to 14.9. klo 16.30–19, kurssimaksu 14 €<br>H235446 Vanhankaupunginlahti, ke 20.9. klo 8–10.30, kurssimaksu 14 €<br>H235447 Mätäjoki, to 21.9. klo 15.30–18, kurssimaksu 14 €</p><p><b>Camille Auer</b> on monialainen taiteilija ja kirjoittaja. Tällä hetkellä hän tutkii lintujen tarkkailun fenomenologiaa sekä cis- ja heteronormien vaikutusta lintuja koskevan tiedon tuottamisessa. Hän näkee esimerkiksi liikkuvan kuvan, äänen ja esityksen keinoilla tapahtuvan toiminnan teoreettisen ajattelun muotoina siinä missä tekstinkin. Auerin tuotantoa yhdistää toiseuden ja toiseuttamisen tutkiminen suhteessa itseen posthumanistisesta trans- ja queer-näkökulmasta. Auerin työskentelyä tukee Suomen kulttuurirahasto.</p><p>Retki on osa Camille Auerin esityksen Ruff Knowledge taustatyötä. Ruff Knowledge esitetään 22., 24. ja 25. marraskuuta Kanneltalossa osana kansainvälisen Baltic Circle -teatterifestivaalin ohjelmistoa.</p>",
                "sv": "<p>Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.</p><p>Under Queer-fågelpromenaden tittar och lyssnar vi på fåglar i den närliggande naturen och sätter oss in i hur ingående allmänna uppfattningar av ”naturligt” och att se på saker har byggts upp kring cis- och heteronormer. Camille Auer är vår guide.</p><p>Kursen ordnas i samarbete med Helsingfors medborgarinstitut, teaterfestivalen Baltic Circle och Gamlasgården.</p><p>Camille Auer är en mångsidig konstnär och författare. För närvarande forskar hon i fågelskådningens fenomenologi samt cis- och heteronormernas inverkan på produktionen av information gällande fåglar. Utflykten är en del av bakgrundsarbetet till Auers föreställning Ruff Knowledge. Ruff Knowledge visas 22, 24 och 25 november i Gamlasgården som en del av programmet för den internationella teaterfestivalen Baltic Circle.</p><p>Registrering via https://www.ilmonet.fi:<br>H235444 Töölönlahti, Wed 13. Sept 7.30–10, 14 €<br>H235445 Vanhankaupunginlahti, Thu 14 Sept 16.30–19, 14 €<br>H235446 Vanhankaupunginlahti, Wed 20 Sept 8–10.30, 14 €<br>H235447 Mätäjoki, Thu 21 Sept 15.30–18, 14 €</p>",
                "en": "<p>People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values.</p><p>For example, the dove has been considered a symbol of loyalty and romantic love because of its long-lasting pair bonds, on the basis of which marriage and the nuclear family have been seen as natural. Why then haven’t people considered the slutty dunnock a symbol of polyamory, or the seagull of lesbianism? On the Queer Bird Walk, you will observe and listen to the birds in the nearby nature and get to know how the general concepts of “natural” and ways of looking are built around cis and hetero norms. Your guide on the trip is Camille Auer.</p><p>Registration via https://www.ilmonet.fi:<br>H235444 Tölöviken, ons. 13.9 kl. 7.30–10, kursavgift 14 euro<br>H235445 Gammelstadsviken, tors. 14.9 kl. 16.30–19, kursavgift 14 euro<br>H235446 Gammelstadsviken, ons. 20.9 kl. 8–10.30, kursavgift 14 euro<br>H235447 Rutiån, tors. 21.9 kl. 15.30–18, kursavgift 14 euro</p><p>Camille Auer is a trans-disciplinary artist and writer. Her art practice has always been theory driven, but instead of illustrating existing theories, she uses forms ranging from sound, moving image, performance and text-based installations to contribute to theoretical discourse as modes of thinking in their own right. A common theme in her diverse body of work is the othering of trans and nonhuman bodies, such as herself or queer birds. Her work has been shown and published in The Finnish Museum of Photography (Helsinki), Wäinö Aaltonen Museum (Turku) and Atlas Arts (Skye, Scotland) among others. Her work is currently supported by the Finnish Cultural Foundation.</p>"
            },
            "short_description": {
                "fi": "Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.",
                "sv": "Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.",
                "en": "People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values."
            },
            "name": {
                "fi": "Queer-lintukävelyt",
                "sv": "Queer-fågelpromenader",
                "en": "Queer Bird Walk"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8321F40C63DC277E7448E541C67F497E/Queer-lintukavelyt",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8321F40C63DC277E7448E541C67F497E/Queer-fagelpromenader",
                "en": "http://www.kanneltalo.fi/en/events/event/8321F40C63DC277E7448E541C67F497E/Queer_Bird_Walk"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60410/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60923",
            "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: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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4257,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:23.829675Z",
                    "last_modified_time": "2023-09-07T14:22:23.829705Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737047.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4257/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:23.350372Z",
            "last_modified_time": "2023-11-14T06:13:08.885740Z",
            "date_published": null,
            "start_time": "2023-09-21T10: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,
            "description": {
                "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Italialainen ilmalaivainsinööri Umberto Nobile nauttii rauhallisesta elämästä rakkaan koiransa Titinan kanssa, jonka hän pelasti Rooman kaduilta.</p><p>Eräänä päivänä norjalainen tutkimusmatkailun supertähti Roald Amundsen ottaa yhteyttä ja tilaa ilmalaivan valloittamaan Pohjoisnavan.</p><p>Nobile tarttuu tilaisuuteen jäädä historiaan. Hän ottaa Titinan mukaansa, ja erikoinen kolmikko lähtee tutkimusmatkalle viimeiseen löytämättömään paikkaan maapallolla.</p><p>Tositarina menestyksestä ja tappioista nelijalkaisen Titinan silmin.</p><p>Black Lion Pictures</p><p>Teema: Pulpettikino<br>Maa: Belgia, Norja<br>Ohjaus: Kajsa Næss<br>Käsikirjoitus: Kajsa Næss, Per Schreiner<br>Näyttelijät: Jan Gunnar Røise, Kåre Conradi, Silje Torp, Nader Khademi<br>Tuotanto: Lise Fearnley, Tonje Skar Reiersen, Viviane Vanfleteren / Mikrofilm, Vivi Film<br>Kesto: 91 min<br>Ikäraja: S<br>Alkup. nimi: Titina<br>Kieli: ruotsi, suomi<br>Levittäjä: Black Lion Pictures<br>Esityskopio: Black Lion Pictures<br>Kuvaus: Cecilie Semec<br>Leikkaus: Anders Bergland, Jens Christian Fodstad, Zaklina Stojcevska<br>Musiikki: Kåre Vestrheim<br>Äänisuunnittelu: Gisle Tveito<br>Lavastus: Emma McCann</p>",
                "en": "<p>Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups.</p><p>Italian airship engineer Umberto Nobile enjoys a quiet life with his beloved dog Titina, who charmed him into rescuing her from the streets of Rome.</p><p>One day, Norwegian explorer superstar Roald Amundsen contacts him and orders an airship to conquer The North Pole.</p><p>Nobile seizes the opportunity to go down in history. He brings Titina along, and the unlikely trio sets out on an expedition to the last undiscovered place on Earth. Their quest is successful but, in the aftermath, the two men start to quarrel over the glory…</p><p>Through the eyes of the four-legged celebrity Titina, (re)discover a true story of triumph and defeat!</p><p>Production notes</p><p>Theme: School Kino Selection<br>Country: Belgium, Norway<br>Director: Kajsa Næss<br>Screenplay: Kajsa Næss, Per Schreiner<br>Starring: Jan Gunnar Røise, Kåre Conradi, Silje Torp, Nader Khademi<br>Production: Lise Fearnley, Tonje Skar Reiersen, Viviane Vanfleteren / Mikrofilm, Vivi Film<br>Duration: 91 min<br>Age limit: S<br>Orig. title: Titina<br>Language: Swedish, Finnish<br>Distribution: Black Lion Pictures<br>Print source: Black Lion Pictures<br>Cinematography: Cecilie Semec<br>Editing: Anders Bergland, Jens Christian Fodstad, Zaklina Stojcevska<br>Music: Kåre Vestrheim<br>Sound: Gisle Tveito<br>Production design: Emma McCann</p>"
            },
            "short_description": {
                "fi": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.",
                "en": "Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups."
            },
            "name": {
                "fi": "Titina-terrieri Pohjoisnavalla (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Titina-terrieri Pohjoisnavalla (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0AD480865AA2D80BF1FFD32803D45ABA/Titina-terrieri_Pohjoisnavalla_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/0AD480865AA2D80BF1FFD32803D45ABA/Titina-terrieri_Pohjoisnavalla_2023_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60923/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60353",
            "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: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: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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4256,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:22.426915Z",
                    "last_modified_time": "2023-09-07T14:22:22.426934Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733546.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4256/?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:22:22.147782Z",
            "last_modified_time": "2023-11-14T06:13:08.795632Z",
            "date_published": null,
            "start_time": "2023-09-21T10: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,
            "description": {
                "fi": "<p>Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.</p><p>Nuorille suunnatussa teoksessa neljä katutanssitaustaista esiintyjää kohtaavat näyttämöllä. Yksinkertaisesta lähtökohdasta rakentuu rikas kokonaisuus, jossa kohtaukset rakentuvat katsojien silmien edessä. Moninaisista taustoista tulevat esiintyjät tanssivat, kertovat tarinoita ja pitävät hauskaa – yhdessä. Tällä näyttämöllä monenlaisille tarinoille on tilaa.</p><p>Something like this tekee näyttämöstä tanssilattian, jossa moninaiset tarinat, identiteetit ja tekemisen tavat voivat kohdata. Teos kysyy yhdessä katsojien kanssa: Miten esitys tulisi katsoa tai kokea, miten tanssi tai liike siirtyy kehosta toiseen, millaisia asioita tanssilla tai liikkeellä voi kertoa? Millainen on yhteisöllinen dramaturgia? <br> <br>Työryhmä: <br>Konsepti ja ohjaus: Sonya Lindfors <br>Koreografia: Sonya Lindfors & työryhmä<br>Äänisuunnittelu: Sebastian Kurtén<br>Valosuunnittelu: Erno Aaltonen<br>Esiintyjät: Akim Bakhtaoui, Linda Ilves, Ramona Panula ja Sophia Wekesa<br>Tuotanto: Zodiak – Uuden tanssin keskus <br>Esitys ja kiertue toteutetaan Jane ja Aatos Erkon säätiön tuella, osana Zodiak-nuoret-hanketta</p><p>Kohderyhmä: 13-vuotiaista / 7.lk ylöspäin<br>Esityksen kesto: noin 40 minuuttia</p><p>21.9. klo 13 ja 22.9. klo 9.30 opiskelijanäytöksiin ilmoittautuminen osoitteessa kultus.fi.</p>",
                "sv": "<p>Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>",
                "en": "<p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p><p>Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality.</p>"
            },
            "short_description": {
                "fi": "Esityksessä tarkastellaan näyttämön ja samalla hiphop -kulttuurin mahdollisuutta toimia alustana moninaisten tarinoiden kertomiselle, tilan haltuun ottamiselle, voimaantumiselle ja yhteisöllisyydelle.",
                "sv": "Under föreställningen granskas scenens och samtidigt hiphopkulturens möjlighet att fungera som plattform för att berätta många slags berättelser, ta kontroll över utrymmet, bli stärkt och social gemenskap.",
                "en": "Something Like This is a performance that looks at the possibilities of the stage and hip-hop culture to serve as a platform for telling diverse stories, taking over space, empowerment and communality."
            },
            "name": {
                "fi": "Zodiak-nuoret: Something like this",
                "sv": "Zodiak-unga: Something like this",
                "en": "Zodiak Youth: Something Like This"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8292700EA1F6F5868E14906BB0839D5F/Zodiak-nuoret_Something_like_this_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8292700EA1F6F5868E14906BB0839D5F/Zodiak-unga_Something_like_this_",
                "en": "http://www.vuotalo.fi/en/events/event/8292700EA1F6F5868E14906BB0839D5F/Zodiak_Youth_Something_Like_This_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60353/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60468",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4255,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:21.935068Z",
                    "last_modified_time": "2023-09-07T14:22:21.935086Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725255.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4255/?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:22:21.785603Z",
            "last_modified_time": "2023-11-14T06:13:08.707662Z",
            "date_published": null,
            "start_time": "2023-09-21T07:00:00Z",
            "end_time": "2023-09-21T09: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,
            "description": {
                "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "short_description": {
                "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "name": {
                "fi": "Taidetta taaperoille – Open Art Studio for Toddlers",
                "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (",
                "en": "Taidetta taaperoille – Open Art Studio for Toddlers"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/73EB1596180216A3A565DC4E4A297E5B/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers",
                "sv": "http://www.caisa.fi/sv/evenemang/event/73EB1596180216A3A565DC4E4A297E5B/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_",
                "en": "http://www.caisa.fi/en/events/event/73EB1596180216A3A565DC4E4A297E5B/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60468/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60422",
            "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:105/?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: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"
                },
                {
                    "@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": [],
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/unelmien-puutarha-3475732/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/eventseries/unelmien-puutarha-3475732/?affiliate=ADV",
                        "en": "https://www.lippu.fi/eventseries/unelmien-puutarha-3475732/?affiliate=ADV"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4254,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:21.550666Z",
                    "last_modified_time": "2023-09-07T14:22:21.550694Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734739.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4254/?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:22:21.394951Z",
            "last_modified_time": "2023-11-14T06:13:08.607821Z",
            "date_published": null,
            "start_time": "2023-09-21T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Unelmien puutarha on lastenteatteriesitys unelmoinnista ja haaveista, omaan itseen uskomisesta ja omannäköisen elämän elämisestä.</p><p>Tanssia, teatteria ja klovneriaa sisältävä lastenteatteriesitys herää henkiin musiikin, vahvan visuaalisen ilmeen ja yleisökontaktin kautta. <br>  <br>Unelmien puutarha vie katsojan matkalle paikkaan, jossa on lupa olla aivan oma itsensä ja sanoa ääneen omat unelmansa. Kuten puutarhan kauniita kukkia, myös unelmia pitää hoitaa, helliä sekä ravita ja niihin pitää uskoa, jotta ne kasvavat ja puhkeavat kukkaan.</p><p>Hyvästä hoidosta huolimatta osa unelmista kuihtuu pois ja niiden tilalle kasvaa jotain uutta, erilaista. Joskus unelmiemme puutarhaan voi myös eksyä yllättävä vieras, tuntematon siemen, josta voikin kasvaa jotain, mistä emme osanneet edes unelmoida. Jotain vielä ihanampaa! <br>  <br>Unelmien puutarha kutsuu katsojansa unelmoimaan ja leikkimään mielikuvituksellaan. Esitys saa inspiraatiota puutarhojen värikylläisyydestä, yllätyksellisyydestä ja kauneudesta. Teos luodaan aktiivisessa yhteistyössä päiväkotilasten kanssa. <br> <br>Esityksen jälkeen järjestetään osallistava työpaja. Työpaja mahdollistaa esityksessä käsiteltyjen teemojen parissa työskentelyn heti esityksen jälkeen. Työpaja on tarkoitettu esityksen katsoneille 3–6-vuotiaille lapsille. Lapsi osallistuu työpajaan yhdessä oman aikuisen kanssa. Työpajassa käsitellään liikkeen ja kehollisen lähestymistavan avulla paikkaa, jossa on lupa olla aivan oma itsensä ja sanoa ääneen omat unelmansa. Työpajan ohjaavat Minttu-Maaria Makkonen ja Marjukka Myllyntaus.</p><p>Työpajan kesto 30 min, paikkoja rajoitetusti. Työpaja on maksuton ja voit valita työpajaosion sisältävän pääsylipun lippu.fi-sivulta.<br>   <br>Työryhmä <br>Esiintyjät: Minttu-Maaria Makkonen, Marjukka Myllyntaus ja Veera Pulkkinen <br>Käsikirjoitus ja ohjaus: Makkonen, Myllyntaus, Pulkkinen <br>Musiikki ja laulu: Veera Pulkkinen <br>Visuaalinen suunnittelu ja toteutus: Ines Masanti <br>Valosuunnittelu: Aku Lahti <br>Tuottaja: Marjukka Myllyntaus <br>  <br>Kesto: max 45 min <br>Ikäsuositus: 3+ vuotta <br>Kieli: suomi, sanaton<br>Liput: 6 €, lippu.fi</p>",
                "sv": "<p>Drömmarnas trädgård är en barnteaterföreställning om drömmande och önsketänkande, att tro på sig själv och att leva ett liv såsom man vill att det ska se ut.</p><p>Denna barnteaterföreställning, som innehåller dans, teater och clowneri, väcks till liv via musik, stark visualitet och publikkontakt.</p><p>Efter föreställningen ordnas en inkluderande verkstad. Verkstaden möjliggör arbete med temana som behandlats under föreställningen genast efter föreställningen. Verkstaden är avsedd för 3–6-åriga barn som sett föreställningen. Barnet deltar i verkstaden tillsammans med en egen vuxen.</p><p>Verkstaden varar i 30 minuter, det finns begränsat antal platser. Verkstaden är avgiftsfri och du kan välja en inträdesbiljett med verkstad via webbplatsen lippu.fi.</p>",
                "en": "<p>Garden of Dreams is a children’s theatre performance about dreams and fantasies, belief in oneself and living a life of one’s own.</p><p>This children’s theatre performance, which includes dance, theatre and clownery, is brought to life through music, strong visuals and interaction with the audience.</p><p>The performance is followed by a participatory workshop. The workshop allows the audience to work on the themes explored in the performance immediately after it. The workshop is intended for children aged 3–6 who watched the performance. The child participates in the workshop with their accompanying adult.</p><p>The workshop lasts for 30 minutes, and the number of participants is limited. The workshop is free of charge, and you may purchase a ticket including the admission to the workshop on the lippu.fi website.</p>"
            },
            "short_description": {
                "fi": "Unelmien puutarha on lastenteatteriesitys unelmoinnista ja haaveista, omaan itseen uskomisesta ja omannäköisen elämän elämisestä.",
                "sv": "Drömmarnas trädgård är en barnteaterföreställning om drömmande och önsketänkande, att tro på sig själv och att leva ett liv såsom man vill att det ska se ut.",
                "en": "Garden of Dreams is a children’s theatre performance about dreams and fantasies, belief in oneself and living a life of one’s own."
            },
            "name": {
                "fi": "Unelmien puutarha | LOPPUUNVARATTU – Esitys päiväkotiryhmille",
                "sv": "Drömmarnas trädgård | FULLBOKAT",
                "en": "Garden of Dreams | FULLY BOOKED"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/474F10810714CFF4CEFC5B039EE1F051/Unelmien_puutarha_LOPPUUNVARATTU",
                "sv": "http://www.caisa.fi/sv/evenemang/event/474F10810714CFF4CEFC5B039EE1F051/Drommarnas_tradgard_FULLBOKAT",
                "en": "http://www.caisa.fi/en/events/event/474F10810714CFF4CEFC5B039EE1F051/Garden_of_Dreams_FULLY_BOOKED"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60422/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60924",
            "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: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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4253,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:21.161108Z",
                    "last_modified_time": "2023-09-07T14:22:21.161139Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737050.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4253/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:20.555511Z",
            "last_modified_time": "2023-11-14T06:13:08.520126Z",
            "date_published": null,
            "start_time": "2023-09-21T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Supermarsu 2 on Paula Norosen suosittuun kirjasarjaan pohjautuva uuden ajan supersankarielokuva, joka sisältää animaatiota ja tehosteita. Elokuva on jatkoa Supermarsulle, joka oli vuonna 2018 yksi vuoden katsotuimpia elokuvia.</p><p>Supermarsu 2 -elokuva kertoo mehiläisten pelastamisesta maailman monimuotoisuuden säilyttämiseksi. Pelastaakseen mehiläiset on Supermarsun ensin kuitenkin pelastettava koulun pahin kiusaaja. Elokuvassa tartutaan ajankohtaisesti tärkeisiin yhteiskunnallisiin ja ekologisiin aiheisiin ymmärrettävällä ja humoristisella tavalla.</p><p>SF Studios</p><p>Teema: Pulpettikino<br>Maa: Suomi<br>Ohjaus: Joona Tena<br>Käsikirjoitus: Paula Noronen, Joona Tena<br>Näyttelijät: Senni Peltoniemi, Lucas Timperi, Lumo Levy, Kaius Österman, Essi Hellén, Eero Ritala<br>Tuotanto: Anni Pänkäälä, Marko Talli / Yellow Film & TV, SF Studios<br>Kesto: 90 min<br>Ikäraja: S<br>Kieli: suomi<br>Tekstitys: ruotsi<br>Levittäjä: SF Studios<br>Esityskopio: SF Studios<br>Leikkaus: Jyrki Levä<br>Musiikki: Panu Aaltio<br>Äänisuunnittelu: Juha Hakanen<br>Lavastus: Toni Kari<br>Pukusuunnittelu: Anna Vilppunen<br>Maskeeraus: Laura Rantaniemi</p>",
                "en": "<p>Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups.</p><p>Based on the popular book series, the film features Emilia, an ordinary girl from a single parent family, who gained special powers after her pet guinea pig bit her finger. Instantly she could be transformed into Hyper Hamster, a furry heroine with extraordinary powers. In this film, Emilia will be called upon to ride a time machine to travel to and from the future, in order to save bees and by doing so saving humankind. It’s a fun film about bravery, friendship and understanding.</p><p>Production notes</p><p>Theme: School Kino Selection<br>Country: Finland<br>Director: Joona Tena<br>Screenplay: Paula Noronen, Joona Tena<br>Starring: Senni Peltoniemi, Lucas Timperi, Lumo Levy, Kaius Österman, Essi Hellén, Eero Ritala<br>Production: Anni Pänkäälä, Marko Talli / Yellow Film & TV, SF Studios<br>Duration: 90 min<br>Age limit: S<br>Language: Finnish<br>Subtitles: Swedish<br>Distribution: SF Studios<br>Print source: SF Studios<br>Editing: Jyrki Levä<br>Music: Panu Aaltio<br>Sound: Juha Hakanen<br>Production design: Toni Kari<br>Costume design: Anna Vilppunen<br>Make-up: Laura Rantaniemi</p>"
            },
            "short_description": {
                "fi": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.",
                "en": "Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups."
            },
            "name": {
                "fi": "Supermarsu 2 (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Supermarsu 2 (2022) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2F04AA62AA1DF75FED9F8A187992D6A6/Supermarsu_2_2022_",
                "en": "http://www.savoyteatteri.fi/en/events/event/2F04AA62AA1DF75FED9F8A187992D6A6/Supermarsu_2_2022_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60924/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60915",
            "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: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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "info_url": {
                        "fi": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca0364b4c5341038b4567",
                        "en": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca0364b4c5341038b4567"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4252,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:19.868429Z",
                    "last_modified_time": "2023-09-07T14:22:19.868452Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737011.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4252/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:19.187636Z",
            "last_modified_time": "2023-11-14T06:13:08.424197Z",
            "date_published": null,
            "start_time": "2023-09-20T17:45: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,
            "description": {
                "fi": "<p>Takeshi Kitano halusi tehdä Kubin jo ohjaajanuransa alkutaipaleella 30 vuotta sitten. Välissä hän ehti julkaista tarinasta romaaninkin, mutta samuraieepoksen maailmanensi-iltaa juhlittiin tänä vuonna Cannesissa.</p><p>Kubin palaset loksahtavat kohdalleen yhtä vääjäämättä, kyynisesti ja koomisesti kuin Kitanon varhaistöissä. Elokuva iskee silmää jo nimellään: Kubi tarkoittaa niskaa viitaten anatomiaan, kohtaan, johon samurain miekka iskee. Mennään kohti genren äärilaitaa, parodian rajalle.</p><p>Taistelun jälkeistä kalmomaisemaa hartaasti esittelevällä kamera-ajolla alkava Kubi on ohjaajan ehkä verisin elokuva, klassinen ja armoton moraalitarina, jossa vallanhimoisten juonittelijoiden lojaliteetit ovat silmänlumetta. Päät putoavat vuoroillaan, eikä kukaan saa enempää kuin ansionsa mukaan. Samurairomantiikan homoseksuaaliset piirteet eivät ole tällä kertaa latentteja, päinvastoin.</p><p>Inspiraationa on historiallinen valtataistelu, joka alkoi vuonna 1579. Höyrypäinen paikallishallitsija Oda Nobunaga (Ryo Kase) yritetään murhata. Motiiviksi paljastuu Nobunagan kenraalien välinen salainen rakkaus. Kitano esittää virnuilevaa vanhempaa sotaherraa Toyotomi Hideyoshia, jonka pitkän iän salaisuus on poikkeuksellinen manipulaatiokyky. Keskeisissä rooleissa nähdään muiden muassa Tadanobu Asano ja Drive My Carin (R&A 2022) Hidetoshi Nishijima.</p><p>Kalle Kinnunen</p><p>Teema: Asian Cuts<br>Maa: Japani<br>Ohjaus: Takeshi Kitano<br>Käsikirjoitus: Takeshi Kitano<br>Näyttelijät: Takeshi Beat, Hidetoshi Nishijima, Ryo Kase, Shido Nakamura, Tadanobu Asano, Nao Omori<br>Tuotanto: Takeshi Kitano / KADOKAWA CORPORATION<br>Kesto: 131 min<br>Ikäraja: K16<br>Kieli: japani<br>Tekstitys: englanti<br>Levittäjä: Kadokawa<br>Esityskopio: Kadokawa<br>Leikkaus: Yoshinori Ota<br>Äänisuunnittelu: Kenji Shibasaki<br>Lavastus: Yukiharu Seshimo</p>",
                "en": "<p>A re-imagining of real events in the late 16th century, the film’s eye-popping, blood-soaked vistas are a marvelous sight, as are a number of its era-specific details, and its handful of striking moments of queer samurai imagery. (…)</p><p>If there’s one thing Kitano knows how to do, it’s extract fun performances from his cast. The central plot concerns the disappearance of one of Oda’s vassals, Murashige Araki (Endo Kenichi), accused by his lordship of rebellious sympathies, followed by Oda’s subsequent attempts to both capture him and suss out dissent within his empire, in a game of territorial chess.</p><p>Siddhant Adlakha, IndieWire</p><p>Adapted from his own book, Kubi is an outrageously exhilarating update of the samurai epic, dialing up the blood and guts and sprinkling in the sick humor to match. (…)</p><p>Kubi was once rumored to be Kitano’s final film, though other reports since then have suggested that this is no longer the case. If it was though, it would’ve been one hell of a swan song. For a director in his late 70s, Kitano stages this blood-soaked epic with the intoxicating energy of an artist who’s only just getting started. We can only be grateful, then, that Kitano is only just shifting gears.</p><p>Iana Murray, The Playlist</p><p>Theme: Asian Cuts<br>Country: Japan<br>Director: Takeshi Kitano<br>Screenplay: Takeshi Kitano<br>Starring: Takeshi Beat, Hidetoshi Nishijima, Ryo Kase, Shido Nakamura, Tadanobu Asano, Nao Omori<br>Production: Takeshi Kitano / KADOKAWA CORPORATION<br>Duration: 131 min<br>Age limit: K1<br>Language: Japanese<br>Subtitles: English<br>Distribution: Kadokawa<br>Print source: Kadokawa<br>Editing: Yoshinori Ota<br>Sound: Kenji Shibasaki<br>Production design: Yukiharu Seshimo</p>"
            },
            "short_description": {
                "fi": "Takeshi Kitano halusi tehdä Kubin jo ohjaajanuransa alkutaipaleella 30 vuotta sitten. Välissä hän ehti julkaista tarinasta romaaninkin, mutta samuraieepoksen maailmanensi-iltaa juhlittiin tänä vuonna Cannesissa."
            },
            "name": {
                "fi": "Kubi (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Kubi (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/031D724D634721BFD50B7503495039DD/Kubi_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/031D724D634721BFD50B7503495039DD/Kubi_2023_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60915/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60441",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "22 € / 14,50 €",
                        "sv": "22 € / 14,50 €",
                        "en": "22 € / 14,50 €"
                    },
                    "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/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4251,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:18.759586Z",
                    "last_modified_time": "2023-09-07T14:22:18.759614Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_720850.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4251/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:18.583988Z",
            "last_modified_time": "2023-11-14T06:13:08.347329Z",
            "date_published": null,
            "start_time": "2023-09-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>The Great Helsinki Swing Big Band esittää Count Basie Big Bandin vuoden 1968 albumin kokonaisuudessaan.</p><p>Kapellimestarina Antti Rissanen.</p>",
                "sv": "<p>The Great Helsinki Swing Big Band framför Count Basie Big Bands album från 1968 i sin helhet.</p><p>Kapellmästare är Antti Rissanen.</p>",
                "en": "<p>The Great Helsinki Swing Big Band performs Count Basie Big Band’s 1968 album in its entirety.</p><p>Conducted by Antti Rissanen.</p>"
            },
            "short_description": {
                "fi": "The Great Helsinki Swing Big Band esittää Count Basie Big Bandin vuoden 1968 albumin kokonaisuudessaan.",
                "sv": "The Great Helsinki Swing Big Band framför Count Basie Big Bands album från 1968 i sin helhet.",
                "en": "The Great Helsinki Swing Big Band performs Count Basie Big Band’s 1968 album in its entirety."
            },
            "name": {
                "fi": "The Great Helsinki Swing Big Band: Basie, Straight Ahead",
                "sv": "The Great Helsinki Swing Big Band: Basie, Straight Ahead",
                "en": "The Great Helsinki Swing Big Band: Basie, Straight Ahead"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/49E67A988270932016EFA545AD4F1600/The_Great_Helsinki_Swing_Big_Band_Basie_Straight_Ahead_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/49E67A988270932016EFA545AD4F1600/The_Great_Helsinki_Swing_Big_Band_Basie_Straight_Ahead_",
                "en": "http://www.malmitalo.fi/en/events/event/49E67A988270932016EFA545AD4F1600/The_Great_Helsinki_Swing_Big_Band_Basie_Straight_Ahead_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60441/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60902",
            "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: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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "12 €",
                        "en": "12 €"
                    },
                    "info_url": {
                        "fi": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca04049e0f3ea008b4567",
                        "en": "https://tickets.hiff.fi/fi/events/pwdg/event_buybox/show/64eca04049e0f3ea008b4567"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4250,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:18.363768Z",
                    "last_modified_time": "2023-09-07T14:22:18.363790Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737010.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4250/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:18.183636Z",
            "last_modified_time": "2023-11-14T06:13:08.270792Z",
            "date_published": null,
            "start_time": "2023-09-20T15:15: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,
            "description": {
                "fi": "<p>Ruumisautobisneksen halvimmat kuskit Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat umpikujassa. Kivi on menettänyt pelaamalla kaiken eikä silti osaa lopettaa. Niska puolestaan saa kuulla, ettei hänellä ole juurikaan aivoja. Kun radanvarresta ruumiin palasia työkseen poimiva kaksikko kohtaa laittomia uhkapelejä järjestävän hämäräperäisen liikenaisen Ullan (Elina Knihtilä), on tie taas auki. Vai onko?</p><p>Ohjaaja-käsikirjoittaja Teemu Nikki kutsuu katsojansa venäläiseen rulettiin, jossa ei säästetä panoksia. Äkkiväärää huumoria ja nokkeluuden ylärajoja hipovia aivottomuuksia ladellaan nyt liukuhihnalta. Nauruhermojen kutittelun lisäksi koneessa on tällä kertaa myös voimakas tunnelma. Se pitää otteessaan, herkistää ja ravistelee sitä vähää, mitä omista aivoista on jäljellä.</p><p>Hirtehinen huumori, pirullinen jännitys ja paikoittainen graafinen väkivalta tuovat mieleen Tarantinon eivätkä jää jälkeen lajin mestarista. Elokuvan ytimessä on kuitenkin terävä kuvaus addiktiosta ja elämänvalinnoista. Yhtä täysipainoista ja sekopäistä settiä näkee hyvin harvoin suomalaisessa elokuvassa.</p><p>Nikki on sanonut elokuvan syntyneen ajatuksesta kaveruksista, joista toisella ei ole aivoja ja toisella sydäntä. Hänen elokuvallaan niitä kumpaakin on roppakaupalla.</p><p>Janne Sundqvist</p><p>Teema: Gaalaelokuvat<br>Maa: Italia, Suomi<br>Ohjaus: Teemu Nikki<br>Käsikirjoitus: Teemu Nikki<br>Näyttelijät: Pekka Strang, Jari Virman, Elina Knihtilä, Hannamaija Nikander, Pihla Penttinen<br>Tuotanto: Jani Pösö / It's Alive Films<br>Kesto: 97 min<br>Ikäraja: K7<br>Kieli: suomi<br>Tekstitys: englanti<br>Levittäjä: Scandinavian Film Distribution<br>Esityskopio: Scandinavian Film Distribution<br>Kuvaus: Jyrki Arnikari<br>Leikkaus: Teemu Nikki<br>Musiikki: Marco Biscarini<br>Äänisuunnittelu: Marco Biscarini, Alessio Vanni, Giovanni Tioli<br>Lavastus: Santtu Toivola<br>Pukusuunnittelu: Anna Vilppunen<br>Maskeeraus: Suvi Lukkala-Mäkinen</p>",
                "en": "<p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start. Death Is a Problem for the Living is a film about addiction, friendship and carrying dead bodies.</p><p>Production notes</p><p>Director-screenwriter Teemu Nikki invites the audience to a Russian roulette with no holds barred. The assembly line consists of quirky humour and brainless gags that approach the limits of wit. In addition to the laughs, the machine is also stocked with a powerful atmosphere. It holds you glued to your seat, makes you emotional, and shakes up what little you have left of your own brain.</p><p>The macabre comedy, the devilish thrills, and the at times graphic violence recall the works of Quentin Tarantino and do not pale in comparison to the master of the genre. At the core of the film are the sharp depictions of addiction and life choices. It is rare to see such fully formed and insane work in Finnish cinema.</p><p>Janne Sundqvist (translated by Inari Ylinen)</p><p>Theme: Gala Films<br>Country: Italy, Finland<br>Director: Teemu Nikki<br>Screenplay: Teemu Nikki<br>Starring: Pekka Strang, Jari Virman, Elina Knihtilä, Hannamaija Nikander, Pihla Penttinen<br>Production: Jani Pösö / It's Alive Films<br>Duration: 97 min<br>Age limit: K7<br>Language: Finnish<br>Subtitles: English<br>Distribution: Scandinavian Film Distribution<br>Print source: Scandinavian Film Distribution<br>Cinematography: Jyrki Arnikari<br>Editing: Teemu Nikki<br>Music: Marco Biscarini<br>Sound: Marco Biscarini, Alessio Vanni, Giovanni Tioli<br>Production design: Santtu Toivola<br>Costume design: Anna Vilppunen<br>Make-up: Suvi Lukkala-Mäkinen</p>"
            },
            "short_description": {
                "fi": "Ruumisautobisneksen halvimmat kuskit Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat umpikujassa. Kivi on menettänyt pelaamalla kaiken eikä silti osaa lopettaa. Niska puolestaan saa kuulla, ettei hänellä ole juurikaan aivoja. Kun radanvarresta ruumiin palasia työkseen poimiva kaksikko kohtaa laittomia uhkapelejä järjestävän hämäräperäisen liikenaisen Ullan (Elina Knihtilä), on tie taas auki. Vai onko?"
            },
            "name": {
                "fi": "Peluri – Kuolema on elävien ongelma (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Death is a problem for the living (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9BEE5F79D2F03414F8444B51EF34F16F/Peluri_Kuolema_on_elavien_ongelma_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/9BEE5F79D2F03414F8444B51EF34F16F/Death_is_a_problem_for_the_living_2023_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60902/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60119",
            "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:31/?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: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4249,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:17.935546Z",
                    "last_modified_time": "2023-09-07T14:22:17.935569Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733059.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4249/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:17.787150Z",
            "last_modified_time": "2023-11-14T06:13:08.197761Z",
            "date_published": null,
            "start_time": "2023-09-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,
            "description": {
                "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea! Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18-19.30.</p><p>Lämpimästi tervetuloa!</p><p>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p><p>Kuorokerrat: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p>",
                "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel. <br>Varmt välkommen!</p><p>På onsdagar kl. 18-19.30.<br>Datum: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>",
                "en": "<p>Would you like to learn Finnish by singing in Finnish?</p><p>If so, please join us!  <br>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.<br>Rehearsals on Wednesdays 6-7.30pm at Stoa music hall.</p><p>Autumn season: <br>6 Sept <br>13 Sept<br>20 Sept<br>27 Sept<br>11 Oct<br>25 Oct<br>1 Nov<br>15 Nov<br>22 Nov<br>29 Nov</p>"
            },
            "short_description": {
                "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?",
                "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?",
                "en": "Would you like to learn Finnish by singing in Finnish?"
            },
            "name": {
                "fi": "Stoan kuoro",
                "sv": "Stoas kör",
                "en": "Stoa Choir"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/BFEE1C46EF71B0BEEEFDE132E32F37B4/Stoan_kuoro",
                "sv": "http://www.stoa.fi/sv/evenemang/event/BFEE1C46EF71B0BEEEFDE132E32F37B4/Stoas_kor_",
                "en": "http://www.stoa.fi/en/events/event/BFEE1C46EF71B0BEEEFDE132E32F37B4/Stoa_Choir_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60119/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60703",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4248,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:17.223669Z",
                    "last_modified_time": "2023-09-07T14:22:17.223693Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735134.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4248/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:16.563948Z",
            "last_modified_time": "2023-11-14T06:13:08.128297Z",
            "date_published": null,
            "start_time": "2023-09-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,
            "description": {
                "fi": "<p>Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa.</p><p>Maren leimataan huonotapaiseksi ja hänet sijoitetaan Sprogøn saarelle laitokseen, joka on tarkoitettu henkisesti heikoille ja yhteiskuntaan sopeutumattomille naisille. Saarella Maren solmii ystävyyssuhteen kanssasisarensa Sørinen kanssa ja naiset alkavat kapinoida – kauaskantoisin ja kohtalokkain seurauksin.</p><p>Malou Reymannin väkevä draamaelokuva kuvaa kappaleen tummasävyistä Tanskan historiaa ja sitä kuinka yhteiskunta petti aikansa kesyttämättömät naiset.</p><p>Kesyttämätön (Ustyrlig) palkittiin parhaan pohjoismaisen elokuvan palkinnolla Göteborgin elokuvajuhlilla 2023.</p><p>Ikäraja 12<br>Kesto 134 min<br>Ensi-ilta 4.8.2023</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia 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).</i></p>"
            },
            "short_description": {
                "fi": "Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa."
            },
            "name": {
                "fi": "Kesyttämätön (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A660993E01A553660224C2B746D06BD8/Kesyttamaton_12_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60703/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60674",
            "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: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/kulke:602/?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: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:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4247,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:15.628056Z",
                    "last_modified_time": "2023-09-07T14:22:15.628076Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735262.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4247/?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:22:15.304008Z",
            "last_modified_time": "2023-11-14T06:13:08.054032Z",
            "date_published": null,
            "start_time": "2023-09-20T14:00:00Z",
            "end_time": "2023-09-20T16: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,
            "description": {
                "fi": "<p>Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?</p><p>Haluatko harrastaa kirjoittamista mukavassa seurassa? Tervetuloa Sanapaja / Wordshop -kirjoittajatyöpajoihin!<br>  <br>Voit kirjoittaa millä kielellä haluat. Kieliopilla ei ole väliä, vaan sillä mitä haluat sanoa! <br>Pajoissa puhutaan suomea ja englantia.</p><p>Voit osallistua pajoihin vaikka joka kerta, tai silloin kuin sinulle sopii.  <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Ole ylpeä kaikista kielistä, joita osaat!<br>  <br>Järjestäjät: Vuotalo, Nuoren Voiman Liitto ja Operaatio Pulssi  <br>Ikäsuositus: 13-19v (mutta ei tarkkaa ikärajaa) <br>Paikka: Kirjaston kokoushuone 2</p>",
                "sv": "<p>Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?</p><p>Vill du skriva i ett härligt gäng? Välkommen till skrivarverkstäderna Sanapaja / Wordshop!</p><p>Du kan skriva på vilket språk som helst. Det viktigaste är inte grammatiken utan det du vill säga!</p><p>I verkstäderna talas finska och engelska. <br>Du kan delta i verkstäderna varje gång eller då det passar dig.  <br>Fritt inträde, ingen förhandsanmälan.</p><p>Var stolt över alla språk du kan!</p><p>Arrangörer: Nordhuset, Nuoren Voiman Liitto ry och Operaatio Pulssi <br>Åldersrekommendation: 13–19 (ingen specifik åldersgräns) <br>Plats: Bibliotekets mötesrum 2</p>",
                "en": "<p>Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?</p><p>Do you want to do some writing in good company? Welcome to the Wordshop writers’ workshops! <br>  <br>You can write in any language you want. It's not the grammar that counts. It's what you want to say. The workshops are conducted in Finnish and English.</p><p>You can participate in the workshops every time or whenever it suits you.</p><p>Free admission, no pre-registration required.</p><p>Be proud of all the languages you know!</p><p>Organisers: Vuosaari House, Nuoren Voiman Liitto and Operation Pulse <br>Age recommendation: 13–19 (no specific age limit)<br>Location: Meeting room 2 in Vuosaari Library</p>"
            },
            "short_description": {
                "fi": "Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?",
                "sv": "Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?",
                "en": "Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?"
            },
            "name": {
                "fi": "Sanapaja / Wordshop",
                "sv": "Sanapaja / Wordshop",
                "en": "Sanapaja / Wordshop"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/90F6F208ABBFE0B3478DDFE67C322762/Sanapaja_Wordshop_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/90F6F208ABBFE0B3478DDFE67C322762/Sanapaja_Wordshop_",
                "en": "http://www.vuotalo.fi/en/events/event/90F6F208ABBFE0B3478DDFE67C322762/Sanapaja_Wordshop_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60674/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60047",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4246,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:15.084366Z",
                    "last_modified_time": "2023-09-07T14:22:15.084390Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732379.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4246/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:14.936279Z",
            "last_modified_time": "2023-11-14T06:13:07.980071Z",
            "date_published": null,
            "start_time": "2023-09-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,
            "description": {
                "fi": "<p>Nathan Riki Thomson & Värivarjo, Joni Vierre & Tommie Black-Roff</p><p><b>Nathan Riki Thomson</b> on kontrabasisti, multi-instrumentalisti, säveltäjä, tutkija ja kouluttaja. Hän on tehnyt yhteistyötä ja esiintynyt eri puolilta maailmaa olevien muusikoiden kanssa. Nathan on erityisen kiinnostunut Afrikasta, jossa hän asui ja työskenteli viisi vuotta muusikoiden ja tanssijoiden kanssa Tansaniassa ja Sambiassa.</p><p><b>Värivarjo</b><br><b>Joni Vierre</b> ja <b>Tommie Black-Roff</b> hyödyntävät työssään esimerkkejä erilaisista suhtautumistavoista maailmaan. Heidän esittämänsä sarja ”Character Songs” on omistettu ystäville, idoleille ja mentoreille. Vierren ja Black-Roffin musiikki ammentaa maailmanperinnöstä ja perinteistä, folk- ja jazzmusiikista sekä kaksikon omasta kekseliäisyydestä, yllättäen improvisoiduilla hetkillä ja sävellyksillä. <br> <br>Joni Vierre on suomalainen kitaristi, laulaja, mandolinisti ja säveltäjä/sovittaja. Joni on monipuolinen muusikko. Hän työskentelee freelancerina ja taiteilijana erilaisissa kokoonpanoissa. Joni on keikkaillut vuodesta 2011 lähtien mm. blues-, rock-, jazz- ja soulmusiikin parissa. Nykyisin hän pyrkii yhdistelemään erilaisia musiikkityylejä ja luomaan vaikutteista omanlaistaan musiikkia ja soittotyyliä. Jonilla on muusikon ammattitutkinto Turun konservatoriosta (valmistui 2015). Hän on opiskellut vuodesta 2019 lähtien Sibelius Akatemian Global Music -osastolla keskittyen folkmusiikkiin ja maailmanmusiikkitraditioihin.<br> <br>Tommie Black-Roff on haitaristi, pianisti, laulaja ja säveltäjä. Black-Roff kasvoi Cornwallin lounaiskärjessä imien itseensä paikallisia folkperinteitä. Briteissä hänet tunnettaan erityisesti TEYR-yhtyeestä ja trion albumista ”Far From The Tree”, sekä aiemmin tänä vuonna julkaisusta albumista ”Estren”. Black-Roff on asunut Helsingissä vuodesta 2018. Hän on opiskellut Sibelius-Akatemiassa ja soittaa myös pohjoismaalaisessa Farandi-yhtyeessä.</p><p>Kesto 60 min.</p>",
                "sv": "<p>Nathan Riki Thomson & Värivarjo, Joni Vierre & Tommie Black-Roff</p><p><b>Nathan Riki Thomson</b> är kontrabasist, multiinstrumentalist, kompositör, forskare och utbildare. Nathan har samarbetat och uppträtt med musiker från många delar av världen, med ett särskilt intresse för Afrika där Nathan levde och arbetade i fem år tillsammans med musiker och dansare i Tanzania och Zambia.</p><p><b>Värivarjo</b><br><b>Joni Vierre</b> och <b>Tommie Black-Roff</b> utnyttjar i sitt arbete exempel på olika sätt att förhålla sig till världen. Serien ”Character Songs” som de framför är tillägnad vänner, idoler och mentorer. Vierres och Black-Roffs musik hämtar inspiration från världsarvet och traditioner, folk- och jazzmusik samt duons egen uppfinningsrikedom och överraskar med improviserade stunder och kompositioner.</p><p>Längd: 60 min</p>",
                "en": "<p>Nathan Riki Thomson & Värivarjo, Joni Vierre & Tommie Black-Roff</p><p><b>Nathan Riki Thomson</b> is a double bass player, multi-instrumentalist, composer, researcher and educator. Nathan has collaborated and performed with musicians from many parts of the world, with a special interest in Africa where he lived and worked for five-years with musicians and dancers in Tanzania and Zambia. During his time in Tanzania, Nathan established a series of community arts projects in collaboration with local musicians and was a student of renowned musician Dr. Hukwe Zawose.</p><p>Nathan was born to parents from New Zealand and raised in Australia, where he completed undergraduate studies at the Queensland Conservatorium of Music in Brisbane, followed by further studies at the Guildhall School of Music & Drama in London. Nathan holds a master’s and Doctor of Music degree in Global Music from Sibelius Academy, University of the Arts, Helsinki.</p><p>As a performer, Nathan has toured internationally during the past 26 years with groups including the Antonio Forcione Quartet, Adriano Adewale Group, Ilkka Heinonen Trio, Subsonic Trio, Electronic Chamber Music, and Mari Kalkun and Runorun. Nathan is featured on numerous albums as a collaborator and has released three albums under his own name, including Under Ubi’s Tree (NAIM records UK), Shaped by the Sea and Resonance (Sibarecords / NAXOS). He was a lecturer at the Guildhall School of Music & Drama in London for 10 years, where he worked as a core member of the teaching team for the master’s degree in leadership.</p><p>Intertwined with performing, teaching, and researching, Nathan has actively worked on intercultural community engagement projects in contexts such as schools, prisons, youth groups, centers for children with a disability, and with homeless youth in Africa, Europe, Southeast Asia, and North and South America. Finland is his new home, where he is currently professor and head of the Global Music Department at Sibelius Academy, University of the Arts, Helsinki.<br> <br><b>Värivarjo</b> are guitarist/multi-instrumentalist <b>Joni Vierre</b> and accordionist/pianist <b>Tommie Black-Roff</b>. Their name, which translates as “Colour-Shadow” is named after the large and colourful rainbow sheets commonly used in group kid games. That feeling of wonder and sensory saturation is the goal. They bridge the divide between jazz and folk backgrounds through collaborative composition and improvisation. Värivarjo is a musical laboratory in which they test ideas, games and creative tool – the outcome isn’t always known from the outset, but the journey is what counts.</p><p>Duration: 60 minutes</p>"
            },
            "short_description": {
                "fi": "Nathan Riki Thomson & Värivarjo, Joni Vierre & Tommie Black-Roff",
                "sv": "Nathan Riki Thomson & Värivarjo, Joni Vierre & Tommie Black-Roff",
                "en": "Nathan Riki Thomson & Värivarjo, Joni Vierre & Tommie Black-Roff"
            },
            "name": {
                "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves",
                "sv": "HOW-radio | Global Club Nights",
                "en": "HOW-radio | Global Club Nights"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/9D7F7D3E96B983C68E2C69621369409B/HOW-radio_Global_Club_Nights",
                "sv": "http://www.caisa.fi/sv/evenemang/event/9D7F7D3E96B983C68E2C69621369409B/HOW-radio_Global_Club_Nights",
                "en": "http://www.caisa.fi/en/events/event/9D7F7D3E96B983C68E2C69621369409B/HOW-radio_Global_Club_Nights"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60047/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60827",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4245,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:14.707386Z",
                    "last_modified_time": "2023-09-07T14:22:14.707409Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735138.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4245/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:14.559420Z",
            "last_modified_time": "2023-11-14T06:13:07.909933Z",
            "date_published": null,
            "start_time": "2023-09-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,
            "description": {
                "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia 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>"
            },
            "short_description": {
                "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus."
            },
            "name": {
                "fi": "Kuolleet lehdet (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0863C8ECB2EBBEDDBFF109EE9C0361F0/Kuolleet_lehdet_7_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60827/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60925",
            "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: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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4244,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:14.326394Z",
                    "last_modified_time": "2023-09-07T14:22:14.326425Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737051.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4244/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:13.756156Z",
            "last_modified_time": "2023-11-14T06:13:07.824254Z",
            "date_published": null,
            "start_time": "2023-09-20T10: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,
            "description": {
                "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Kun 12-vuotias Mina siirtyy yläkouluun, sydämentykytyksiä ei aiheuta ainoastaan lukuvuoden alku vaan lisäksi orastava ihastus koulun uuteen tulokkaaseen, tanssija Edwiniin. Pian Mina löytää itsensä elämänsä mahdollisuuden edestä, kun vastassa on tanssikilpailu. Mikä olisikaan parempi tapa tehdä vaikutus ihastukseensa kuin näyttämällä taitonsa tanssilattialla! Todellisempi haaste on kuitenkin se, ettei Mina osaa tanssia lainkaan.</p><p>Norjalaisen Aurora Gossén hurmaava ja humoristinen nuorten tanssidraama ihastuttaa, ja nörttivoimasta kumpuava huumori lämmittää sydämen. Elokuvan nuori päätähti Liv Elvira Kippersund Larsson säteilee valloittavaa voimaa ja tulkitsee roolissaan koskettavasti nuoren tarvetta tulla nähdyksi ja hyväksytyksi.</p><p>Vaikuttava elokuva osuu ajan hermoon niin suosion tavoittelun kuin kehorauhankin puolesta, ja tutkaileepa se taitavasti myös ryhmädynamiikkaa ja kiusaamisen juurisyitä. Elokuva muistuttaa tärkeästi ystävyyden merkityksestä ja lähipiirin tuesta hetkinä, kun omat rajat ovat koetuksella.</p><p>Maria Lehtonen</p><p>Teema: Pulpettikino<br>Maa: Norja<br>Ohjaus: Aurora Gossé<br>Käsikirjoitus: Silje Holtet<br>Näyttelijät: Liv Elvira Kippersund Larsson, Sturla Harbitz, Viljar Knutsen Bjaadal<br>Tuotanto: Thomas Robsahm / Amarcord<br>Kesto: 92 min<br>Ikäraja: K7<br>Kieli: norja<br>Tekstitys: ruotsi, suomi<br>Levittäjä: Kinoscreen Illusion<br>Esityskopio: Kinoscreen Illusion<br>Kuvaus: Åsmund Hasli<br>Leikkaus: Helge Billing<br>Äänisuunnittelu: Adrian Souyris Strumse<br>Maskeeraus: Ida Astero Welle</p>",
                "en": "<p>Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups.</p><p>Mina Mørk’s world is flipped upside down when the famous dancer Edwin aka ED WIN starts at her school, and she falls madly in love with him. When Edwin arranges an audition for a new dance crew, Mina ceases the opportunity and signs on. But Mina is blinded by love and there is one essential thing she has forgotten; She can’t dance!</p><p>Production notes</p><p>It’s evident right off the bat, then, that although Gossé’s new coming-of-age film is certainly influenced by the better-known works from Hollywood’s heyday of kid- and teen-facing films. From Spielberg’s bike riding, small-town children to Little Miss Sunshine’s precocious youngster to even the dance-heavy late-pubescence of Bring It On or the Step Up franchise, Dancing Queen endeavors to scale everything to a specific measured, humble realism. And so, without littering itself with the usual larger-than-life dramatics and excessive tropes, Gossé’s latest — explicitly titled after ABBA’s famous hit — remains committed to documenting the mundane, even minuscule, challenges and concerns of the Zoomer generation.</p><p>Ayeen Forootan, In Review Online</p><p>Theme: School Kino Selection<br>Country: Norway<br>Director: Aurora Gossé<br>Screenplay: Silje Holtet<br>Starring: Liv Elvira Kippersund Larsson, Sturla Harbitz, Viljar Knutsen Bjaadal<br>Production: Thomas Robsahm / Amarcord<br>Duration: 92 min<br>Age limit: K7<br>Language: Norwegian<br>Subtitles: Swedish, Finnish<br>Distribution: Kinoscreen Illusion<br>Print source: Kinoscreen Illusion<br>Cinematography: Åsmund Hasli<br>Editing: Helge Billing<br>Sound: Adrian Souyris Strumse<br>Make-up: Ida Astero Welle</p>"
            },
            "short_description": {
                "fi": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.",
                "en": "Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups."
            },
            "name": {
                "fi": "Dancing queen (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Dancing queen (2023) – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/42CB3A3FED0E9C8A2ABDC36B983187AE/Dancing_queen_2023_",
                "en": "http://www.savoyteatteri.fi/en/events/event/42CB3A3FED0E9C8A2ABDC36B983187AE/Dancing_queen_2023_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60925/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60926",
            "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: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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": "https://hiff.fi/liput/",
                        "en": "https://hiff.fi/liput/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4242,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:22:11.825424Z",
                    "last_modified_time": "2023-09-07T14:22:11.825447Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737054.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4242/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:22:11.675234Z",
            "last_modified_time": "2023-11-14T06:13:07.743445Z",
            "date_published": null,
            "start_time": "2023-09-20T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.</p><p>Pulpettikinon lyhytelokuvanäytös esittelee jälleen hurmaavan kattauksen eurooppalaisia animaatioita pienille elokuvan ystäville. Näytöksessä nähdään eläinystäviä ja olentoja, kuullaan karhuperheen kehtolaulu ja maistellaan maagista vaaleanpunaista keittoa.</p><p>Veera Kotila</p><p>ORAVA<br>Oravalapset haluavat leikkiä, mutta heidän äitinsä on kiireinen pähkinöiden poiminnan kanssa. Leikkisä animaatio hauskan pitämisestä yhdessä.</p><p>Ohjaus: Julia Ocker<br>Maa: Saksa<br>Vuosi: 2022<br>Kesto: 4 min</p><p>***</p><p>MISHOU<br>Neljän eloisan arktisen jäniksen arki muuttuu, kun outo uusi olento saapuu yllättäen heidän keskuuteensa.</p><p>Ohjaus: Milen Vitanov<br>Maa: Bulgaria, Saksa<br>Vuosi: 2020<br>Kesto: 8 min</p><p>***</p><p>FRANSIN SOPPAKEITTIÖ<br>Yksinäinen avaruusolento-kokki Frans huomaa, että hänen erityinen vaaleanpunainen keittonsa on paitsi herkullinen myös maaginen.</p><p>Ohjaus: Ana Chubinidze<br>Maa: Ranska<br>Vuosi: 2021<br>Kesto: 9 min</p><p>***</p><p>SPIN & ELLA<br>Animoitu lyhytelokuva superkeiju Ellasta ja hänen parhaasta ystävästään, jotka tekevät yhdessä hämähäkkilankapiirroksia Branchtownissa.</p><p>Ohjaus: An Vrombaut<br>Maa: Belgia<br>Vuosi: 2023<br>Kesto: 6 min</p><p>***</p><p>HISSUNKISSUN PIKKUKARHU<br>Kehtolaulu karhuperheestä.</p><p>Ohjaus: Māra Liniņa<br>Maa: Latvia<br>Vuosi: 2022<br>Kesto: 5 min</p><p>Teema: Pulpettikino<br>Maa: Belgia, Bulgaria, Latvia, Ranska, Saksa<br>Kesto: 32 min<br>Ikäraja: S<br>Tekstitys: N/A</p>",
                "en": "<p>Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups.</p><p>Pulpettikino’s short film screening once again presents a charming selection of European animated shorts for little film lovers. In the screening, you will see animal friends and creatures, hear the bear family’s lullaby, and taste magical pink soup.</p><p>Veera Kotila</p><p>SQUIRREL<br>The squirrel children want to play, but their mother is busy collecting nuts from the tree. A playful animation about having fun together.</p><p>Director: Julia Ocker<br>Year: 2022<br>Duration: 4 min</p><p>***</p><p>MISHOU<br>The lives of four lively arctic hares take a turn after discovering a strange new creature.</p><p>Director: Milen Vitanov<br>Year: 2020<br>Duration: 8 min</p><p>***</p><p>FRANZY’S SOUP-KITCHEN<br>Lonely alien Chef Franzy discovers that her special pink soup is not just delicious, but also magical, when she shares it with starving creatures living on a strange planet.</p><p>Director: Ana Chubinidze<br>Year: 2021<br>Duration: 9 min</p><p>***</p><p>SPIN & ELLA<br>An animated short about super fairy Ella and her best friend Spider, who make spider thread drawings together in Branchtown.</p><p>Director: An Vrombaut<br>Year: 2023<br>Duration: 6 min</p><p>***</p><p>HUSH HUSH LITTLE BEAR<br>A lullaby about a family of bears.</p><p>Director: Māra Liniņa<br>Year: 2022<br>Duration: 5 min</p><p>Theme: School Kino Selection<br>Country: Belgium, Bulgaria, Latvia, France, Germany<br>Duration: 32 min<br>Age limit: S<br>Subtitles: N/A</p>"
            },
            "short_description": {
                "fi": "Huom! Elokuva on osa Pulpettikino-ohjelmistoa. Näytökset on tarkoitettu ainoastaan koululais- ja päiväkotiryhmille.",
                "en": "Please note! The film is part of Love & Anarchy’s Pulpettikino programme. The screenings are exclusively meant for school and daycare groups."
            },
            "name": {
                "fi": "Pulpettikinon lyhytelokuvanäytös 2023 – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Pulpettikinon lyhytelokuvanäytös 2023 – 36th Helsinki International Film Festival – Love & Anarchy"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa",
                "en": "Helsinki International Film Festival – Love & Anarchy"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3A84E8A350205CBC388EE757061988F0/Pulpettikinon_lyhytelokuvanaytos_2023",
                "en": "http://www.savoyteatteri.fi/en/events/event/3A84E8A350205CBC388EE757061988F0/Pulpettikinon_lyhytelokuvanaytos_2023"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60926/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}